[google-appengine] import_string() failed for 'webapp2_extras.appengine.auth.models.User'.

2012-05-15 Thread Prakhar Srivastav
Hi I've been trying to use webapp2_extras auth and sessions modules in my application. I have the application running fine on my machine but it gives an error when I run it on GAE. This is the error I get: import_string() failed for 'webapp2_extras.appengine.auth.models.User'. Possible reason

[google-appengine] how to download kind which contain BLOB column

2012-05-15 Thread waseem altaf
i am trying to download the entity/kind from google appengine datastore so that i upload it on my development server. i am using bulkloader --dump file=ph.dmp --kind=image --url=http://appspot.com/ remote_api -- You received this message because you are subscribed to the Google Groups "Google Ap

Re: [google-appengine] Large latency spike, need assistance

2012-05-15 Thread Takashi Matsuo
Hi Ronoaldo, A good question! Looking through the Python memcache API, some methods like get_multi_async() or set_multi_async() on the Client class receive rpc object as a keyword argument, so you can pass an rpc object with a particular deadline. For more details, please refer to our doc at: htt

[google-appengine] Re: Search API Question

2012-05-15 Thread Jakob Holmelund
argh.. had some app-specific code.. here you go, a clean version the should work out of the box. def get_permutations(string):     newfragments = []     tokens = string.lower().split(' ')     tokens = list(set(tokens))     for token in tokens:         for n in range(2, len(token) + 1):            

[google-appengine] Re: Search API Question

2012-05-15 Thread Jakob Holmelund
Well there is a way.. You could permutate the fields you would like to be able to partially search and add that as a textfield. I use def get_permutations(string): newfragments = [] tokens = string.lower().split(' ') tokens = list(set(tokens)) for token in tokens: try:

Re: [google-appengine] Scheduler/billing changes in 1.6.5? My daily cost went from $5 to $35.

2012-05-15 Thread Per
Oh my Goodness! You're right. I never noticed the new built-in version. Plus I never realised there were failed backup-tasks that were retrying all over again (for 20 days! 500 retries!) to do a backup. This meant two instances were permanently doing stuff. Also this explains the unusually high

[google-appengine] Re: Login Authentication 404 Error on New App Engine Connected Android Deployment (C2DM)

2012-05-15 Thread Iein Valdez
Hi Joseph, if you're still experiencing this problem please file a production ticket. Thank you. http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue -iein On Saturday, May 12, 2012 10:44:02 AM UTC-7, JLM wrote: > > I have a new Out of the Box Deployment of an App

[google-appengine] Re: Regarding Cursor Problem in SEARCH API

2012-05-15 Thread Ioannis Antonellis
There is an open issue on this http://code.google.com/p/googleappengine/issues/detail?id=7489&q=Component%3DFullTextSearch&sort=component&colspec=ID%20Type%20Component%20Status%20Stars%20Summary%20Language%20Priority%20Owner%20Log that has been acknowledged as defect Please flag it too... On May

[google-appengine] Re: 1.6.6 Pre-release SDKs available

2012-05-15 Thread Savaş L .
on java it produce error, at least on my side, removing appstats filter solves error Error for /_ah/queue/__deferred__ java.lang.NoSuchMethodError: com.google.appengine.tools.appstats.StatsProtos $IndividualRpcStatsProto.hasCallCostMicrodollars()Z at com.google.appengine.tools.appstats

[google-appengine] How to store images in a database

2012-05-15 Thread calculus developer
Hallo, I am new to this and i would like some help on how to store images to a tinywebdatabase. Thank you in advance. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com.

[google-appengine] Regarding Cursor Problem in SEARCH API

2012-05-15 Thread Ananthakrishnan Venkatasubramanian
Hi, I am using SEARCH API to perform text search in my application developed using Google AppEngine (Platform: JAVA). I am facing problems with the cursor. Initially I won't have the cursor string and so by using following codes I am able to get first set of records that I needed along with th

[google-appengine] 1.6.6 Pre-release SDKs available

2012-05-15 Thread Marzia Niccolai
Hi, The pre-release SDKs for 1.6.6 are available. You can download them here: Python: http://code.google.com/p/googleappengine/downloads/detail?name=google_appengine_1.6.6_prerelease.zip Java: http://code.google.com/p/googleappengine/downloads/detail?name=appengine-java-sdk-1.6.6_prerelease.zip

Re: [google-appengine] Re: full text search API is experimental, ready for a test drive

2012-05-15 Thread Jeff Schnitzer
I guess what I'm most interested in is knowing how it will compare, pricewise and performancewise, to using the datastore for FTS. Obviously the datastore doesn't provide all the bells and whistles, but it's pretty easy to store all the fragments of a set of words in an indexed list property. For

Re: [google-appengine] Re: full text search API is experimental, ready for a test drive

2012-05-15 Thread Christina Ilvento
Hi All, Let me provide a bit more background on our thinking for pricing for the Search API. We use the experimental phase for many APIs to test the API's stability, get developer feedback and to fine-tune our pricing. It's important to us that we only publish pricing when we are confident that it

Re: [google-appengine] Scheduler/billing changes in 1.6.5? My daily cost went from $5 to $35.

2012-05-15 Thread Takashi Matsuo
Hi Per, Thanks for sending the details. First thing comes to mind is that the culprit might be instances on a version 'ah-builtin-python-bundle'. This version is currently dedicated to the 'Datastore Admin' feature. I think you are running some task like backup/copy/deletion in 'Datastore Admin',

[google-appengine] appengine admin

2012-05-15 Thread pkll
I successfully posted an application and it is running on appspot.com Now when I try to submit another: I open appengine.google.com I am redirected to start page and my only options are to read some info or 'Create Application' On selecting Create Application I get prompted for mobile number a

[google-appengine] Re: Upload data to development server

2012-05-15 Thread Oliver Billing
Could you give me a hint on how I download all of my APPstore data and load it into my localhost. I want a better test environment I am downloading like this appcfg.py download_data --application=s~crime-syndicate --url= --filename=test But uploading like this appcfg.py upload_data --applicatio

[google-appengine] Re: Calculation of frontend hours seems off by almost factor 2.

2012-05-15 Thread Per
Hi Gregory, if I'm doing something wrong here then I'd love to learn how you do it. I tried setting the max idle instances to 1 (didn't help, except increase latency), I set the pending queue to 1s and 2s and 3s (didn't help, but increased the latency). If there is a way to limit the instances

[google-appengine] lost access to appengine projects

2012-05-15 Thread MonkeyBoy
I am currently unable to access my Appengine projects. When I go here: https://appengine.google.com/a/pennswoods.net I receive this message: "The application Admin Console is requesting permission to access your Google Account. Please select an account that you would like to use." No accounts

[google-appengine] The Schedule Format of cron.xml

2012-05-15 Thread Larry
Hello All, Is it possible to execute my job as following: /mytask Execute my task, every 30 minutes of first and15th of month 1,15, of month every 2 hours America/New_York This syntax is wrong and fail to deploy to GAE. I tested another solution. Execute mytask

[google-appengine]

2012-05-15 Thread mickfx sj
-- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options, visit t

[google-appengine] Calculation of frontend hours seems off by almost factor 2.

2012-05-15 Thread Gregory Nicholas
Not directly answering the question, I'm posing another, why the eff are you running instances in such a manner for such little qps Also, I can also suggest that at that low of qps, you could stand to substantially optimize the work you're doing reading data from the data store, which will