[google-appengine] Re: Error for datastore_v3.RunQuery()

2009-07-07 Thread 'Αλκης Ευλογημένος
Do you retry requests that timed out? If not can you wrap them in a retry loop and see if that fixes it? On Tue, Jul 7, 2009 at 12:12 AM, Federico Builes wrote: > > I'm seeing a lot of "Error: An error occurred for the API request > datastore_v3.RunQuery()" in my application (around 1.5%, app_id i

[google-appengine] Re: HIPAA requirements vs. AppEngine security guidelines

2009-07-07 Thread Andrew Badera
There's a whitepaper by Amazon on the topic. Google it, it's been a few months since I looked at it, don't have a link offhand, sorry. Thanks- - Andy Badera - and...@badera.us - Google me: http://www.google.com/search?q=andrew+badera - This email is: [ ] bloggable [x] ask first [ ] private On

[google-appengine] Re: Strange production only problem

2009-07-07 Thread Nick Johnson (Google)
Hi techboy, App Engine uses a custom Python environment, and as such, things like the search path may differ. For example, if you execute "sys.path" on shell.appspot.com, you get: ['/base/python_dist/lib/python25.zip', '/base/python_lib/versions/third_party/django-0.96', '/base/python_dist/lib/p

[google-appengine] Re: Authenticate user in AppEngine from iGoogle gadget

2009-07-07 Thread Rohannes
Yes you are right. I will use the opensocial API and a signed makeRequest to send the user id to AppEngine -- that's what I wanted really. Then I can identify those records with the user id. Would this user id be the same as the id in the Google Accounts API? That we be awesome. Then users could

[google-appengine] unable to add new .com domain to GAE

2009-07-07 Thread Robert S
For the past few days when I attempt to link my domain name at: https://www.google.com:443/a/cpanel/XX.com/AddAppEngineService i get the following error "An error occurred while trying to install this application. Please try again later." very vague, but it's been happening since Sunday (w

[google-appengine] Re: unable to add new .com domain to GAE

2009-07-07 Thread Pashka R.
Hi Robert. Goto https://www.google.com/a/cpanel/XX.com/DomainSettings and change control panel version to current (the very last option) and try to relink your app. Should work. //wbr Pashka R. On Tue, Jul 7, 2009 at 14:38, Robert S wrote: > > For the past few days when I attempt to link

[google-appengine] Indexing Woes

2009-07-07 Thread Scott
app: skrit I've been trying to delete some indexes over the last couple days but I accidentally added a few of them back when I updated, so now they are in an Error state. They will not leave that error state; I can't get them back to deleting. Whenever I do something involving indexes, I tend t

[google-appengine] Re: bugs in index?

2009-07-07 Thread Nick Johnson (Google)
Hi buger, Sorry for the long delay. Your indexes should now be fixed. -Nick Johnson On Thu, Jul 2, 2009 at 4:11 PM, buger wrote: > > Ooh, looks like it is my karma of beta-tester. Nick, is it serious > bug? Maybe I it's not original question, but how it's going, do you > have progress?) > > On

[google-appengine] Are requests billable?

2009-07-07 Thread Rodion
Hello, The amount of requests to the application is limited and divided into free and billable quotas. But there is no information how much additional request quotas costs. Where can be found the prices to the request quotas? Thanx! --~--~-~--~~~---~--~~ You recei

[google-appengine] Re: Are requests billable?

2009-07-07 Thread Nick Johnson (Google)
Hi Rodion, Requests aren't directly billed for - only by the resources they use. The only billed resources are CPU time, outgoing/incoming bandwidth, stored data, and emails sent. -Nick Johnson On Tue, Jul 7, 2009 at 2:29 PM, Rodion wrote: > > Hello, > > The amount of requests to the applicatio

[google-appengine] CPU Billing

2009-07-07 Thread Rodion
Hello, how do you calculate the CPU costs? For example, if I want my application run 24x7, how much do I have to pay? How can I compute the CPU time in this case? Thanx --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group

[google-appengine] Re: CPU Billing

2009-07-07 Thread Nick Johnson (Google)
Hi Rodion, Requests are charged based on actual CPU time required to serve a request. Since a request can involve more than one computer simultaneously (for example, when executing datastore queries), this can come out to be more than the actual number of wall-clock seconds spent executing that r

[google-appengine] Re: Indexing Woes

2009-07-07 Thread Nick Johnson (Google)
Hi Scott, On Tue, Jul 7, 2009 at 1:06 PM, Scott wrote: > > app: skrit > > I've been trying to delete some indexes over the last couple days but > I accidentally added a few of them back when I updated, so now they > are in an Error state. They will not leave that error state; I can't > get them b

[google-appengine] RAM Question

2009-07-07 Thread Rodion
Hello, is it possible to get information about how much RAM will be available for the installed application? What are the min and max limits? Thanx! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine

[google-appengine] Re: DatastoreNeedIndexException: no matching index found.

2009-07-07 Thread Nick Johnson (Google)
Hi GArchitect, The index you list isn't suitable for that query - the index includes the 'id' field at the start, but you don't appear to be filtering or sorting on it. -Nick Johnson On Mon, Jul 6, 2009 at 4:28 AM, GArchitect wrote: > > Hi, I got the following exception in a method executing a

[google-appengine] Re: using Hook API to add additional filters to a query

2009-07-07 Thread Nick Johnson (Google)
Hi we, You need to familiarize yourself with the Protocol Buffer classes used internally. Reading the source is one option, as is experimenting on shell.appspot.com. You may find the Protocol Buffer definition handy: http://www.google.com/codesearch/p?hl=en&sa=N&cd=1&ct=rc#7VUv29z7Sc8/trunk/proto

[google-appengine] AppEngine server cannot import atom module

2009-07-07 Thread ZelluX
I have gdata library install on my ArchLinux, and a simple application which imports atom library at the beginning, when I run gapp engine and access that web app, $ python2.5 ./dev_appserver.py ~/myapp It throws exception 'No module named atom'. But when I run 'import atom' in Python2.5 int

[google-appengine] Re: app engine serving wrong static files

2009-07-07 Thread Nick Johnson (Google)
Hi Jay, This sounds like a caching issue, not an App Engine one. You can confirm this by going to http://yourversion.latest.yourappid.appspot.com/static/file/path (replace as appropriate) and verifying it's serving only new files. Or, append a dummy query string parameter to the end of the static

[google-appengine] Re: Indexing Woes

2009-07-07 Thread Scott
Oh no! Now it shows all the previously deleting indexes are in a state of permanent error, with vacuum_indexes being ineffective. Are you sure those are now deleting? -Scott --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

[google-appengine] Re: AppEngine server cannot import atom module

2009-07-07 Thread Nick Johnson (Google)
Hi ZelluX, Since App Engine doesn't have access to modules installed in your site_packages, the dev_appserver emulates this by making them inaccessible. You need to copy any modules you want to be accessible into your app's directory. -Nick Johnson On Tue, Jul 7, 2009 at 3:40 PM, ZelluX wrote:

[google-appengine] Re: Indexing Woes

2009-07-07 Thread Nick Johnson (Google)
Hi Scott, Try vacuum_indexes again now. -Nick Johnson On Tue, Jul 7, 2009 at 3:54 PM, Scott wrote: > > Oh no! Now it shows all the previously deleting indexes are in a state > of permanent error, with vacuum_indexes being ineffective. Are you > sure those are now deleting? > > -Scott > > > -

[google-appengine] Re: Indexing Woes

2009-07-07 Thread Scott
I tried a few more times. No luck. -Scott --~--~-~--~~~---~--~~ 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 gro

[google-appengine] upload error: java.net.SocketException: Connection reset

2009-07-07 Thread Roger
Hi all, Greeting from Roger I try to deploy App via eclipse plugin several times, but every time I got the exception as below. It has nothing to do with my code, right? Could anyone help on this? thanks in advance. Unable to upload: java.net.SocketException: Connection reset at sun.refle

[google-appengine] Kind if applet to servlet communication with appengine

2009-07-07 Thread n...@oj
Hi everyone, I wrote a small application deployed on my server which tends to generate some files. The action of generation is called in a rpc method when the user ask for it. In my service implementation (call it "applet"), I open an url connection to a remote servlet : URL url = new URL("http

[google-appengine] Google App engine down

2009-07-07 Thread jukl
Check http://appgallery.appspot.com/ --~--~-~--~~~---~--~~ 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,

[google-appengine] Re: Google App engine down

2009-07-07 Thread Jeff S (Google)
Hi, The App Gallery has been taken offline for maintenance. App Engine as a whole is doing just fine at the moment. The out-of-service page which you are seeing is actually being served by App Engine and is just a new version of the app which we switched to temporarily since the old version conta

[google-appengine] Re: need more than 10 apps

2009-07-07 Thread Jeff S (Google)
Hi Roberto, I've increased your app limit to 20. Happy coding! Jeff On Mon, Jul 6, 2009 at 8:11 PM, coolmenu wrote: > > you can register more google account to deploy more APP..i think. > > On Jul 6, 8:32 am, Roberto Saccon wrote: > > Dear Google group admins: > > > > I have ten apps, one i

[google-appengine] Re: CapabilityDisabledError - How to simulate and test locally?

2009-07-07 Thread djidjadji
Could it be possible to use the hooks functionality [1] to throw a CapabilityDisabledError exception when a Put or Delete call is made? You can add the hooks only when you are running in the dev environment debugEnv=os.environ['SERVER_SOFTWARE'].startswith('Dev') if debugEnv: patch_appengine()

[google-appengine] Re: OAuth and text_db and google app engine and reading a google spreadsheet

2009-07-07 Thread Jeff S (Google)
Hello, I saw that you posted on the gdata python contributor's group and I replied there: http://groups.google.com/group/gdata-python-client-library-contributors/browse_thread/thread/19d93048d9914cd6 Thank you, Jeff On Sun, Jul 5, 2009 at 5:12 PM, fedex1 wrote: > > Hi, > > I'm sure I'm missi

[google-appengine] Re: Deploying to Google is very slow

2009-07-07 Thread Jeff S (Google)
Hi Neil and Koen, What are your app IDs? There could be quite a few factors that would cause an update to take longer than you may be used to, I'll investigate to see if there is anything on our end. Thank you, Jeff On Mon, Jul 6, 2009 at 11:58 AM, Koen Bok wrote: > > Hey Neil, > > I'm sort o

[google-appengine] Re: Problem launching dev_server via GoogleApp1ngineLauncher Version 1.2.3.422 on OSX

2009-07-07 Thread Jeff S (Google)
Hello, Unless I'm missing something it looks like the launcher is running just fine based on the stack trace you provided. The messages about that datastore are just warnings stating that the dev_appserver couldn't find a temp datastore file so it is creating a new one. Thank you, Jeff On Thu,

[google-appengine] Re: jruby app doesn't running on GAE

2009-07-07 Thread Jeff S (Google)
Hi tknv/, The NoClassDefFound error is a result of the class not being present in the runtime because it would violate the sandbox requirements for App Engine. On App Engine, you currently cannot make outbound TCP/raw socket connections (HTTP is fine with certain constraints on port numbers). More

[google-appengine] Re: API Versioning

2009-07-07 Thread alexbf
Thanks for your feedback Jeff, I'll try to keep my api backward compatible as much as possible, so yes, the versioning should allow my users to keep their existing version unless the api compatibility is broken for some reason (data model changes, etc). In that case, I think I will manage it wit

[google-appengine] Re: Dynamically add pages (url)

2009-07-07 Thread alexbf
Nice, thanks I'll give it a try. Would it be possible to have the HTML code in the table and render it instead of an html file? If so, what is the method to call? Regards, Alex On Jul 1, 8:50 pm, Pankaj Vishwani wrote: > One way to do this is the following: > > - Create a table with URL and fi

[google-appengine] Re: Need help with Email, getting an odd error

2009-07-07 Thread Jeff S (Google)
Hi Ray, It looks like ApplicationError 1 indicates an internal error, but there is not much more I can say without trying to reproduce the issue. Would you be willing to share some of your source code? Also, how rapidly are these emails being sent? The errors which are returned by the underlying

[google-appengine] Re: memcache architecture

2009-07-07 Thread jonathan
I'd also be interested to know if there is some general predictions we can make about how much data we can actually store in memcache before our LRU data is evicted. I am using memcache as a processing queue for non-critical writes and I run a cron-job every one minute because I am not sure how of

[google-appengine] a bug of urlfetch on GAE production server

2009-07-07 Thread chenbaiping
I have a very simple html page http://cbc007.cn/test.html . When I fetch it using http://shell.appspot.com/, an error occurs, sometimes. When I fetch it in my app, it has the same error. >>> r=urlfetch.fetch('http://cbc007.cn/test.html') Traceback (most recent call last): File "/base/data/home

[google-appengine] Re: HIPAA requirements vs. AppEngine security guidelines

2009-07-07 Thread GenghisOne
Andy Thanks for the heads-up... The link to that paper is here and it makes for a good read... http://awsmedia.s3.amazonaws.com/AWS_HIPAA_Whitepaper_Final.pdf Unfortunately after I skimmed through it I felt a little unsettled about AppEngine's security model...probably just my limited understan

[google-appengine] a bug of urlfetch on GAE production server

2009-07-07 Thread chenbaiping
I have a very simple html page http://cbc007.cn/test.html . When I fetch it using http://shell.appspot.com/, an error occurs. When I fetch it in my app, it has the same error. >>> r=urlfetch.fetch('http://cbc007.cn/test.html') Traceback (most recent call last): File "/base/data/home/apps/shel

[google-appengine] Re: why there is no way to build a key id?

2009-07-07 Thread Jeff Enderwick
Just star'd it -thx. 2009/6/24 Jeff S (Google) : > Hi Jeff, > > This is an idea that we're aware of as well. If you could reserve the next > ID in advance, then you could actually do this in one put since multiple > entities could be sent in one batch :-) The workaround available now is to > use

[google-appengine] Re: HIPAA requirements vs. AppEngine security guidelines

2009-07-07 Thread Jeff Enderwick
I say go hire a HIPAA consultant who can answer such questions authoritatively. I've been through FIPS before, and you would not believe the odd lawyeresque contrivances used to get certified. With HIPAA you are in the same realm, and so you should hire yourself the appropriate barrister. $.02,

[google-appengine] Re: Problem with "Verify Your Account by SMS"

2009-07-07 Thread Luis
I get same error but I'm in the US using AT&T. Any help will be greatly appreciated. Thanks, - Luis On Jul 6, 3:22 am, "Nick Johnson (Google)" wrote: > Hi vico.ar, > > I've manually activated your account. > > -Nick Johnson > > On Fri, Jul 3, 2009 at 6:31 PM, vico.ar wrote: > > > I have a prob

[google-appengine] Re: a bug of urlfetch on GAE production server

2009-07-07 Thread 'Αλκης Ευλογημένος
Maybe the fetch service is blocked in China? On Wed, Jul 8, 2009 at 4:14 AM, chenbaiping wrote: > > I have a very simple html page http://cbc007.cn/test.html . > > When I fetch it using http://shell.appspot.com/, an error occurs, > sometimes. > When I fetch it in my app, it has the same error. >