[google-appengine] @Staff: Migration to HRD broke records - can you help fixing it?

2012-09-09 Thread Federico Elles
I did finally migrate the 3x3links app to HRD and the thing I was afraid of did happen: Data loss. Here is the error message: Traceback (most recent call last): File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/_webapp25.py", line 710, in __call__ handler.get(*

Re: [google-appengine] confusion reading GAE logs - minor request for clarity.

2012-09-09 Thread doright
Hi Takashi, (I sent a reply yesterday but didn't show up - try again) thanks for your reply. I still don't think 'until' is right. How about 'before'. With an optional 'and after' as another field. ie you can select a time period, before XYZ and after ZZZ On Saturday, September 8, 2012 6:0

Re: [google-appengine] google app engine error

2012-09-09 Thread Shilendra Sharma
Hi, Srikanth You use the app engine SDK 1.7.1 and and java JDK 1.6 Regards & Thanks Shilendra Sharma +919891343808 shilendra...@gmail.com On Fri, Sep 7, 2012 at 7:00 PM, k srikanth wrote: > error getting saying I'm compiling with minor version, how can I avoid that > > -- > You received this

[google-appengine] Re: Queries hitting deadline

2012-09-09 Thread kscott
All depends on what you are doing. I ended up denormalizing my data model. So I could retrieve my Images by a key or id. I use another table to link stuff together. class ThumbStore(db.Model): thumbId=db.IntegerProperty() imageId=db.IntegerProperty() thumbnail=db.BlobProperty()

Re: [google-appengine] backend getting terminated.

2012-09-09 Thread Lokesh Setia
It is Python 2.5. Also, I should mention that the job in question uses cursors with a double loop to get around the 1-minute query timeout. This used to fail around 1% of the time with the backend termination error, but in the past 2-3 days this has increased to 75% failure rate. q = db.G

[google-appengine] Re: Cloud SQL & Blobstore Simultaneously -- good way to handle Django image uploads?

2012-09-09 Thread kscott
I use the blobstore to upload images to my application. After they are uploaded: - verify it a valid image - convert to jpg - resize the image to <1 meg - create a thumbnail image store it in another table - put it in data store column(db.BlobProperty() ) - delete the blobstor

Re: [google-appengine] backend getting terminated.

2012-09-09 Thread Amy Unruh
hi, As a data point, what runtime are your backends using? On 9 September 2012 19:57, Lokesh Setia wrote: > Hi all, > > Our (dynamic) backend instances get terminated midway through a job with > the error: > > > Process terminated because the backend took too long to shutdown. > > > > I know t

Re: [google-appengine] Text Search api not working on my production app

2012-09-09 Thread FastGeert
Hi Amy, I can confirm your analysis. Removing the underscores from the index name did the trick. Thnx for your help, Regards, Geert. On Sunday, September 9, 2012 7:28:50 AM UTC+2, Amy Unruh wrote: > > > On 9 September 2012 11:27, Amy Unruh >wrote: > >> hi, >> >> I believe the issue may be with

[google-appengine] Unit testing with webtest problem

2012-09-09 Thread Richard Arrano
Hello, I've been using webtest to unit test my application and I've encountered a strange issue. I wrap many of my get/post handlers in decorators and in some of those decorators, I put ndb.Model instances in os.environ for later use in the subsequent handler. This works on my local dev server a

[google-appengine] Re: Python Conversion API Gone -- Now What ??

2012-09-09 Thread Sarvesh
Not sure if Google Docs can be called from within GAE. On Tuesday, September 4, 2012 3:01:20 PM UTC-7, Joakim wrote: > > Google Docs does have the ability to perform OCR. > > https://developers.google.com/google-apps/documents-list/#uploading_documents_using_optical_character_recognition_ocr > >

[google-appengine] Re: Python Conversion API Gone -- Now What ??

2012-09-09 Thread Sarvesh
Yes, ABBYY seems like a good one. I will try that. I am thinking use GAE and then POST HTML requests to ABBYY cloud service. Hope it works out ... Thanks !! On Tuesday, September 4, 2012 2:20:44 PM UTC-7, Christopher Ramírez wrote: > > There are some Cloud services that through a HTTP API allow

[google-appengine] backend getting terminated.

2012-09-09 Thread Lokesh Setia
Hi all, Our (dynamic) backend instances get terminated midway through a job with the error: Process terminated because the backend took too long to shutdown. I know this has been discussed before with the suggestion to take care of this with a shutdown hook, but *what is happening since a co