Re: [google-appengine] Running App Engine Instance 1.8.2

2013-07-09 Thread Martin Ceperley
This caused our app to crash last night as our mapreduce library was importing the renamed servers module. Updating mapreduce fixed it. Seems to be back to 1.8.1 now, maybe it was a mistake. -Martin On Jul 9, 2013, at 2:59 AM, Moises Belchin wrote: > +1 > > > Saludos. > Moisés Belchín. > >

Re: [google-appengine] Re: dynamic image creation on app engine python

2013-06-27 Thread Martin Ceperley
Sure, you can create a request handler to output image data to the browser, however image processing can be rather slow so you probably want to store the data in blob store or datastore and serve that. The advantage of the blobstore is that you can get a URL to serve the image directly and auto

Re: [google-appengine] Re: Deployments issues

2013-06-06 Thread Martin Ceperley
It was working for a bit and now it's hanging again.. On Jun 6, 2013, at 1:35 PM, Eric Shtiv wrote: > It looks like it has been fixed atleast for me > > On Thursday, June 6, 2013 6:04:37 PM UTC+3, martinc wrote: > For the last hour, Deployment messages for a python app have hanging on > Checki

[google-appengine] Deployments issues

2013-06-06 Thread Martin Ceperley
For the last hour, Deployment messages for a python app have hanging on Checking if deployment succeeded; according to the Admin Console the deployments are deployed, however instance stats and logs are completely missing from the deployed versions. -- You received this message because you are

Re: [google-appengine] 0 Instances.. Again.

2013-02-26 Thread Martin Ceperley
We experienced this as well. 10 minutes of downtime around midnight eastern with 0 instances running. -Martin On Feb 26, 2013, at 12:13 AM, Richard Druce wrote: > Possibly the same issue as last time possibly not. Dashboard showing 0 > instances, customers upset. > -- > You received this me

Re: [google-appengine] Too much Small Operations counted instead of Read/Write?

2013-01-29 Thread Martin Ceperley
Re: Serialization, in case this isn't common knowledge: When we recently switched to python 2.7, I did some serialization speed tests and cPickle is much faster than protobuf and pickle in that environment. We've been using keys only queries and memcache multi gets with cPickle and have seen s

Re: [google-appengine] Urgent: task queue creation errors all over the logs

2012-12-18 Thread Martin Ceperley
Same here. On Dec 18, 2012, at 1:10 PM, Bay wrote: > Around 15 minutes ago app engine began throwing errors on task queue > creation. This is the error: > > > taskqueue.Queue('presence-write').add(taskqueue.Task(url='/worker/writeuserpresence', > params=dict(profile_id="%s" % profile.key

[google-appengine] Re: App down with 503's

2012-10-25 Thread Martin Ceperley
Figured it out, maxed our quota.. Lesson learned, be very careful writing/deleting lots of entities with indexed List Properties. Deleted 500K entities earlier in the day and managed to incur 183 Million Datastore Write Ops. Lovely. On Oct 26, 2012, at 12:20 AM, Martin Ceperley wrote

[google-appengine] App down with 503's

2012-10-25 Thread Martin Ceperley
Anyone experiencing issues? Our whole site just went down, not even serving static files. Everything returns 503 errors. No indication of issues in logs or quota page. Never seen this before. Launched a new version that has the same errors. App ID is proj-noah -Martin smime.p7s Description: S/

Re: [google-appengine] ReferenceProperty and Datastore Read Operations Quota

2012-01-26 Thread Martin Ceperley
One get_by_id is one datastore read. When you access a reference property for the first time it will do the datastore read. Accessing all forums of a group would be a separate query. -Martin On Jan 26, 2012, at 8:30 AM, ikalbeniz wrote: > Hi, > > I have developed a forum where i have structu

Re: [google-appengine] Keep it short: Who is forced to leave GAE?

2011-08-31 Thread Martin Ceperley
ir applications to avoid incurring huge charges when > Google changes pricing around. > > Thanks, > Richard > > On Aug 31, 7:51 pm, Martin Ceperley wrote: >> Richard, a good alternative to the Channel API is Beacon Push >> (http://beaconpush.com/) we have been

Re: [google-appengine] Keep it short: Who is forced to leave GAE?

2011-08-31 Thread Martin Ceperley
Richard, a good alternative to the Channel API is Beacon Push (http://beaconpush.com/) we have been using it and it's dead simple and works flawlessly. It supports broadcast messaging (with channel API does not out of the box) as well as per-user messaging. Also extremely affordable, 3 million

Re: [google-appengine] get_original_metadata working?

2011-08-09 Thread Martin Ceperley
Hi Ed, I've been discussing this with Jose, and have made a little progress but still have not successfully lat/long exif data out of JPG's. He told me that in order to get a value other than None, execute_transforms() must be called on the image object. So, if you have no transformations, you

Re: [google-appengine] get_original_metadata working?

2011-07-25 Thread Martin Ceperley
Hi Ed, I looked at the source and it is just an instance method of the images.Image class, called with no parameters, i.e. image.get_original_metadata() I'm stilling getting None from the method, I have tried it both by instantiating an Image from a blob_key and directly with image data, in bot

Re: [google-appengine] Re: X-AppEngine-country Documentation

2011-06-21 Thread Martin Ceperley
I've been logging them today, the code ZZ is returned on unknown or internal app engine IPs, matching the ISO spec for unknown/unspecified. On Jun 21, 2011, at 11:22 PM, Albert wrote: > LOL > > On Jun 22, 11:12 am, "Brandon Wirtz" wrote: >> It just makes one up. ;-) or you get "Error: Origina

Re: [google-appengine] Re: Announcing the High Replication Datastore for App Engine

2011-01-05 Thread Martin Ceperley
Great news, thanks app engine team! One question, are there any tools for migrating Blobstore/Blobinfo data? On Jan 5, 2011, at 6:17 PM, Ikai Lan (Google) wrote: > By the way, I should mention that there is no Java SDK. This is *almost* > completely a server side change. > > The Python SDK sh

[google-appengine] Nature-focused startup seeking Python App Engine Developer

2010-11-28 Thread Martin Ceperley
Software Developer + Nature Lover We're seeking a code monkey who loves monkeys Company Background: We launched Networked Organisms earlier this year with the mission of using fun and engaging technology solutions to help people reconnect with the planet. Our award-winning application, Project

Re: [google-appengine] Re: Store Image to Blobstore withou Upload FORM

2010-11-22 Thread Martin Ceperley
Here's a snippet in python: upload_url = blobstore.create_upload_url('/blobstore_upload') upload_data = {'image' : StringIO(photo_data)} cookies = cookielib.CookieJar() opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cooki

Re: [google-appengine] Re: deploy failures

2010-11-10 Thread Martin Ceperley
Don't know if this has anything to do with your problems, but my (python) deployments began failing recently because my error_handlers: page directive, defined in app.yaml, was pointing to an error page in a subdirectory. When I moved it up to the top-level directory it worked. Filed a bug here

Re: [google-appengine] Re: Early Christmas Present from Google?

2010-11-07 Thread Martin Ceperley
Thank you app engine team! Way to grease the pistons On Nov 7, 2010, at 10:55 AM, supercobra wrote: > Kudos Google. > > My typing race app now flies again. http://app.typrx.com > > -- > superco...@gmail.com > > > > On Sun, Nov 7, 2010 at 8:55 AM, Joshua Smith wrote: >> +1. Simple amazing,

Re: [google-appengine] Re: Attempts to deploy result in 500 Server Error

2010-11-06 Thread Martin Ceperley
I still haven't been able to deploy a bug fix for over 24 hours, it's alternating between a 500 and 400 errors. App ID is noahs-app On Nov 6, 2010, at 1:22 PM, Satoshi wrote: > I was having the same problem (error 500 when deploying my app) this > morning (between 9am and 10am Pacific time), but

Re: [google-appengine] Attempts to deploy result in 500 Server Error

2010-11-05 Thread Martin Ceperley
Still having this problem after 2 hours, getting this output: Precompilation completed. Deploying new version. Rolling back the update. Error 400: --- begin server output --- Client Error (400) The request is invalid for an unspecified reason. --- end server output --- On Nov 5, 2010, at 3:43

Re: [google-appengine] Attempts to deploy result in 500 Server Error

2010-11-05 Thread Martin Ceperley
Same here.. On Nov 5, 2010, at 3:43 PM, Daniel wrote: > For the last 30 minutes or so I have been unable to deploy. The > uploader hangs on "Precompilation starting" and then returns: > > " > > 500 Server Error > > > Error: Server Error > The server encountered an error and could not complet

Re: [google-appengine] Tons of DeadlineExceededExceptions recently

2010-11-02 Thread Martin Ceperley
+1 On Nov 2, 2010, at 3:46 PM, Joshua Smith wrote: > +1 > > On Nov 2, 2010, at 3:43 PM, coltsith wrote: > >> Over 300 in the past 13 hours, when normally I'd been getting about 1 >> or 2 every other hour at most... >> >> Anyone else experiencing this? >> >> -- >> You received this message be

Re: [google-appengine] Re: Moving Images from Datastore to Blobstore

2010-08-24 Thread Martin Ceperley
class A(GeoModel,search.SearchableModel): > ... > class Image(db.Model): > > reference=db.ReferenceProperty(Ad,collection_name='matched_images',verbose_name="Title") > ... > > On Aug 23, 3:52 am, Martin Ceperley wrote: >> Yea I just went through this process, it is

Re: [google-appengine] Moving Images from Datastore to Blobstore

2010-08-23 Thread Martin Ceperley
Yea I just went through this process, it is a bit tricky but not too hard, you can use a multipart POST library like this: http://pipe.scs.fsu.edu/PostHandler/MultipartPostHandler.py to POST the image data to blobstore, and iterate through your models with the mapreduce framework, then you'll ne