[google-appengine] compilation python failure

2013-06-25 Thread Ubaldo Huerta
Starting today, I'm seeing this 09:22 AM Compilation starting. 09:26 AM Error 500: --- begin server output --- htmlhead meta http-equiv=content-type content=text/html;charset=utf-8 title500 Server Error/title /head body text=#00 bgcolor=#ff h1Error: Server Error/h1 h2The server

[google-appengine] Re: Why Google Groups doesn't send me Abridged Emails of GAE group and GAE Java groups any more?

2012-01-30 Thread Ubaldo Huerta
Same here, no digest anymore -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/S38_U_uTjMUJ. To post to this group, send email to

[google-appengine] Re: Ereporter problem

2011-11-09 Thread Ubaldo Huerta
Same problem, blank page. Note that your second example won't work as it will blow up an Exeption. sender argument is always required, even though it isn't needed if you just want to output the exception -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Re: Ereporter problem

2011-11-09 Thread Ubaldo Huerta
Well, just read the ereporter.py, it's easy to follow. You need to pass a date paremeter (it defaults to yesterday) Pass today's date and you'll see the exception records in the ouput. Something like date=%s % datetime.datetime.now().strftime(%Y-%m-%d) -- You received this message

[google-appengine] Blobstore v.s static file serving

2011-09-09 Thread Ubaldo Huerta
I wonder what's the prescribed way to serve an asset image (say, a site logo) 1-The easy way, using static handlers specified in app.yaml 2-Uploading them via the blobstore api I realize that 1 is simpler to do but I wonder if the fact that doing it via blobstore it would be served faster.

[google-appengine] Re: Blobstore v.s static file serving

2011-09-09 Thread Ubaldo Huerta
I also imagine that the the infrastructure for blobstore api is distributed, etc, etc, and that intermediate proxy caches are are better tuned to the etag, etc, etc it does. Objects in the blobstore are inmutable so I'm not sure why I get the following expires headers (for tomorrow) with a test

[google-appengine] Re: Blobstore for free custumers

2011-09-05 Thread Ubaldo Huerta
Yes, I just had the same issue. I have a staging site that is simply a way to test the app in the production environment but with different datastore. In order to test the blobstore related functionality I need to enable billing but since now enabling billing will soon costs $9/month my

[google-appengine] Re: FAQ for out of preview pricing changes

2011-05-20 Thread Ubaldo Huerta
Please googlers, 1- Everybody wants (and got used to) to be worry free of trafic spikes. Figure out a way to charge $.50 for $.50 worth of resource consumption, not 9$ for .50$ worth of consumption, even if it means paying one off entrance fee. i.e. $30 setup fee for 30$ worth of resources

[google-appengine] Re: 100 emails recipients newly created applications.

2011-05-11 Thread Ubaldo Huerta
It's shocking at best to witness such a reduction on free email recipient quota. -- 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

Re: RE: [google-appengine] Re: App engine apps forbidden in Cuba

2011-03-24 Thread Ubaldo Huerta
, such as panoramio, is available in Cuba, and other sites aren't. Thanks, I appreciate that google is taking it's time to respond to my requests. -- Ubaldo Huerta - Hide quoted text - Just sharing the response I got from google's legal team regarding accessibility of app engine apps in Cuba, and my

Re: RE: [google-appengine] Re: App engine apps forbidden in Cuba

2011-03-21 Thread Ubaldo Huerta
Hi Brandon Thanks for the reply. I've certainly considered (an even tested) your proposal of using a reverse proxy, ironically hosted in one of the amazon free instances using apache mod_ proxy http://httpd.apache.org/docs/2.0/mod/mod_proxy.html It naturally works as all requests appear to

Re: RE: [google-appengine] Re: App engine apps forbidden in Cuba

2011-03-21 Thread Ubaldo Huerta
Hi Ikai Lan I already sent an email to le...@google.com, referencing this thread for further clarification. No response yet. Well, I hope that someone looks into this because I do want to use app engine for its benefits, I realize that I could use any provider but I've become acquainted with

Re: [google-appengine] App engine apps forbidden in Cuba

2011-03-20 Thread Ubaldo Huerta
://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit: http://www.reddit.com/r/appengine On Wed, Mar 16, 2011 at 11:33 AM, Ubaldo Huerta uba...@gmail.com wrote: Well, computational services, uff. Very vague, it sounds like google isn't looking hard into this issue, and it's taking

Re: RE: [google-appengine] App engine apps forbidden in Cuba

2011-03-16 Thread Ubaldo Huerta
Well, computational services, uff. Very vague, it sounds like google isn't looking hard into this issue, and it's taking the easiest and safest route without regard for the little guy, in this case, cuban consumers. I don't know how I could anymore denounce the internet access restrictions

[google-appengine] App engine apps forbidden in Cuba

2011-03-15 Thread Ubaldo Huerta
On a recent trip to Cuba I found that app engine apps are still unavailable there. Here is the message I got when accessing askaro.com *Forbidden* Your client does not have permission to get URL / from this server. (Client IP address: 200.55.181.33) You are accessing this page from a forbidden

Re: [google-appengine] server error accessing datastore admin

2011-02-22 Thread Ubaldo Huerta
Hi Robert In my google apps dashboard I disable, that is, deleted, the app engine app (the jargon is very confusing, to say the least), but anyhow, I disable the app and added it again. Still the same error. I wonder if you meant actually deleting the app in app engine dashboard and add it

[google-appengine] server error accessing datastore admin

2011-02-21 Thread Ubaldo Huerta
While attempting to use the datastore admin I get the following error Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report http://code.google.com/appengine/community.html your problem and mention this error message

[google-appengine] Error! Put accepted 6 entities but returned 0 keys. (5 actually got updated)

2011-01-20 Thread Ubaldo Huerta
I've been noticing lately a lot of errors like this when trying to update several entities at once via db.put(entities). Here is the full stack trace. There is a strange warning at the bottom regarding exceptions during initialization but I can't find any exception, etc in the logs. I've

Re: [google-appengine] Re: sdk server too slow in 1.4.0

2010-12-12 Thread Ubaldo Huerta
Hi Robert 1-As I indicated, I do use appstats in local development (that´s where I got the timing on the queries). The query rpc(keys_only) is very slow (coudl take 3 seconds). db.get rpcs are very fast. Turning appstat recording on or off makes no significant difference in the overall

Re: [google-appengine] Re: sdk server too slow in 1.4.0

2010-12-12 Thread Ubaldo Huerta
Incidentally, just experienced one of the sqlite related issues, and added some comments http://code.google.com/p/googleappengine/issues/detail?id=3124 -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

Re: [google-appengine] Re: sdk server too slow in 1.4.0

2010-12-11 Thread Ubaldo Huerta
Hi Tim, Thanks for the thoughtful response. You're right that some of this bugs refer just to sqlite related issues, and some indeed highlight problems in the default file based datastore stub, not in sqlite. The 2 most concerning seem to be the one about inequality filters and the requiring

[google-appengine] sdk server too slow in 1.4.0

2010-12-10 Thread Ubaldo Huerta
Granted that the sdk server is painfully slow for even small datasets. However, I was stomaching it prior to 1.4.0. I had a page with 3 queries (each taking about 2 seconds). Now, after 1.4.0 upgrade they're taking appox 6 seconds each, according to app stats. My local data store has less than

Re: [google-appengine] sdk server too slow in 1.4.0

2010-12-10 Thread Ubaldo Huerta
Well, I have not changed my environment (running python 2.5 in osx) -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Re: sdk server too slow in 1.4.0

2010-12-10 Thread Ubaldo Huerta
I've considered but if you look a the issue database, there are plenty of known bugs in the sqlite implementation. I'm afraid that the real number is even higher. I hope someone at app engine team would soon take the plunge to make sqlite the default database stub in the sdk. That's the only way

Re: [google-appengine] Re: sdk server too slow in 1.4.0

2010-12-10 Thread Ubaldo Huerta
Does that mean that you're not concerned about the maturity of the sqlite implementation? -- 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-appeng...@googlegroups.com. To unsubscribe from this group,

[google-appengine] Re: dev_appserver.py --use_sqlite seems to have great potential but is still seriously broken

2010-10-28 Thread Ubaldo Huerta
I second this opinion. Not sure how many people have switched to sqlite but my guess is that only early adopter types have done so. I constantly struggle to trim down the amount of data I use in local datastore because beyond a few 1000's entities, it gets really slow, specially startup time. I'm

[google-appengine] Re: Datastore Read Errors

2010-09-01 Thread Ubaldo Huerta
Yes, I saw as well. The status page didn't report it. Not good On Aug 31, 10:31 pm, Beruk pascal.bour...@gmail.com wrote: Running a load test on my GAE app, getting a truckload of InternalError exceptions in datastore right now. Pascal On Aug 31, 4:19 pm, Joshua Smith

[google-appengine] No descending index on __key__, performing serial download

2009-12-12 Thread Ubaldo Huerta
While using the bulkloader --dump I get the No descending index on __key__, performing serial download warning of sorts. The dump occurs, and reasonably fast. However, I thought I didn't have to explicitly create this index on __key__, that this index was implicitly created like an index on any

[google-appengine] local sdk datastore too slow with a medium size data set

2009-12-12 Thread Ubaldo Huerta
Very often, while doing a restore (to a local sdk app), I get this error. Retrying on non-fatal URL error: (54, 'Connection reset by peer') I believe the retry indeed works, but it's a very unsightly thing to witness. See error below. I usually see it for a Kind that has many entities (many, in

[google-appengine] Re: What are your top three issues in appengine?

2009-10-06 Thread Ubaldo Huerta
1) Full text search 2) Full text search 3) Incoming email handling support --~--~-~--~~~---~--~~ 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] Re: Forbidden country error message (Cuba in this case, but maybe others)

2009-10-01 Thread Ubaldo Huerta
30, 11:09 pm, OvermindDL1 overmind...@gmail.com wrote: On Wed, Sep 30, 2009 at 2:02 PM, Ubaldo Huerta uba...@gmail.com wrote: To my dismay, my mother (and a friend) is telling me that a site (my pet project) hosted in GAE is showing a you're trying to access this site from a forbidden

[google-appengine] Forbidden country error message (Cuba in this case, but maybe others)

2009-09-30 Thread Ubaldo Huerta
To my dismay, my mother (and a friend) is telling me that a site (my pet project) hosted in GAE is showing a you're trying to access this site from a forbidden country. My mother is trying to use it form Cuba, where she lives. Hard to believe that GAE will have such a restriction. Can someone at

[google-appengine] Re: Are there any data recovery mechanisms for google app engine database?

2009-07-31 Thread Ubaldo Huerta
The issue with appcfg.py exporting is that you need to write an Exporter class per entity, etc, etc. It's prone to errors not to mention that it's a fair amount of work. Any professional web endeavor requires contingency plans to recover data in case there is an app error that incorrectly

[google-appengine] Re: Just released: Python SDK 1.2.3

2009-06-19 Thread Ubaldo Huerta
Regarding django support. Is it 1.02 support or just 1.0 support? I'm currently using zip import (which slows things down significantly when app instance is cold). The release notes says that django needs to be installed. But where? Is 0.96 removed? On Jun 19, 11:51 am, Paul Kinlan

[google-appengine] Google I/O 2009 - ..Scalable, Complex Apps on App Engine (audio problems)

2009-06-13 Thread Ubaldo Huerta
Audio of this presentation is barely audible. It's a shame because it seems like a very nice talk http://www.youtube.com/watch?v=AgaL6NGpkB8 It'd be nice if someone from google takes a look at it Thanks --~--~-~--~~~---~--~~ You received this message because you

[google-appengine] Re: Building a new index is taking way too long

2009-05-06 Thread Ubaldo Huerta
I'm having same issue. Index building, for a alpha app at this moment (just 100 entities), and it's stuck building index. Sounds like one has to factor in this lag time in the development cycle, that is, first update index definitions, wait wait and wait, then upload the app (well, if one uses

[google-appengine] Re: Still no full-text search? Mystified by the priorities.

2009-04-11 Thread Ubaldo Huerta
Jonathan I see no other simpler way than the google base thing. Of course, you can get yourself a sql instance in amazon cloud (or set up lucene, etc), etc but if you are here is because don't want to be a sys admin guy :-) In terms of efficient use of resource and control I would go with the

[google-appengine] Re: Still no full-text search? Mystified by the priorities.

2009-04-09 Thread Ubaldo Huerta
I second the opinion that proper full text search should have been in the road map. My app soon will need fulltext searching. I'm considering dumping all the data in google base and forwarding the searching against the google base api. I wonder if I'd be violating google base terms of service or

[google-appengine] Re: Debugging in Google App Engine

2009-04-01 Thread Ubaldo Huerta
You may want to take a look at firepython http://github.com/darwin/firepython/tree/v0.4 Firepython isn't quite debugging (stepping, breakpoints, etc), it's a way to get info, warning, etc log messages into firebug console. Now it even has profiling although I haven't tried that part yet On

[google-appengine] Re: Viewing a non default version log (appspot uri)

2009-03-10 Thread Ubaldo Huerta
My code never reaches. Even if the first lines of code that execute are import logging logging.info(Berfore anything ...); I see nothing in the logs. So, don't know really what's going on. Looks like a gae bug to me. I'll try with a fresh app id to see what happens -U On Mar 3, 5:43 pm, Nick

[google-appengine] Re: Viewing a non default version log (appspot uri)

2009-03-10 Thread Ubaldo Huerta
, Ubaldo Huerta uba...@gmail.com wrote: My code never reaches. Even if the first lines of code that execute are import logging logging.info(Berfore anything ...); I see nothing in the logs. So, don't know really what's going on. Looks like a gae bug to me. I'll try with a fresh app id to see

[google-appengine] Re: Viewing a non default version log (appspot uri)

2009-03-03 Thread Ubaldo Huerta
Hi Nick, thanks for answering. You're correct, the drop down let's you switch the version. However, my problem is that I only see the Requests Only logs. The exception I mention in the original message doesn't make it to the error log, so I don't know where it happens, i.e can't debug my

[google-appengine] Viewing a non default version log (appspot uri)

2009-03-02 Thread Ubaldo Huerta
Preliminaries: my deployment script gets svn version number (via svn info), sets the version in app.yml and does the upload via appcfg.py I increase version number to be able to test the app before going live using the uri in the admin dashboard. For example, if my default version is 200 and I

[google-appengine] Re: thoughts on the new Loader and migration experience

2009-02-15 Thread Ubaldo Huerta
According to the docs, None should work. Try returning empty list []. def HandleEntity(self, entity): Subclasses can override this to add custom entity conversion code. This is called for each entity, after its properties are populated from CSV but before it is stored. Subclasses

[google-appengine] Scalable forum design

2008-09-17 Thread Ubaldo Huerta
Suppose you have to design a high traffic forum site (let's simplify it assuming you don't need topic replies). So, you'll need two kinds. Topic title body User name 1) How to avoid contention for new topics? Should the ancestor of a new Topic entity should be the User entity? I assume

[google-appengine] Re: Problems with Geohash / Inaccuracy / ow to deal with this ?

2008-09-04 Thread Ubaldo Huerta
Do you have a example of a point whose geohash value isn't greater than SW, NE geohashes? I've tried, in the python interpreter, many examples, and haven't observed what you're describing. It's pretty scary because I'm writing a lot of code for a geo app that's based on that property of