[google-appengine] How do i reload my app(google wave robot) in app engine

2010-07-13 Thread Alex
i have deploy a wave robot on to app engine. it works as expected, i then make some change to the code, deploy it on the same app engine version the change i made was not in effect. according to

[google-appengine] Opening a JSP editor results in eclipse not responding

2010-07-13 Thread Alex
Hi, I have run into some problems with eclipse and hope that someone here can help me. I created a GAE project and wanted to experiment with some basic JSP stuff. I run into the known problem that I have to install a JDK. After doing so, problems got worse. When I now try to create or edit a JSP

[google-appengine] problem with django forms and reference properties

2010-05-19 Thread Alex
'. The form and everything works fine until I try to preformat the Library field. Any advice very welcome. Thanks, Alex class Library(db.Model): #unique name of this library name = db.StringProperty(required=True) # description of this library description = db.StringProperty(default

[google-appengine] ORDER BY __key__ returns wrong order

2010-05-13 Thread Alex Kirs
The code Entity.gql(WHERE __key__ :1 ORDER BY __key__, db.Key(entity.last_key)).fetch(1000) returns WRONG order (notice how after GP goes GI): agdiYWR3aWtpcgsLEgRDbGlwGPoSDA agdiYWR3aWtpcgsLEgRDbGlwGPsSDA agdiYWR3aWtpcgsLEgRDbGlwGPwSDA agdiYWR3aWtpcgsLEgRDbGlwGP0SDA agdiYWR3aWtpcgsLEgRDbGlwGP4SDA

[google-appengine] Re: ORDER BY __key__ returns wrong order

2010-05-13 Thread Alex Kirs
Thanks for your reply! But it doesn't work for me :( Entity.gql(WHERE __key__ :1 ORDER BY __key__ ASC, db.Key(last_key)).fetch(PAGESIZE) returns the huge list I will post in the end... But the strange thing for me is that if you take a look at elements #7, #109, #203 etc you will notice that the

[google-appengine] ASCID cookie

2010-05-10 Thread Alex F
Hi All, I want to get the ASCID cookie from the browser using javascript to give it to JavaFX, and then in JavaFX do http request introducing the ASCID cookie in the header. I try it with this code but I can only get the JSESSIONID cookie: script language=javascript type=text/javascript

[google-appengine] Re: Entities stuck as read-only after scheduled maintenance

2010-04-29 Thread Alex UK
Bump. I filled production issue on issue tracker - I have 3 or 4 types of errors by clicking on one link, including 500 and no errors in log. Now I am trying to recover from todays backup and have same internal error as Jay. On Apr 29, 7:04 am, jay kyburz@gmail.com wrote: The status board

[appengine-java] Re: Is there an equivalent of Python GeoModel project in Java?

2010-04-10 Thread Alex
the proximity fetch search). Please post an issue if something does not look ok. ++ Alex On Mar 1, 8:09 pm, Torquester christian.schloem...@gmail.com wrote: I tried out the Java Geomodelhttp://code.google.com/p/javageomodel/ The query used in the example provided on the project page seems strange

[appengine-java] Re: Geospatial data management with GAE Java

2010-04-10 Thread Alex
Please check on http://code.google.com/p/javageomodel/ On Mar 18, 1:35 am, Rahul Ravikumar tikura...@gmail.com wrote: There is a java port of the Geomodel project in java which you can try out. On Mar 17, 1:39 am, fvisticot fvisti...@gmail.com wrote: I know that Geomodel is a solution for

[appengine-java] Re: Is there an equivalent of Python GeoModel project in Java?

2010-04-10 Thread Alex
the proximity fetch search). Please post an issue if something does not look ok. ++ Alex On Mar 1, 8:09 pm, Torquester christian.schloem...@gmail.com wrote: I tried out the Java Geomodelhttp://code.google.com/p/javageomodel/ The query used in the example provided on the project page seems strange

[google-appengine] Re: Google App Engine Supported Language

2010-04-03 Thread Alex Koshelev
Hi, sohguanh! I think that GAE developers (Google) think that Python is better for this task -- building sandboxed run-time environment. And may be Python is better than Perl in other cases. On 3 апр, 12:28, sohguanh sohgu...@gmail.com wrote: Hi I am new to Google App Engine. I know it is

[google-appengine] Reference properties and ordering results

2010-02-24 Thread Alex
for a given Reel instance would be expensive. Ideas/advice/a thread I haven't seen? Alex -- 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: Reference properties and ordering results

2010-02-24 Thread Alex
is simply: reel_frames = reel.frames.order('auto_now_add_prop.order')   'frames' on Reel (created by the reference property from Frames) is just a query object. Robert On Wed, Feb 24, 2010 at 3:01 PM, Robert Kluin robert.kl...@gmail.com wrote: Alex,  You can only order by properties on the model

[appengine-java] Re: App Engine and Spring slow start up

2010-02-18 Thread Alex
Hi, It appeared that long init problem is well known for Grails users: http://jira.codehaus.org/browse/GRAILSPLUGINS-1736 I wasted couple of weeks to create app I cannot run. Hope that SpringSource and Google can solve the issue. On Feb 17, 7:41 pm, Stephan Hartmann hartm...@metamesh.de wrote:

Re: [google-appengine] Re: Downloading source code from Google App Engine

2010-02-18 Thread Alex Nemoy
On Thu, Feb 18, 2010 at 4:28 AM, Ikai L (Google) ika...@google.com wrote: Code download would only benefit Python, anyway, since Java source is not uploaded. There are a million reasons why this is a bad idea and some have been touched on. Personally, I cannot think of any situation in which I

[google-appengine] Re: Datastore updates in 1.3.1: So much better

2010-02-14 Thread Alex Popescu
documentation about Custom Admin Console pages Any ideas? :- alex On Feb 14, 9:00 am, Rob rob.bre...@gmail.com wrote: I just had to post to say thanks.  Since the 1.3.1 datastore performance improvements and automatic (behind the scenes) retries, the number of errors on my apps have been nearly

[appengine-java] Re: Generic type in GAE JDO. Howto?

2010-02-11 Thread Alex Lui
on the entity? On Sun, Feb 7, 2010 at 10:57 PM, Alex Lui luiale...@gmail.com wrote: As java.util.Map isn't supported by GAE, I'm trying to create a class @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable=true) public class DAOMapK extends Object, V extends Object

[appengine-java] Generic type in GAE JDO. Howto?

2010-02-08 Thread Alex Lui
As java.util.Map isn't supported by GAE, I'm trying to create a class @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable=true) public class DAOMapK extends Object, V extends Object implements MapK,V { ... however, got such exception in Eclipse console DataNucleus Enhancer

[appengine-java] Re: Datastore migration

2010-02-03 Thread Alex
looking for a reliable way for datastore backup. Haven't found anything really besides mimicking java classes in Python and use Python-based backup utilities. So, if you find something more convenient, please post it here. Regards, Alex On Feb 2, 1:22 pm, Moritz mor...@cloudme.org wrote: Hello

[appengine-java] Log4j in production GAE

2010-02-01 Thread Alex
application and Lo4j is working fine in development environment. But it doesn't (just does nothing) when I deploy my test application into live GAE server. Thanks in advance for any info, Alex -- You received this message because you are subscribed to the Google Groups Google App Engine for Java

Re: [google-appengine] Re: auto-logout user ?

2010-01-26 Thread Alex Nemoy
On Tue, Jan 26, 2010 at 7:45 PM, Danny Tuppeny da...@tuppeny.com wrote: If you mean fetching it server-side, then that won't work. I can't think of any nice way to do what you want, though there is a tickbox that says Keep me signed in. If the user ticks this, surely that's what they want?

[google-appengine] Re: Problem using 'www' as subdomain for app url

2010-01-25 Thread Alex
. Alex On Jan 24, 4:47 pm, Danny Tuppeny da...@tuppeny.com wrote: This definitely works, as I have a few www's set up like this. I had a very similar problem when I removed a subdomain from Blogger and tried to add it to my app. I had problems adding

[google-appengine] auto-logout user ?

2010-01-25 Thread Alex Nemoy
Can a user be logged out by the app without having to visit a logout url explicitly? Is creeting a logout url then fetching it a possibility? thank you N. -- 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] Problem using 'www' as subdomain for app url

2010-01-24 Thread Alex
Alex -- 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+unsubscr...@googlegroups.com. For more

[google-appengine] Re: Problem using 'www' as subdomain for app url

2010-01-24 Thread Alex
requested could not be found. (404)' So something is aware of the 'www' subdomain setup as a CNAME record and then not finding the site. Thanks Alex On Jan 24, 11:30 am, Nickolas Daskalou n...@daskalou.com wrote: It might be a problem with Google Sites in Google Apps. Search

[google-appengine] Re: Problem using 'www' as subdomain for app url

2010-01-24 Thread Alex
requested could not be found. (404)' So something is aware of the 'www' subdomain setup as a CNAME record and then not finding the site. Thanks Alex On Jan 24, 11:30 am, Nickolas Daskalou n...@daskalou.com wrote: It might be a problem with Google Sites in Google Apps. Search

Re: [google-appengine] Re: Send mail from user's Gmail address ?

2010-01-24 Thread Alex Nemoy
On Sun, Jan 24, 2010 at 8:58 PM, Danny Tuppeny da...@tuppeny.com wrote: I assume the queued task has the same privileges as the request that queued it and which only works when logged in. I don't know for sure, but I'd guess that's not the case. You can use login: admin to stop users

[google-appengine] Send mail from user's Gmail address ?

2010-01-23 Thread Alex Nemoy
Hello, Can an application send mail From: the logged in user's Gmail account? The documentation at http://code.google.com/appengine/docs/python/mail/sendingmail.html has this to say The sender address can be either the email address of a registered administrator for the application, or the

[google-appengine] Configuration issues - Google Apps account, GAE Application

2010-01-20 Thread Alex
to these questions is worrying. Where have I gone wrong? Thanks Alex -- 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

[google-appengine] Re: CancelledError: The API call taskqueue.Add() was explicitly cancelled.

2009-12-11 Thread Alex Popescu
On Dec 10, 1:44 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: Hi guys, Can anyone explain the meaning of the CancelledError? I read the documentation and I must confess that I'm not very sure what triggers it (at least I don't agree it is explicitly). Here is the scenario

[google-appengine] Re: Enable URL locally for testing purposes

2009-12-10 Thread Alex Popescu
Hi Nick, On Dec 9, 1:58 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Alex, The standard way to determine if you are running on the development server is this: DEBUG = os.environ['SERVER_SOFTWARE'].startswith('Dev') Awesome! That's exactly what I was looking for. Are you

[google-appengine] CancelledError: The API call taskqueue.Add() was explicitly cancelled.

2009-12-10 Thread Alex Popescu
a new task to continue the processing later Any comments, ideas, help are much appreciated, ./.alex -- 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

[google-appengine] Re: Enable URL locally for testing purposes

2009-12-10 Thread Alex Popescu
On Dec 10, 1:33 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Alex, On Thu, Dec 10, 2009 at 11:20 AM, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: Hi Nick, On Dec 9, 1:58 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Alex

[google-appengine] Re: Receiving Email, ASCII Decode, Stuck in Queue

2009-12-10 Thread Alex Popescu
to solve the above issue? I am getting it myself and by looking at the decode() method I don't seem to understand how it would be possible to correctly code this part. tia, ./.alex Question 2 - app engine keeps retrying these failed messages, and they keep failing.  How can I clear them

[google-appengine] Re: Enable URL locally for testing purposes

2009-12-09 Thread Alex Popescu
at the application/startup level. I am pretty sure that I could find a local import that might tell me that the app is using the SDK, but that seems like a really dirty solution and I'm pretty sure the Googlers have some hints ;-). ./.alex On Dec 8, 6:28 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com

[google-appengine] a simple problem

2009-12-08 Thread alex
I want to design an online compiler app on GAE,but i don't know if the google app engine can support executing the gcc by the python in the GAE server . -- 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] Enable URL locally for testing purposes

2009-12-08 Thread Alex Popescu
. But it looks like a change in the SDK is now ignoring all modules excluded in app.yaml so I lost this feature. Any ideas? tia, ./alex -- 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

[google-appengine] Re: Enable URL locally for testing purposes

2009-12-08 Thread Alex Popescu
On Dec 9, 1:25 am, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: Hi guys, I am wondering if there is a 'recommended' solution for enabling a set of URIs when the app is running locally for testing purposes. Until recently I had a setup which was defining additional URI mappings

[google-appengine] accessing date fields set to auto now and django forms

2009-12-04 Thread Alex
'form' to render in the html with {{ form.dob }} ? I would also like it to be subject to my own date widget code for rendering as any date input field in the application. Thanks Alex -- You received this message because you are subscribed

[google-appengine] Re: Datastore between apps.

2009-12-01 Thread Alex Epshteyn
Running both python and java runtimes (under different version strings) is an intriguing idea. Is it possible to have both the python and java local dev appservers to use the same local datastore? (If not, it seems difficult to properly test the apps.) Are there any other specific worms in this

[google-appengine] Re: Can you switch billing to monthly instead of daily

2009-09-16 Thread Alex Epshteyn
Could be weekly but with multiple apps it seems like I'm getting billed almost every day. Are the apps not consolidated under the same billing account? On 9/16/09, Nick Johnson (Google) nick.john...@google.com wrote: Hi Alex, Normal billing is weekly. Are you sure you're getting billing

[google-appengine] Can you switch billing to monthly instead of daily

2009-09-15 Thread Alex Epshteyn
It's a bit annoying to get daily billing emails and having 30 tiny charges on my credit card bill every month instead of one. In addition to being annoying, it complicates the accounting. I think every other hosting company charges on a monthly basis. Any chance App Engine could start using

[google-appengine] Re: urllib2 and cookies in GAE environment

2009-08-11 Thread Alex Tereshkin
= urlfetch.fetch(url=url, headers={'Cookie' : make_cookie_header(cookie)}) Hope this helps. Best Regards, Alex On Sun, Aug 9, 2009 at 9:09 AM, aigaignos...@gmail.com wrote: Prompt please, I wish to make automatic mail check through GAE, however the given script works on my

[google-appengine] Re: handling simple data structure upgrades

2009-08-08 Thread Alex Tereshkin
this type of upgrades, but wanted to check first if I'm missing anything or if such routine already exists. Thanks, Alex -- Alkis -- Best Regards, Alexander Tereshkin, Y-NODE Software --~--~-~--~~~---~--~~ You received this message because you

[google-appengine] Getting the latest version of my application

2009-08-08 Thread Alex
Hi, I uploaded my application and always worked from the same computer. Now I want to work from another place, how can I get the code of my application? I failed finding it in the documentation. Thank you for your time, Alex. --~--~-~--~~~---~--~~ You received

[google-appengine] Re: CPU time for trivial datastore roundtrip

2009-07-10 Thread Alex Popescu
(except some on which I'm doing extremely aggressive caching). ./alex -- .w( the_mindstorm )p. Alexandru Popescu On Jul 10, 2:46 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Alex, It's impossible to give a useful comment without first seeing the code that you're using. Speaking

[google-appengine] Re: AttributeError on google.appengine.ext.db (X object has no attribute _key_name)

2009-07-10 Thread Alex Popescu
Bug created: http://code.google.com/p/googleappengine/issues/detail?id=1850 ./alex -- .w( the_mindstorm )p. Alexandru Popescu On Jul 10, 2:49 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Alex, You're right - this is a bug. Although the correct behaviour may be to return

[google-appengine] Re: CPU time for trivial datastore roundtrip

2009-07-10 Thread Alex Popescu
back. ./alex -- .w( the_mindstorm )p. Alexandru Popescu On Jul 10, 7:17 pm, Nick Johnson (Google) nick.john...@google.com wrote: Here's the relevant ops that one of these pages (ex:http://www.nmaps.net/172547) does: self.user = model.User.get(db.Key(self.session['user'])) map

[google-appengine] Re: AttributeError on google.appengine.ext.db (X object has no attribute _key_name)

2009-07-09 Thread Alex Popescu
On Jul 9, 1:32 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Alex, Can you show us the definition of the class mentry is an object of? Where are you getting the instance of mentry from? Nick, Thanks a lot for getting back to me on this issue. I have figured out why I'm

[google-appengine] CPU time for trivial datastore roundtrip

2009-07-09 Thread Alex Popescu
18k datastore roundtrips with 0 results. How do you comment on this data when compared with the public announcements you've done in the past about the amount of requests an app can serve based only on free quota? ./alex -- .w( the_mindstorm )p. Alexandru Popescu PS: I have argued (and I continue

[google-appengine] AttributeError on google.appengine.ext.db (X object has no attribute _key_name)

2009-07-08 Thread Alex Popescu
I am getting a rather weird exception on this piece of code: [code] logging.info('auto-publish: %s resulted in %i', str(mentry.key()), status) [/code] File /base/python_lib/versions/1/google/appengine/ext/db/ __init__.py, line 643, in key elif self._key_name: AttributeError:

[google-appengine] App Gallery link fail

2009-07-06 Thread Alex
, line 177, in _validate_encode_value 'received %d bytes' % (MAX_VALUE_SIZE, len(stored_value))) ValueError: Values may not be more than 100 bytes in length; received 1041848 bytes Whoops! Cheers, Alex --~--~-~--~~~---~--~~ You received this message because

[google-appengine] Re: Appengine down again

2009-07-02 Thread Alex Epshteyn
Everything is completely down right now. This sucks. My site is losing users every minute. On Jul 2, 2:08 pm, stelg stelg.best...@gmail.com wrote: See for this issue this informationhttp://groups.google.com/group/google-appengine-downtime-notify/brows... On Jul 2, 8:01 pm, stelg

[google-appengine] GAE and YUI problem

2009-07-01 Thread Alex
to add myfile.html to app.yaml do I? Any insight so welcome. Alex --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

[google-appengine] Re: GAE and YUI problem

2009-07-01 Thread Alex
self.response.write.out. So - is there a way in the request handler to send the YUI handshake(assuming success) *and* follow that up (still in the same request handler) with the template rendering below? Don't hold back if this way of doing things shouldn't be going on. Thanks. Alex On Jul 1, 1:29 pm, Alex

[google-appengine] Re: Outage this morning

2009-07-01 Thread Alex Epshteyn
Another thing to note is that the system status dashboard did not pick this up: http://code.google.com/status/appengine On Jul 1, 3:10 pm, Alex Epshteyn alexander.epsht...@gmail.com wrote: My app's URL, typeracerdata.appspot.com was completely unreachble for 10 minutes and then mostly

[google-appengine] Re: Your application is exceeding a quota: Datastore Indices Count

2009-06-30 Thread Alex Epshteyn
I just started seeing this message as well today after I enabled billing on my app (id = typeracerdata) On Jun 29, 8:20 pm, Jeff S (Google) j...@google.com wrote: This quota has been reset, apologies for the inconvenience. Happy coding, Jeff On Mon, Jun 29, 2009 at 1:35 PM, gae123

[google-appengine] Elevated quota dropped a week ahead of schedule - not cool

2009-06-30 Thread Alex Epshteyn
A recent email from the App Engine team said: -- * On June 22nd, as previously announced, standard free quota levels are being adjusted: http://code.google.com/appengine/docs/quotas.html#Free_Changes * On July 6th, two weeks later, your application's special elevated free quota will

[google-appengine] Re: Problem in dashboard expanding log entries using Firefox 3.5 (Windows XP)

2009-06-30 Thread Alex Epshteyn
Confirmed. I'm also on XP with FF 3.5. Filed a bug for this: http://code.google.com/p/googleappengine/issues/detail?id=1799 On Jun 30, 11:13 pm, Tim Hoffman zutes...@gmail.com wrote: Hi I am just trying out Firefox 3.5 (windows xp - yeah I know ;-) and noticed that in the appengine

[google-appengine] Re: Too many versions error during upload

2009-06-29 Thread Alex Epshteyn
Uploads are working again for me as of this morning. On Jun 28, 6:59 pm, Alex Epshteyn alexander.epsht...@gmail.com wrote: I've been having the same problem since yesterday (with a Java app), Judging by how many messages there are on the groups about this the past couple of days, this is most

[google-appengine] Too many versions error during upload

2009-06-28 Thread Alex Epshteyn
I've been having the same problem since yesterday (with a Java app), Judging by how many messages there are on the groups about this the past couple of days, this is most likely a global app engine issue happening this weekend. I don't think it's related to the actual number of versions people

[google-appengine] Re: Problem administering the apps

2009-06-23 Thread Alex Geo
Yes, I just did that and it worked. Thank you very much! On Jun 23, 2:18 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Alex, Did you create your apps using a Google Apps account? If so, you need to log in athttp://appengine.google.com/a/yourdomain- for example,http

[google-appengine] Problem administering the apps

2009-06-22 Thread Alex Geo
this problem before? Please let me know if it did and it fixed. Best regards, Alex --~--~-~--~~~---~--~~ 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

[google-appengine] Re: Open Letter to Google App Engine Team: Billing for CPU time is Wrong

2009-06-17 Thread Alex Popescu
Nick, Thanks for your answers. I will follow up with a post including my suggestions and update this thread. ./alex On Jun 16, 5:04 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Alex, Thanks for your feedback. Responses inline. On Mon, Jun 15, 2009 at 11:46 PM, Alex Popescu

[google-appengine] Open Letter to Google App Engine Team: Billing for CPU time is Wrong

2009-06-15 Thread Alex Popescu
- it includes framework API internal calls CPU usage and this is not under developers' control - framework API calls are already billable separately The letter can be read here http://themindstorms.blogspot.com/2009/06/open-letter-to-google-app-engine.html ./alex http://the.dailycloud.net [1

[google-appengine] Bulk Upload/Download for List and Unicode properties

2009-05-21 Thread Alex Popescu
. For lists, things sound even more complex. I must confess that I haven't tried it yet, but (I don't know why exactly) I believe that specifying 'list' as a conversion type will not be enough. Has anyone tried any of these scenarios and have any hints for me? Many thanks in advance, ./alex

[google-appengine] Re: Index Building for a long time

2009-04-28 Thread Alex Popescu
Unfortunately I haven't seen your message and posted about it here: http://groups.google.com/group/google-appengine/browse_thread/thread/7660c2b0002a7d66# ./alex On Apr 26, 1:38 am, timwee tim.sh...@gmail.com wrote: I was wondering if anyone is facing the same issue as me... I have indexes

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

2009-04-28 Thread Alex Popescu
Is there any status update on this issue? I have noticed other posts on the list speaking about the same problem. ./alex On Apr 27, 2:59 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: Hi, I have defined a new index for an entity based on a datetime and 1char string property

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

2009-04-27 Thread Alex Popescu
such a long time, except a problem with the backend. The application id: dailycloud. ./alex --~--~-~--~~~---~--~~ 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

[google-appengine] Your application is exceeding a quota: App Config Service Config App Call Count

2009-04-22 Thread Alex
the 250-per-day quota? Alex Foley --~--~-~--~~~---~--~~ 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

[google-appengine] Re: GAE hiccups

2009-04-21 Thread Alex Popescu
that was. Not 100% same behavior here, but I have started to see DeadExceededErrors that seem to be related to both the datastore and memcache set operation. My app ID: dailycloud. Looking forward to some quick follow up. I'll continue to investigate the issue on my side. ./alex

[google-appengine] Re: Google App Engine applications are slow today

2009-04-21 Thread Alex Popescu
to see DeadExceededErrors that seem to be related to both the datastore and memcache set operation. My app ID: dailycloud. Looking forward to some quick follow up. I'll continue to investigate the issue on my side. ./alex [1] http://groups.google.com/group/google-appengine/browse_thread/thread

[google-appengine] Critical bug in URL handling: dropping everything after a semicolon

2009-04-17 Thread Alex Popescu
-kevin-has-to-say I have opened a ticket for http://code.google.com/p/googleappengine/issues/detail?id=1340 so please help me out to get it fixed as soon as possible by voting it up. thanks a lot, ./alex --~--~-~--~~~---~--~~ You received this message because you

[google-appengine] Re: Critical bug in URL handling: dropping everything after a semicolon

2009-04-17 Thread Alex Popescu
drops it. And according to RFC3986 my understanding is that the semicolon can be part of the URL (I'll not reproduce the EBNF here as it is quite complex). ./alex 2009/4/18 Alex Popescu the.mindstorm.mailingl...@gmail.com Hi, It looks like the production server is dropping everything

[google-appengine] Re: Critical bug in URL handling: dropping everything after a semicolon

2009-04-17 Thread Alex Popescu
On Apr 18, 1:17 am, powera pow...@gmail.com wrote: On Apr 17, 2:58 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: On Apr 17, 8:32 pm, 风笑雪 kea...@gmail.com wrote: ; is not a valid char in url, you need encode it. from urllib import quote quote(/090314/vm-memory

[google-appengine] Re: Critical bug in URL handling: dropping everything after a semicolon

2009-04-17 Thread Alex Popescu
On Apr 18, 1:43 am, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: On Apr 18, 1:17 am, powera pow...@gmail.com wrote: On Apr 17, 2:58 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: On Apr 17, 8:32 pm, 风笑雪 kea...@gmail.com wrote: ; is not a valid char

[google-appengine] IntegerProperty doesn't result in an int

2009-04-14 Thread alex
Got a class that extends db.Model with an IntegerProperty among the others. It's gets set at creation time (moreover, has required=True). Now, when I fetch an instance of this class, all other properties resolve just fine (StringProperty, DateTimeProperty, etc.). Now, passing IntegerProperty to

[google-appengine] Re: Server error when updating an app

2009-04-09 Thread Alex
Dear Ivan, It is a quota issue, basically saying that you've exceeded the number of times you can call the application config python file. I've found if you change the version in your app.yaml file and upload it, it will successfully upload under the quota limits. Alex Foley On Apr 8, 2:34 am

[google-appengine] Java Eclipse plugin dependent on org.eclipse.wst.xml.core.

2009-04-08 Thread Alex Neth
But I'm not sure where to find that: Google Plugin for Eclipse 3.4 (1.0.0.v200904062334) requires plug-in org.eclipse.wst.xml.core. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post

[google-appengine] Re: Importing simplejson from django.utils results in error with 1.1.9

2009-03-30 Thread Alex Popescu
On Mar 30, 12:24 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: The following code results in an ImportError with the SDK 1.1.9: from django.utils import simplejson while it is working as expected in SDK 1.1.8 and 1.1.7. Any ideas what have changed meanwhile? I've opened

[google-appengine] Versions Problem

2009-03-29 Thread Alex
I'm having a bit of problem with my app -- somehow my application has lost its ability to set a default version. I've got two versions up, 1 and 2, and neither is set as the default, so my main app site (*.appspot.com) doesn't work but both of my version sites (1.*.appspot.com and

[google-appengine] Latency Issues Stabilized

2009-03-17 Thread Alex Popescu
. [/quote] there is no clear indication in the second message (dated Mar.16) if the issue is solved and if the latency is completely back to normal. cheers, ./alex --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Latency Issues Stabilized

2009-03-17 Thread Alex Popescu
Looks like I've forgot to include the link to the discussion thread: Latency Issues Stabilized: http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/c1e5c4ca861362f ./alex On Mar 17, 12:07 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: I've just

[google-appengine] Re: cooperate with top Google Apps Engine developer

2009-03-05 Thread Alex Rad
Hi Linbo!The questions that it will answer is Where it is and what it is using Google map, reader and google finance. Drop me a few lines about your expereince and I will send out a full description as soon I have read through all the people who has shown their interest. Regards Alex

[google-appengine] Re: cooperate with top Google Apps Engine developer

2009-03-05 Thread Alex Rad
and...@badera.us *chuckle* So wait, you lack capability, but rather than be forthcoming about your needs, you wish to screen the people volunteering to help you? Sounds like yet another pseudo-entrepreneur who wants to take advantage of techies. On Thu, Mar 5, 2009 at 5:31 AM, Alex Rad alexra

[google-appengine] Re: Datastore operations slow

2009-03-04 Thread Alex Popescu
it for yesterday metrics that have already been acknowledged by the Google team). ./alex --~--~-~--~~~---~--~~ 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

[google-appengine] Re: Delete causes very highloads

2009-03-04 Thread Alex Popescu
ModelName.get_by_id(id_sequence)) ./alex --~--~-~--~~~---~--~~ 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

[google-appengine] Re: Latency Issue - More Feedback!

2009-03-04 Thread Alex Popescu
, profiling sessions, etc), I think it would be great to post them to that thread so we all be able to track this problem. cheers, ./alex --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post

[google-appengine] Re: Huge number of datastore timeouts.

2009-03-04 Thread Alex Popescu
, profiling sessions, etc), I think it would be great to post them to that thread so we all be able to track this problem. cheers, ./alex --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post

[google-appengine] [CRITICAL] Datastore operations slow

2009-03-03 Thread Alex Popescu
116ms-cpu 0kb The operation is performed in the same conditions and the data set is the equivalent in size. The appid is dailycloud. I'm looking forward to hearing the reasons for this degradation of the datastore performance. ./alex --~--~-~--~~~---~--~~ You

[google-appengine] Re: [CRITICAL] Datastore operations slow

2009-03-03 Thread Alex Popescu
On Mar 4, 2:29 am, Brett Slatkin brett-appeng...@google.com wrote: Hi Alex, We're aware of elevated Serving and Datastore latencies and are working hard to rectify the situation. We're very sorry for any trouble this is causing your application and others. Thanks for your patience. -Brett

[google-appengine] [CRITICAL] Datastore Timeouts

2009-02-28 Thread Alex Popescu
Today starting around 07.42am the datastore has started to through Timeout exceptions. I haven't read anywhere about an announced maintenance window, so I do consider this a critical issue. ./alex -- .w( the_mindstorm )p. Alexandru Popescu My app DailyCloud: http://the.dailycloud.net

[google-appengine] Re: Datastore Timeouts

2009-02-28 Thread Alex Popescu
On Feb 28, 5:49 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: Today starting around 07.42am the datastore has started to through Timeout exceptions. I haven't read anywhere about an announced maintenance window, so I do consider this a critical issue. Forgot to mention that I

[google-appengine] Re: Datastore Timeouts

2009-02-28 Thread Alex Popescu
[err.application_error](err.error_detail) Timeout [/code] ./alex -- .w( the_mindstorm )p. Alexandru Popescu On 28/02/2009, morten mor...@fusemail.com wrote:  I'm seeing this problem as well - seems to timeout well before the  allowed 30 seconds...  /Morten  On Feb 28, 4:53 pm, Alex

[google-appengine] Re: Scheduled maintenance

2009-02-28 Thread Alex Popescu
these times. So Google, please consider doing this on a Saturday/Sunday in the furture. Where is this info available? tia, ./alex -- .w( the_mindstorm )p. Alexandru Popescu --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[google-appengine] Re: DataStore : Unable to Delete Exploding Indexes

2009-02-27 Thread Alex Popescu
in my index.yaml or in any query. I was wondering what can I do to finally remove it (I have read the articel How Index Building Works [1], but I still cannot figure out how to remove this unnecessary index). ./alex [1] http://code.google.com/appengine/articles/index_building.html

[google-appengine] Re: Counting real storage roundtrips

2009-02-27 Thread Alex Popescu
On Feb 26, 5:27 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: Hi all, I've spent a lot of time lately profiling my app. Basically, I've been looking for spots where optimizations can be done so that I better understand its state and figure out how soon I might need to look

[google-appengine] A searchable DictProperty

2009-02-27 Thread Alex Popescu
posted the code to the issue tracker: http://code.google.com/p/googleappengine/issues/detail?id=1106 so if you find it useful and correct please vote it there. tia, ./alex -- .w( the_mindstorm )p. Alexandru Popescu --~--~-~--~~~---~--~~ You received

[google-appengine] Counting real storage roundtrips

2009-02-26 Thread Alex Popescu
, ./alex -- .w( the_mindstorm )p. Alexandru Popescu --~--~-~--~~~---~--~~ 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

[google-appengine] Extended db.Model providing access to ReferenceProperty key

2009-02-26 Thread Alex Popescu
). While I do know how to write the code to get the referenced entity key, I have no idea how can I enhance db.Model to automatically provide this feature. I'd appreciate any hints on how to get this functionality (or even better the implementation). Many thanks in advance, ./alex -- Cloud Now: http

<    3   4   5   6   7   8   9   >