[google-appengine] Re: Deployment failing today?

2009-12-04 Thread Jesse
me2 On Dec 4, 9:11 am, GAEfan wrote: > Me, too. -- 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+unsubs

[google-appengine] Out of apps

2010-03-09 Thread Jesse
Dear GAE team, Due to using a lot of my apps for -staging instances I'm out of apps. Can I get more apps for my je...@keyingredient.com account? Thanks, jesse -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to t

[google-appengine] Google Frontend IPs

2009-09-30 Thread Jesse
s our servers consistently? Thanks, jesse --~--~-~--~~~---~--~~ 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 t

[google-appengine] Re: Announcing SSL for Custom Domains Trusted Tester Program

2011-10-26 Thread Jesse
omain hosts would not be known beforehand by the cert. The routing would need some sort of interface to configure it. We have a lot of services under master domains and so this would be helpful. Best, jesse -- You received this message because you are subscribed to the Google Groups &q

[google-appengine] Re: Datastore Admin Copy

2011-10-29 Thread Jesse
There still seems to be a problem with this. I went to copy entities from one migrated HRD app to another (for staging) and only the /_ah/remote_api?rtok= request went through (with a 200), but then no data. It seems something is broken. -- You received this message because you are subscribe

[google-appengine] Any way to set domain for version of my app?

2009-01-21 Thread Jesse
howsfvotes.com. Is there a way to do this? Thanks, Jesse --~--~-~--~~~---~--~~ 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 unsubs

[google-appengine] Re: Any way to set domain for version of my app?

2009-01-21 Thread Jesse
t; > -- Dan > > On Wed, Jan 21, 2009 at 10:53 AM, Jesse wrote: > > > Hi, > > > I am deploying a beta version of my app. The domain is listed as > > 2a.latestappspot.com. My main app is hosted atwww.howsfvotes.com. > > I would like a way to deploy the b

Re: [google-appengine] Unexplained traffic loss

2012-05-17 Thread Jesse
We are seeing the same thing. On Thursday, May 17, 2012 6:19:16 PM UTC-5, Nathan Skone wrote: > > Brandon, > > I do not believe this is a network issue, since each

[google-appengine] Re: How to find if a friendship exist?

2012-11-20 Thread Jesse
riends with user 2? FriendShip.all().filter('account_id', USER_2_ID) # Not always consistent, but pretty close :) -Jesse On Tuesday, November 20, 2012 12:45:34 PM UTC-6, Emmanuel Mayssat wrote: > > I have a model as follow > > class User(db.Model): >name = db

[google-appengine] Re: How to find if a friendship exist?

2012-11-20 Thread Jesse
Typo: FriendShip(key= not FriendShip(parent= On Tuesday, November 20, 2012 2:48:25 PM UTC-6, Jesse wrote: > > Don't model it like this :). > > Seriously, do something like this: > > class FriendShip(db.Model): > account_id = db.IntegerProperty() # Sure use refpro

[google-appengine] Re: app engine performance tuning

2013-01-16 Thread Jesse
I never use get_serving_url on user-facing requests--it's slow and it sometimes craps out and needs a retry. Use it a task queue once and save the resulting URL onto your model. Then just manipulate the URL as needed (a property would make this uber simple). On Wednesday, January 16, 2013 11

[google-appengine] Re: Issues implementing URL slug

2013-01-16 Thread Jesse
You're not actually loading myhost// right? You're loading something like: myhost/123123/this-is-the-title-slug ? On Tuesday, January 15, 2013 3:17:50 PM UTC-6, NP wrote: > > I'm trying to implement url slugs in my app (python-based). I want the > slugged URL to be of the format myhost// > >

[google-appengine] Re: Issues implementing URL slug

2013-01-16 Thread Jesse
Since <> are not valid URL characters. On Wednesday, January 16, 2013 2:02:52 PM UTC-6, Jesse wrote: > > You're not actually loading myhost// right? You're > loading something like: > > myhost/123123/this-is-the-title-slug > > ? > > On Tuesday,

[google-appengine] appcfg.py update Server Error (500)

2010-04-28 Thread Jesse Hammons
tried it 5 times, I'm getting this error message: Server: appengine.google.com. Scanning files on local disk. Initiating update. Error 500: --- begin server output --- Server Error (500) A server error has occurred. --- end server output --- anyone else experiencing this issue? -- You receiv

[google-appengine] Re: 500 errors

2010-05-25 Thread Jesse K
App Engine just went down again -- seems the same as what was reported yesterday in this thread: can't access apps, can't access admin dashboard. App Engine Team, please get this under control! On May 24, 6:54 pm, Sanjay wrote: > Seems like a more general issue, my tasks are stuck as well, and

[google-appengine] Re: Dashborad is down?

2011-02-17 Thread Jesse Wiles
same here. yes, it's a Googe Apps account. -- 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 to google-appengine+unsubscr...@

[google-appengine] RSA public key encryption on app engine

2008-11-03 Thread Jesse Grosjean
Hi my name is Jesse Grosjean and I'm porting my Hog Bay Software (Mac OS X shareware) website to app engine. One thing that I need my website to do is generate license keys when users make an order. To create a license key I encrypt the users name like this (ruby code here) licens

[google-appengine] Google App Engine setup sequence...

2008-11-07 Thread Jesse Grosjean
no indication that any domains are being setup. What should I do next. I've just changed all my DNS records, and I'm worried that my site will go dead when people find my DNS pointing to ghs.google.com, but with nothing setup on the google side. Thanks for any ideas on what to do next. Jes

[google-appengine] Re: Google App Engine setup sequence...

2008-11-07 Thread Jesse Grosjean
Thank you very much for your quick reply. Your suggestion seems to have fixed the problem. I now see the app engine service in my google apps dashboard. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engi

[google-appengine] http HEAD responds with 405 in webapp framework

2008-11-16 Thread Jesse Grosjean
, my controllers now correctly respond to HEAD requests. Is this an OK implementation, or can it cause problems that I'm not thinking about? Thanks, Jesse --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App

[google-appengine] Re: http HEAD responds with 405 in webapp framework

2008-11-17 Thread Jesse Grosjean
I've just added an issue for it here: http://code.google.com/p/googleappengine/issues/detail?id=869 If anyone else would like this too please star the issue. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google A

[google-appengine] Re: Datastore Error

2008-11-26 Thread Jesse K
These errors have continued for me since this morning. In just the last hour we've had errors on about 11% of my requests. Jesse On Nov 26, 11:57 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote: > Hi, > > This was posted on the downtime-notify > group:http://groups.

[google-appengine] Creating a short unique URL for an entity

2009-01-10 Thread Jesse Grosjean
t actually tried this yet... but I think it should work? My goal is a unique, short, permanent URL for every document in the system. If I'm going about this the wrong way or doing something dumb please let me know. Thanks, Jesse --~--~-~--~~~---~--~~ You rece

[google-appengine] Sitewide 500 errors

2010-02-02 Thread Jesse Grosjean
I'm seeing the following error on all of my app engine sites including: https://appengine.google.com/ http://www.hogbaysoftware.com/ http://www.simpletext.ws/ ... - Error: Server Error The server encountered an error and could not compl

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Jesse Grosjean
Not sure what is going on exactly. Maybe a local problem... though the rest of the web works. Anyway: https://appengine.google.com/ Now works for me. As do my appspot related URLS: http://hogbaysoftware.appspot.com/ http://simpletextws.appspot.com/ But I'm still seeing a sitewide 500 error when

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Jesse Grosjean
hen the problem was local. Jesse -- 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...@g

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Jesse Grosjean
.. and it did. But now I see the problem again after logging into my Google Apps email account. So problem still not fixed for me. Jesse -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send ema

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Jesse Grosjean
le accounts. Jesse -- 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.

[google-appengine] Re: Interactive console -- users.get_current_user() always returns None

2010-02-16 Thread Jesse Hattabaugh
I'm also experiencing this problem. There are no errors in the logs when the login procedure is performed, even in the example code, but when the code is deployed it works fine. It's only the local user stub system that doesn't seem to work. Can someone please tell us what cookies are set by a work

[google-appengine] Verification Issue App Engine Account

2011-07-04 Thread Jesse Berkeley
Hey guys, Recently i was trying to sign up for the app engine and i entered my number to receive the verification. I've submitted my number 3 times and then I've been told I can no longer register. I keep getting this message. *← The phone number has been sent too many messages or has already

[google-appengine] https access through naked domain

2009-06-12 Thread Jesse Grosjean
ticed this problem. Can anyone recommend a solution? Thanks, Jesse --~--~-~--~~~---~--~~ 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@googleg

[google-appengine] Re: https access through naked domain

2009-06-12 Thread Jesse Grosjean
I forgot on last bit of information. I no longer need https support for any page on my site. So in the above example I would be happy to have https://hogbaysoftware.com/store turn into http://www.hogbaysoftware.com/store, I don't need it forwarded to my secure appspot domain. Thanks,

[google-appengine] Re: https access through naked domain

2009-06-12 Thread Jesse Grosjean
I'll just ignore the problem for now... that's why I love Google App Engine so much, because I don't have to deal with servers, apache, SSL certificates... A! I don't want to go back to that world :) But I'll explain the problem to Godaddy and see if

[google-appengine] Is the new User.user_id() property guaranteed to exist?

2009-06-18 Thread Jesse Grosjean
>From the docs it seems that it is. But on the dev server User.user_id () returns None. And that's breaking some of my code, because I'd like to make the property where I store the ID as required, but I can't do that now since None is returned on the

[google-appengine] Model design for wiki like "index" pages

2009-06-20 Thread Jesse Grosjean
ere, or is there a future possibility to specify that certain fields in a model are lazy load, not fetched and returned in the initial query? Thanks, Jesse --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine

[google-appengine] Re: Model design for wiki like "index" pages

2009-06-21 Thread Jesse Grosjean
atastore blob. But maybe a condition would be that the specified properties need to be stored in at least one index? If someone who knows a bit more about the possibilities of the datastore can direct me in the right direction, I'll write the request. Thanks, Jesse --~--~-~--~~

[google-appengine] Is "class Body(db.Model):" ok?

2009-06-23 Thread Jesse Grosjean
er. Also when I run a direct query in the console for: SELECT * FROM Body I get a page that reports: Server Error A server error has occurred. Can someone help me figure out what is going on? Thanks, Jesse --~--~-~--~~~---~--~~ You received this message

[google-appengine] Re: Is "class Body(db.Model):" ok?

2009-06-23 Thread Jesse Grosjean
rs" index that's serving Body entities. Jesse --~--~-~--~~~---~--~~ 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 T

[google-appengine] Re: Is "class Body(db.Model):" ok?

2009-06-24 Thread Jesse Grosjean
> It sometimes takes a while for new entity types to be reflected in the Admin > Console. Are the entities showing up now? No, I'm still seeing the same errors in the console. My app ID is hogbaytaskpaper. Jesse --~--~-~--~~~---~--~~ You received t

[google-appengine] Re: Is "class Body(db.Model):" ok?

2009-06-25 Thread Jesse Grosjean
Body objects. Any other ideas for getting the console to recognize this new Body model? Jesse --~--~-~--~~~---~--~~ 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-a

[google-appengine] Re: Is "class Body(db.Model):" ok?

2009-06-25 Thread Jesse Grosjean
d with things, I don't really care about it showing up in the console app, I was just worried that there might be something wrong elsewhere. Glad to know there isn't. Thanks, Jesse --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[google-appengine] Datastore problem?

2009-08-06 Thread Jesse Grosjean
I'm seeing lots of Datastore timeouts right now that I don't ushually see on www.writeroom.ws. Is there a known issue with the datastore now? Jesse --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Go

[google-appengine] Re: Datastore problem?

2009-08-06 Thread Jesse Grosjean
The problem seems to be fixed now, for me anyway. --~--~-~--~~~---~--~~ 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 t

[google-appengine] How to handle MemoryError

2009-08-07 Thread Jesse Grosjean
moryError It's happening when the user submits two big files to diff. I can't seem to find any mention of this error in the forums, can someone tell me exactly what it means? It it possible to catch it, and continue? Or a recommended process for dealing with MemoryErrors? Thanks, Jesse --~-

[google-appengine] Help with storage quota reading

2009-08-23 Thread Jesse Grosjean
Dumb question, but just want to make sure that I'm getting this right. In my dashboard I see: Stored Data, $0.005/GByte-day, 0%, 0.07 of 201.00 GBytes, $0.00 / $1.00 Am I correct in interpurting this to say that I've used 0.07 GBytes (~72 MBytes) of storage so far? Tha

[google-appengine] javax.net.ssl.SSLHandshakeException

2009-09-04 Thread Jesse Grosjean
but it seems to be sticking around. Does anyone know what could be causing it, and how to fix the problem? Thanks, Jesse --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to

[google-appengine] Re: Creating a short unique URL for an entity

2009-01-12 Thread Jesse Grosjean
has the parent entity group encoded in it for entities that are part of a given group. Jesse --~--~-~--~~~---~--~~ 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

[google-appengine] How to map URL containing commas to webapp handler

2009-01-15 Thread Jesse Grosjean
], debug=True) But that just gives me a 404. I've tried escaping the comma with a single or double \, but that doesn't help. Can someone give me a hint as to what I'm doing wrong? Thanks, Jesse --~--~-~--~~~---~--~~ You received this message becau

[google-appengine] ClientLogin for App Engine and HOSTED_OR_GOOGLE setting

2009-01-26 Thread Jesse Grosjean
y odd to me because in all the examples people seem to be using HOSTED_OR_GOOGLE, and that's documented as the choice that will accept all accounts. Can someone tell me why I have to use accountType GOOGLE so that I can login with either of my accounts, instead of using HOSTED_OR_GOOGLE? Th

[google-appengine] Transaction collision AND AttributeError: 'Document' object has no attribute '_key_name'

2009-03-13 Thread Jesse Grosjean
and then a "no attribute '_key_name" stack trace in the logs, and the delete fails to take place: 03-13 05:32AM 48.567 /v1/documents/1-1071?version=0 500 881ms 675ms- cpu 1kb WriteRoom/1.3.1 CFNetwork/342.1 Darwin/9.4.1,gzip(gfe) 64.222.203.28 - jesse [13/Mar/2009:05:32:49 -0700] &qu

[google-appengine] Re: Transaction collision AND AttributeError: 'Document' object has no attribute '_key_name'

2009-03-13 Thread Jesse Grosjean
d to web programming. Jesse --~--~-~--~~~---~--~~ 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, s

[google-appengine] best transaction and then memcache.delete pattern

2009-03-13 Thread Jesse Grosjean
ption 2 is to do it right after the successful call to run_in_transaction(). Option 2 feels a bit more correct, but Option 1 is convenient because I have easy access to the various model properties there. Are both options OK, or do that have different behavior that could cause problems? Thanks,

[google-appengine] Google Accounts RSS feed authentication

2009-04-10 Thread Jesse Grosjean
ation process somewhere on google site to make it a bit easier to find and official. Thanks, Jesse --~--~-~--~~~---~--~~ 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] URI Errors... logs?

2009-04-17 Thread Jesse Grosjean
x27;t see any errors when I go look in the logs section. How can I find out more about what is causing those errors? Thanks, Jesse --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] Re: URI Errors... logs?

2009-04-18 Thread Jesse Grosjean
rrors? At least it seems not to. Does anyone know exactly what response codes report errors and what ones do not? Looking at my logs the error frequency reported in the dashboard seems to correspond to 401 ("Unauthorized") responses from that URL. I'm guessing that must be it then.

[google-appengine] Re: Very large entity ids on 1.7.6 dev server

2013-03-21 Thread Jesse Rohwer
We are aware of this issue and will have it fixed before we release scattered ids in production. Thanks for reporting it. On Wednesday, March 20, 2013 9:13:32 AM UTC-7, Mahron wrote: > > hi, > > I just installed the new sdk and the scattered ids allocation is > giving me trouble. It is genera

[google-appengine] Re: Very large entity ids on 1.7.6 dev server

2013-03-26 Thread Jesse Rohwer
Hi all, To address the questions on this thread in order: 1. While we will be moving to scattered ids in production soon, we're going to limit the size of ids to the max integer that a 64-bit float can represent exactly, which will address the problem with floating-point representations. This

[google-appengine] Re: new devappserver2 and get_by_id

2013-03-26 Thread Jesse Rohwer
Hi Gianni, Are you encoding your ids as floating point numbers before calling get_by_id()? Please see this post: https://groups.google.com/forum/?fromgroups=#!msg/google-appengine/r7L2mH3VzLw/BfFsSTGjlbwJ Hope that helps! On Tuesday, March 26, 2013 9:50:04 AM UTC-7, Giovanni Di Noia wrote: > >

Re: [google-appengine] Re: Very large entity ids on 1.7.6 dev server

2013-03-26 Thread Jesse Rohwer
an switch back and forth between explicitly allocated and > automatically generated ids. Will this continue to be the case? > > Will there be an allocator method to generate a scattered id? > > Jeff > > On Tue, Mar 26, 2013 at 7:33 PM, Jesse Rohwer > > > wrote

[google-appengine] Re: Very large entity ids on 1.7.6 dev server

2013-04-04 Thread Jesse Rohwer
asons described above; but you will have time to prepare, and an interim period during which you can opt-out. Thanks again for your feedback. On Thursday, April 4, 2013 8:26:04 PM UTC-7, Brandon Thomson wrote: > > > On Tuesday, March 26, 2013 7:33:00 PM UTC-4, Jesse Rohwer wrote: >&g

[google-appengine] Re: Management of Id Allocation

2013-05-21 Thread Jesse Rohwer
you will see a sequence such as 1, 2, 1001, 2001, 3, 4, 2002, 1002, etc. If you'd like to precisely control what your keys look like, you can use named keys. -Jesse Rohwer Google App Engine On Wednesday, May 15, 2013 6:43:34 AM UTC-7, Christophe Pruvost wrote: > > Hi all, > > I

[google-appengine] Re: Upcoming Change to Datastore Auto IDs

2013-06-11 Thread Jesse Rohwer
Also, in response to Ray and Timh regarding integer data types: although the new auto ids will be too large to store in 32-bit integers, javascript code which encodes ids as 64-bit floats will still function. The new auto ids are designed not to exceed the maximum integer exactly representable b

[google-appengine] Datastore auto ID policy change in 1.8.1

2013-06-17 Thread Jesse Rohwer
s/python/datastore/entities#auto_id_assign> Cheers, Jesse Rohwer on behalf of the App Engine team -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: [google-appengine] Datastore auto ID policy change in 1.8.1

2013-06-18 Thread Jesse Rohwer
maintain legacy id's. > > > > > On 18 June 2013 06:23, Jesse Rohwer >wrote: > >> Hello App Engine Developers, >> >> If you are not concerned with the way in which the App Engine Datastore >> allocates auto IDs for stored entities, you can omit the fol

[google-appengine] Re: Datastore auto ID policy change in 1.8.1

2013-06-18 Thread Jesse Rohwer
on our existing applications that were deployed earlier to 1.8.1 > release (in 1.7.x and 1.6.x versions). > > Thanks, > Shankar > > On Tuesday, June 18, 2013 1:53:06 AM UTC+5:30, Jesse Rohwer wrote: >> >> Hello App Engine Developers, >> >> If you are not con

[google-appengine] Re: HR Migration questions

2013-06-24 Thread Jesse Rohwer
Hi johnP, some apps are seeing HRD migration issues, which we're currently working to resolve. You can follow on the issue tracker at: code.google.com/p/googleappengine/issues/detail?id=9521. If you could post your app id on that thread, we can check on your migration and let you know whether o

[google-appengine] Re: create_bulkloader_config doesn't reflect the latest schema changes

2013-06-27 Thread Jesse Rohwer
s returning to a more normal range now, but again: for operations that are not strongly consistent, including bulkloader, there are no guarantees. I hope this helps clarify the situation. Thanks, Jesse Rohwer on behalf of the App Engine team On Wednesday, June 26, 2013 2:41:40 AM UTC-7, Hoom

Re: [google-appengine] Re: create_bulkloader_config doesn't reflect the latest schema changes

2013-06-28 Thread Jesse Rohwer
://developers.google.com/appengine/docs/python/tools/uploadingdata#Editing_the_Configuration_File . Hope that helps! On Thursday, June 27, 2013 11:28:30 AM UTC-7, Hooman Korasani wrote: > > Hi Jesse, > > First off thank you so much for replying to this issue. We are a young > startup and are in proce

[google-appengine] Modules not routing requests as defined within dispatch.yaml

2014-02-11 Thread Jesse Redl
In our current application structure we have two modules defined. - One for "backend" processing. These are F1 instances that handle items like cron, mapreduce jobs, task queue processing etc. - One for "frontend" request handling. These are F4 instances that handle page / api requ

[google-appengine] Re: Are auto generated Keys guessable?

2014-02-17 Thread Jesse Rohwer
You should not rely on automatic numeric ids being unguessable. See the section "Assigning Identifiers" at http://developers.google.com/appengine/docs/java/datastore/entities#Java_Kinds_and_identifiers. Also, to get ids in the dev server like those in production, see http://developers.google.co

[google-appengine] Re: does bulk upload work of dev webserver with Python 2.7

2012-07-06 Thread Jesse Zhang
etter to use yaml. Email: j...@appengine.com > Password for j...@appengine.com: > For the dev server, you can just use an empty email; it won't ask for a password. jesse -- You received this message because you are subscribed to the Google Groups "Google App Engine" g

[google-appengine] Problems with custom domain and SSL, stopped working

2012-11-20 Thread Jesse Crocker
Last week(wednesday) I added a custom domain and ssl with sni to one of my apps that has been running for a while on an appspot.com subdomain. The custom domain and ssl worked fine until last night, but now a request over http returns a 404 error, and a request over https times out. Requests t

[google-appengine] Re: Seeing 500 response, and error 204 in the logs.

2012-11-28 Thread jesse meek
Hi, I'm hitting the same problem: http://stackoverflow.com/questions/13614996/gae-error-204-what-does-it-mean-how-do-i-avoid-it On Tuesday, 30 October 2012 01:13:09 UTC+13, Anand Mistry wrote: > > Hi, > > This does appear to be an issue with the runtime. We are aware of it and > are looking

[google-appengine] Scattered auto ids in 1.7.5 SDK

2013-02-21 Thread Jesse Rohwer
cattered" in the next release. It's a good idea to try it out now to ensure your tests aren't relying on sequential IDs. Also, as always, your apps should make no assumptions about automatic ID ordering in production. Automatic IDs have never been predictable in production. Quest

[google-appengine] Re: auto_id_policy error in cloud

2014-03-30 Thread Jesse Rohwer
How are you deploying? If you download the SDK here https://developers.google.com/appengine/downloads and use appcfg, does it work? (You should not even need to specify auto_id_policy: default). On Friday, March 28, 2014 2:19:12 PM UTC-7, GAEfan wrote: > > I have an app that, for some reason, i

[google-appengine] Re: A newbies's question. Don't beat me, please. Trying identical "Hello, World"s. Python vs. Go.

2014-07-11 Thread Jesse Rohwer
Experiments in the local environment (using dev_appserver) will not necessarily reflect the performance characteristics of your app in production. It might be more informative to deploy your two demo apps and measure the response latency. On Thursday, July 10, 2014 2:22:18 PM UTC-7, Alexander Z

[google-appengine] Re: MySQL server gone away

2014-09-10 Thread Jesse wu
Hi All, I have followed your instructions, my issue have been resolved, my app is working successfully. thanking you all On Tuesday, September 9, 2014 7:29:39 PM UTC+5:30, Jesse wu wrote: > > Hi, > I have developed the chat application using php(yii framework) and mysql. > I

[google-appengine] Re: New Datastore query tool (unofficial announcement)

2015-01-22 Thread Jesse Redl
Hi Huseyn? Where do you see / access this new tool? Somewhere in the cloud console? Jesse On Tuesday, January 20, 2015 at 5:06:58 PM UTC-6, husayt wrote: > > I just had tried the new Cloud Datastore Query tool. (which was not > announced yet) > > I can't believe i

[google-appengine] Google Code issue tracker cleanup

2014-07-11 Thread Jesse Scherer (Google)
and commitment. -- Jesse Scherer | Technical Program Manager | jsche...@google.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+uns

[google-appengine] Re: My $500 starter pack credit applied to someone else's account!

2014-08-05 Thread Jesse Scherer (Google)
Hi Dushyant, I believe that this page has appropriate links to contact Billing Support: https://developers.google.com/appengine/kb/billing#credit On Friday, August 1, 2014 8:19:21 PM UTC-4, Dushyant Bansal wrote: > > I'm not sure how to contact Google's support for my starter pack so I'm > post

Re: [google-appengine] Some instances running unreleased version of the App Engine SDK?

2015-09-18 Thread Jesse Scherer (Google Cloud Support)
Julian there should be somebody from the engineering team reaching out to you soon -- if not already -- to understand what happened in your case. As I mentioned in PK's issue we're working on ways to handle canaries better. BTW the most obvious approach, a flag for "never run my app on a canary

[google-appengine] Re: Custom Domains (and SSL)

2015-09-29 Thread Jesse Scherer (Google Cloud Support)
Hi Jay, Since your question is about system administration and not programming, you might try ServerFault as opposed to StackOverflow. In any case, can you share a bit more information? What does "Permissions" in the Developer console look like, for instance? Any other background you can share

[google-appengine] Re: Feedback to Google Technical Support on their contribution in this list

2015-10-19 Thread Jesse Scherer (Google Cloud Support)
eard you, we try to do that. Perhaps, in our attempts to improve on our prior "neglect" of the mailing lists, we're being too chatty, and we'll definitely keep that possibility in mind going forward. Regards, -- Jesse J. Scherer Technical Program Manager, Google Cloud Sup

Re: [google-appengine] Re: "One senses GAE is just not a major priority for Google"

2015-02-26 Thread Jesse Scherer (Google Cloud Support)
e useful to the community, I just wanted to assure you that these things are not in any way abandoned. - Jesse As somebody who is working full time to make public resources like Stack Overflow and this group more useful to our users, I just wanted to assure you that these forums are not by

[google-appengine] Re: OAuth2 stopped working on all our apps

2015-03-05 Thread Jesse Scherer (Google Cloud Support)
Hello, please see https://status.cloud.google.com/incident/appengine/15006 You can also follow the App Engine Downtime Notify list (https://groups.google.com/forum/#!forum/google-appengine-downtime-notify) for ongoing details. On Thursday, March 5, 2015 at 11:28:06 AM UTC-5, Daniel Florey wrote

Re: [google-appengine] Google Cloud Platform wants to hear from you

2015-04-20 Thread Jesse Scherer (Google Cloud Support)
re reliable place <https://groups.google.com/forum/#!searchin/google-translate-api/kickstarter/google-translate-api/0R1mYxNIBDc/gMUyCRufoLIJ> to get answers. I will follow up here in one week with a summary of what is going on with those Stack Exchange changes. I hope you'll keep the feedback co

[google-appengine] Re: twitter API suddenly returning error 32 “Could not authenticate you.” only in prod GAE

2015-05-01 Thread Jesse Scherer (Google Cloud Support)
Hey guys, great sleuthing indeed! I think this is related to another issue which was reported yesterday, https://code.google.com/p/googleappengine/issues/detail?id=11917 I'm going to add a summary of this thread to that issue, and I suggest you all "star" the issue, both to be copied on updates

[google-appengine] Re: How to alleviate 200gb/day - 20$+ daily outgoing bandwidth image serving costs

2015-05-02 Thread Jesse Scherer (Google Cloud Support)
Some thoughts: You could serve images from Cloud Datastore instead of from App Engine. You mention that bandwidth costs dominate instance time, but it should help a bit. If my math is correct, you're serving at least 250GB per day, so provided you're serving mostly to the US, the you'd get some

[google-appengine] Re: "Channel API Hours Used" quota exceeded

2015-05-06 Thread Jesse Scherer (Google Cloud Support)
Hi PK, The "Channel API Hours Used" quota has to with the TTL (time to live) of the channels you are opening. In Python, this is the "duration_minutes" variable, and it defaults to two hours: https://cloud.google.com/appengine/docs/python/channel/functions. Note that enabling billing for your

[google-appengine] Re: official informations website

2015-05-18 Thread Jesse Scherer (Google Cloud Support)
rmation as well. I've probably missed some places in the GAE docs, but we are trying to be much more clear about this. Regards, Jesse On Sunday, May 17, 2015 at 7:42:54 PM UTC-4, Nick wrote: > > This would make an excellent page on the GAE docs, especially if kept up > to date. >

[google-appengine] Re: Stack Overflow still official support channel?

2015-05-18 Thread Jesse Scherer (Google Cloud Support)
that page from the main Cloud Support page at https://cloud.google.com/support/ I've also updated the welcome message to include this information. Regards, Jesse On Wednesday, May 13, 2015 at 7:46:49 PM UTC-4, Jay Kyburz wrote: > > I have an important question that has not been answere

[google-appengine] Re: My Best App Engine Advice Would Be: Throttle Well

2015-05-26 Thread Jesse Scherer (Google Cloud Support)
have re-organized how Support assigns itself to groups. You'll find that a few Support Team members <https://groups.google.com/forum/#!aboutgroup/google-appengine> who have concentrated on this group are now nearly as active as yourself. Regards, Jesse P.S. Another of my colleagues

[google-appengine] Re: My billing account google compute engine inexplicably been disabled

2015-06-19 Thread Jesse Scherer (Google Cloud Support)
ed to consult with us on application development and architecture. The technical support service guidelines <https://support.google.com/work/answer/6183505>explain this a lot more clearly than the main support page <https://cloud.google.com/support/> does. Regards, Jesse On Thursday, June

[google-appengine] Re: My billing account google compute engine inexplicably been disabled

2015-06-23 Thread Jesse Scherer (Google Cloud Support)
Obagi wrote: > > Hi Jesse, thanks for answering, regarding my case, in fact there were many > answers as you highlight, my discontent took place when suddenly there was > an information vacuum that lasted about 2-3 days, likewise, this message > wrote before returning to resume contac

[google-appengine] Re: Problem of "You do not have sufficient permissions to view this page"

2015-08-10 Thread Jesse Scherer (Google Cloud Support)
Hi all, In order to help centralize communication I've created a "master" tracking issue: https://code.google.com/p/googleappengine/issues/detail?id=12242 I've asked Patrice to merge individual reports (there are about six at this point) into that issue once he's gotten all the information requ

Re: [google-appengine] Re: Gae + cloud sql 2 beta, how to move ?

2016-01-14 Thread &#x27;Jesse Scherer' via Google App Engine
gle.com/group/google-appengine. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-appengine/311d0ada-60a7-44bc-91b4-a54503842938%40googlegroups.com > <https://groups.google.com/d/msgid/google-appengine/311d0ada-60a7-44bc-91b4-a54503842938%40googlegr

Re: [google-appengine] Re: Having lost all my data

2016-01-14 Thread &#x27;Jesse Scherer' via Google App Engine
his discussion on the web visit > https://groups.google.com/d/msgid/google-appengine/8380dd09-15cd-4a2e-8b17-7b6942a4ad03%40googlegroups.com > <https://groups.google.com/d/msgid/google-appengine/8380dd09-15cd-4a2e-8b17-7b6942a4ad03%40googlegroups.com?utm_medium=email&utm_source=footer

Re: [google-appengine] Federated Login 500 Server Error

2015-04-27 Thread &#x27;Jesse Scherer' via Google App Engine
mail to google-appengine@googlegroups.com. > Visit this group at http://groups.google.com/group/google-appengine. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-appengine/14AA3050-C8EA-4C9B-9881-A3805B4082A0%40gae123.com > <https://groups.google.c

Re: [google-appengine] pdf in iframes

2015-04-29 Thread &#x27;Jesse Scherer' via Google App Engine
ce=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- Jesse J. Scherer Technical Program Manager, Google Cloud Support jsche...@google.com +1 (404) 803-0804 -- You received this message because you are subscribed to the Google Groups "Google App Eng

Re: [google-appengine] Re: A huge drawback of the new google issue tracker

2017-04-26 Thread &#x27;Jesse Scherer' via Google App Engine
.com > <https://groups.google.com/d/msgid/google-appengine/30aace72-a0ca-4d38-b477-ecfa43972e31%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- Jesse J. Scherer Technical Program Manager, Goo

  1   2   >