[google-appengine] index stuck in building for 45 minutes and I have not created any records yet

2010-06-11 Thread jay
Hi! I am a newbie to the google app engine. I tested the app locally and uploaded it. I have zero 0 records created and I am getting the error.. NeedIndexError: The index for this query is not ready to serve. See the Datastore Indexes page in the Admin Console. This query needs this index: - kind

[google-appengine] Re: GAE Hauling the Freight

2011-04-30 Thread Jay
I had a similar experience this month. Due to advertising related to a movie release. Requests/sec. spiked up to 50 per second and held there for a few hours. Absolutely no problem on app engine. We didn't have to touch anything. (of course we had thought about it before and maintained a very l

[google-appengine] proxy service

2011-05-11 Thread Jay
I have an API that I need to access that is a RESTful service. The problem I have is they are using a lame IP whitelist model for licensing. Obviously that is not going to work well on app engine. Has anyone had success with a low cost proxy service that they can recommend? -- You received th

Re: RE: [google-appengine] proxy service

2011-05-12 Thread Jay
Related thought. Has anyone used NAT to achieve the same thing? Could I setup a linux server and use iptables? -- 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 unsub

[google-appengine] Go Language

2011-06-12 Thread jay
Hi All, Anybody had a chance to play around with Go yet? My games are CPU heavy because I do a lot of number crunching on game data every time a user requests the game page. This code really has nothing to do with app engine but is pure game code. I would image this code would be significantly fa

[google-appengine] Re: issues if i switch to federated login

2011-06-19 Thread jay
w did other people get around this problem? Jay. On Jun 19, 6:19 pm, Robert Kluin wrote: > It is a known and very annoying issue, star bug > 3258.http://code.google.com/p/googleappengine/issues/detail?id=3258 > On Jun 18, 2011 9:35 AM, "andreas schmid" wrote:> hi, > >

[google-appengine] Re: Requests hanging when using Chrome and development server (python)

2011-06-21 Thread jay
On a related note, I had IE 9 pushed to me in a Windows update but it wont connect to local host at all. Any ideas? On Jun 22, 5:37 am, Jay Young wrote: > See the last post > here:https://groups.google.com/d/topic/google-appengine-python/YZ1GoePQjGc... -- You received this message becau

[google-appengine] Creating a login url without requiring email permissions

2011-06-27 Thread jay
ep in the log in process) At the moment if a user doesn't want to share their real email with me the login simply fails and they have to create a fake Google account to log into my service. Jay. -- You received this message because you are subscribed to the Google Groups "Google App En

[google-appengine] Re: Creating a login url without requiring email permissions

2011-06-27 Thread jay
8, 2:37 pm, "Nick Johnson (Google)" wrote: > Hi Jay, > > No, there's currently no way to do this. I presume you're using OpenID > logins, since Google logins don't explicitly prompt for this? If that's the > case, you could choose to use a third-party Open

[google-appengine] Re: Thread-safe Python Tips

2011-06-29 Thread jay
We are not going to have to go into that much detail for our apps thought are we. Will we be able to take advantage of the multi-threading by simply creating multiple request handlers. I imagined I would be changing a few lines of code in my main function an that's about it. On Jun 29, 9:43 pm, J

[google-appengine] Re: Creating a login url without requiring email permissions

2011-06-29 Thread jay
Actually, seems like emails are needed when logging in using a Google apps account. ie not a gmail address account. Not sure, its hard to debug here, I don't have access here to a lot of different account types to try. On Jun 28, 3:45 pm, jay wrote: > Nar, still using Google Acco

Re: [google-appengine] App Engine Weekly Community Update #1

2011-07-22 Thread Jay
n get this topic "Weekly Community Update" in email or rss. Anyone have any ideas? -- Jay -- 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-app

Re: [google-appengine] Sending email results in InvalidSenderError: Unauthorized sender

2011-08-16 Thread Jay
Yeah, I have tested this. It seems to impact authorized senders where the email address has a period in the name. -- 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/goo

[google-appengine] Re: 50$ credit, is it per app or per account?

2011-09-04 Thread jay
If we have changed our setting should we see the $50 in the current balance? I tried to claim mine for my three apps a few days ago but see no change. neptunespride blightoftheimmortals jupitersfolly I did see somebody else post about this over the weekend but I cant find that thread (its a litt

[google-appengine] Mapreduce with JDO

2011-09-05 Thread Jay
Could anybody please point me to an example where mapreduce is used in combination with JDO in order to add or remove fields. For example, I would like to know how I can add a string or a more complicated object to all entities of a given kind. Thank you very much in advance. Jay -- You

[google-appengine] Re: Google App Engine Leaving Preview

2011-09-05 Thread jay
This is not working for me. Who should I contact? -- 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/-/Z-vjTGrMTIsJ. To post to this group, send email t

[google-appengine] JUnit, URLFetch, HTTP POST -> Empty Response

2011-09-06 Thread Jay
ded with response code 200 (OK), but the response had zero size, which is not at all expected. Does anybody have an advice for me in order to solve this problem? Thank you very much Jay -- You received this message because you are subscribed to the Google Groups "Google App Engine" gro

[google-appengine] Instances + Memcache + Users

2011-09-08 Thread jay
Quick question, In my app users "do work" on some data. Every action they do I have to pull the data out of the datastore, unpickle it, do the transform, pickle it again and put it back in the datastore. Do today I'm doing some optimization where I'll look in the memcache first for the unpicked

[google-appengine] Re: Instances + Memcache + Users

2011-09-08 Thread jay
Oh, I just read that memcache is constant across instances. On Sep 9, 12:43 pm, jay wrote: > Quick question, > > In my app users "do work" on some data. Every action they do I have to > pull the data out of the datastore, unpickle it, do the transform, > pickle it aga

[google-appengine] Re: Instances + Memcache + Users

2011-09-08 Thread jay
do we know how big the memcache is? It would be good to know roughly how much data we can jam in there. On Sep 9, 3:26 pm, Robert Kluin wrote: > Hi Jay, >   Correct, memcache is global to your app.  The same user's requests > could go to any of your instances.  So caching use

[google-appengine] Re: using app engine for extremely demanding multiplayer browser game

2011-09-12 Thread jay
hanges to their data which needs to be written to the datastore. Those 2k players of Neptune's Pride generate about 2 Million writes which is $2 of my $3 a day bill. Feel free to shoot me any other questions you might have, just keep in mind I'm no expert! ;) Jay. On Sep 13, 2:32 am

[google-appengine] Questions abount ancestors and ancestor queries

2011-09-15 Thread Jay
where the membership of the child objects is defined by a variable (e.g. a string) and not by a relationship. Thank you very much Jay -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email

[google-appengine] Re: Questions abount ancestors and ancestor queries

2011-09-16 Thread Jay
I just read inside this discussion: http://groups.google.com/group/google-appengine/browse_thread/thread/29836be55ad7491d/f4039f9f27f31617 ...that the query performance is not improved significantly. -- You received this message because you are subscribed to the Google Groups "Google App Engin

[google-appengine] Re: Zig zag merge feature request

2011-09-26 Thread jay
What is a Zigzag Merge? Can somebody point me towards some documentation. I've not heard of this before. On Sep 27, 4:29 am, Alfred wrote: > Hi Jason, > > Thanks for filing this issue. These are all good suggestions. You can > do a large portion of this analysis today by collecting performance >

[google-appengine] Re: Zig zag merge feature request

2011-09-28 Thread jay
Thanks for the reply Jason. So you are saying that the automatic index creation will simply work more efficiently now? Is this documented somewhere? On Sep 27, 1:51 pm, Jason Collins wrote: > Basically, in the past, if you had a query like this: > >   query = MyEntity.all().filter('attribute1 ='

[google-appengine] Re: Questions abount ancestors and ancestor queries

2011-10-04 Thread Jay
The ancestor property is specified via which answers the first question. Finally, I would like to say thank you to everybody involved in this discussion. You are remarkable people. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post

[google-appengine] Anybody else having troubles with their own domain?

2011-10-12 Thread jay
I use Google Apps to point players visiting my domain to my App Engine Apps. I have been see all kinds of problems just in the last few weeks. Lot of reports from users that the sites appear to be down. I don't believe this is an app engine issues as accessing the site from myappname.appspot.com s

[google-appengine] Understanding

2012-01-26 Thread Jay
I am using Google APP Engine in Java to send XMPP messages to GTalk users.There is a servlet that sends these messages. There is a separate application written in .NET that takes care of other activities of my application. My question is; can I trigger this servlet to send a chat to a particular J

[google-appengine] Bunch of 503 last night 4/07/2012

2012-04-08 Thread Jay
I got a bunch of 503 responses last night on a particular app I look after. No indication of real quota issues or load problems. Load was light. Some 503 responses followed each other with minutes in between. Did anyone else see something similar? This app is on the Python runtime using HR datas

[google-appengine] Re: GAE Error code 121 - what does it mean?

2012-05-08 Thread Jay
I'm seeing the same, unrelated to indexes or any changes. I was deploying a version of the app with only a logging change and I see 121 on new deployments/versions. On Tuesday, May 8, 2012 11:51:11 AM UTC-5, Stu Thorne wrote: > > Hi, > > I have been seeing similar issues today. I believe they a

[google-appengine] Re: App Engine Framework Usage Statistics

2012-05-14 Thread Jay
Hello Dave, I mostly live in Python land on app engine myself. In Java land, I think people gravitate to lighter weight frameworks than the classic Java standards that you mention. I'll suggest two to consider: Play! framework Apache Wicket On Sunday, May 13, 2012 7:36:00 PM UTC-5, Dave wrote

[google-appengine] ArgumentError: An error occurred parsing (locally or remotely) the arguments to datastore_v3.Put().

2012-05-21 Thread jay
causing the problem would be greatly appreciated. Jay. -- 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/-/dmbObpk2lkYJ. To post to this g

[google-appengine] Re: ArgumentError: An error occurred parsing (locally or remotely) the arguments to datastore_v3.Put().

2012-05-21 Thread jay
Oh and the logs are chockablock full of DeadlineExceededErrors just importing modules like random or sys. Looks like something is going a little haywire. On Tuesday, 22 May 2012 06:18:45 UTC+10, jay wrote: > > Hey All, > > My App started throwing this error over the last 24 hou

[google-appengine] Re: gae-cms.com - A brand new CMS based on Google App Engine via Python

2012-06-16 Thread Jay
When I try to run locally I get path not accessible: './themes/.svn/templates' On Friday, June 15, 2012 12:16:24 AM UTC-5, GAE-CMS wrote: > > Hi Tim, I'm afraid the only demo right now is the one actually running the > website http://www.gae-cms.com. You may have been tricked into thinking >

Re: [google-appengine] Why I am I getting these HEAD / HTTP/1.1 errors?

2012-08-02 Thread Jay
HEAD requests like this often come from social sites or search engines to test a url. This may or may not be the case for you, but that is my experience. Depending on the framework you are using , you should be able to handle HEAD requests if you want to. Handling the request, even if it err

[google-appengine] Re: SDK 1.7.3 not detecting source file changes - ANNOYING!

2012-11-29 Thread jay
I am also seeing this issue on OSX On Thursday, 29 November 2012 15:09:43 UTC+10, vivpuri wrote: > > Our team is also facing this issue. Mac OS 10.8.2 with SDK 1.7.3 and also > on Windows 7. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group

[google-appengine] Re: Guido leaving App Engine team (and Google)

2012-12-07 Thread Jay
Congratulations Guido. I know all things change as they mature and grow. I have to admit feeling just a bit of concern about the app engine product though. I'm sure they have a great team in place. However, Nick leaves earlier this year, I think Ikai went to another group in Google, and now Gu

[google-appengine] increased datastore latency

2013-01-21 Thread Jay
Anyone else noticing sudden increased datastore latency? We have an app that has been behaving just fine and all of sudden (at least some) datastore queries have this large latency. This is using python2.7 with ndb. I can quickly tell that is the datastore because being logged in/out makes a h

[google-appengine] Re: increased datastore latency

2013-01-21 Thread Jay
I intended to also include the following: app id : galtsgulchonline I only had two instances serving just a bit ago and I terminated them both and let the scheduler start new ones. This had no impact on the latency though. On Monday, January 21, 2013 5:46:40 PM UTC-6, Jay wrote: > >

[google-appengine] Re: increased datastore latency

2013-01-22 Thread Jay
Just following up on my own post ... about 8 to 10 hours after the high latency started for this app, things went back to normal. On Monday, January 21, 2013 5:48:23 PM UTC-6, Jay wrote: > > I intended to also include the following: > > app id : galtsgulchonline > > I only

[google-appengine] Model.key().id() not working in 1.7.6 (old_dev_appserver.py)

2013-03-20 Thread jay
Hi Folks, First of all I would like to say that I'm attempting to work from the old_dev_appserver becuase I have not been able to get the new one to work yet. I have this issue https://code.google.com/p/googleappengine/issues/detail?id=9008&sort=-id&colspec=ID%20Type%20Component%20Status%20Sta

[google-appengine] Re: Model.key().id() not working in 1.7.6 (old_dev_appserver.py)

2013-03-20 Thread jay
Also, quick question. Is it possible to find and old download and roll back to a previous version 1.7.5 from February? I would like to be able to keep working. On Thursday, March 21, 2013 8:59:07 AM UTC+10, jay wrote: > > Hi Folks, > > First of all I would like to say that I

[google-appengine] Re: Model.key().id() not working in 1.7.6 (old_dev_appserver.py)

2013-03-20 Thread jay
Thanks for the suggestion Mahron, but the issue seems to be all just on the server. If I do pass them to and from the js client i use strings and cast to long before calling get_by_id On Thursday, March 21, 2013 9:36:13 AM UTC+10, Mahron wrote: > > Maybe you have a similar problem to this : >

[google-appengine] Re: Model.key().id() not working in 1.7.6 (old_dev_appserver.py)

2013-03-20 Thread jay
Marhron, looking closer at the numbers I think you might be right! They are getting rounded but somewhere inside the sdk! On Thursday, March 21, 2013 9:36:13 AM UTC+10, Mahron wrote: > > Maybe you have a similar problem to this : > > > https://groups.google.com/group/google-appengine/browse_thre

[google-appengine] Re: Model.key().id() not working in 1.7.6 (old_dev_appserver.py)

2013-03-20 Thread jay
OK, my mistake, I found where a case where I was letting json.stringify mush my id's. Thanks very much to Mahron for putting me on the right track! On Thursday, March 21, 2013 9:36:13 AM UTC+10, Mahron wrote: > > Maybe you have a similar problem to this : > > > https://groups.google.com/group/g

Re: [google-appengine] Python Datstore copy. MapReduce

2013-05-09 Thread Jay
I am seeing the same. On Tuesday, May 7, 2013 3:16:19 PM UTC-5, Sandeep wrote: > > Hi, > > I am trying to copy data from one application to other, I am using > database admin to migrate data. > > Have configured the application to receive data. I used to do this earlier > but today I see wired

Re: [google-appengine] Python Datstore copy. MapReduce

2013-05-10 Thread Jay
hould get > the update. > > > On Thu, May 9, 2013 at 12:07 PM, Tom Kaitchuck > > > wrote: > >> This should be resolved. Update to include cl/45189830. >> >> >> On Thu, May 9, 2013 at 10:14 AM, Jay >wrote: >> >>> I am seeing th

Re: [google-appengine] Admin panel constantly crashing on all my applications

2013-05-31 Thread Jay
My admin consoles seem to be back. I am seeing some weird timeout issue in a running app that seems to be related to the logging service. I'm seeing this, for example - which I had never seen before: CancelledError: The API call logservice.Flush() was explicitly cancelled. Any relationship?

[google-appengine] Anyone seeing write issues?

2013-05-31 Thread Jay
not in a transaction. I don't see sort of deadlock potential - it really seems like a datastore issue. Is anyone else having issues? -- Jay -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and

[google-appengine] Re: Anyone seeing write issues?

2013-05-31 Thread Jay
And just like that, they stopped. Attached screen shot from dashboard of errors per second. On Friday, May 31, 2013 5:54:57 PM UTC-5, Jay wrote: > > I have an app that started getting all kinds of write errors at about > 12:00 Pacific. Other apps are fine. > This particular app

[google-appengine] Re: Google App Engine SDK 1.8.2 is now available!

2013-07-18 Thread Jay
Quick question. I haven't found this explicitly in the documentation. Does the Modules feature/structure allow for mixing more than one language runtime in the same app? For example, can I have Python and PHP modules in the same app? On Wednesday, July 17, 2013 1:55:09 PM UTC-5, Richmond Manzan

[google-appengine] Re: SendGrid Integration

2013-08-08 Thread Jay
Joshua, what issues are you referring to? If I rely on GAE for bulk email, am I getting myself in trouble? On Wednesday, July 24, 2013 3:22:13 PM UTC-5, Joshua Smith wrote: > > Dunno how I missed this, but given the train wreck of GAE's email > delivery, this is very promising: > > https://deve

[google-appengine] Re: Best Practices for Continuous Deployment on AppEngine

2013-08-09 Thread Jay
I am curious. What kind of instability do you see? I haven't seen or at least noticed that. I'm not suggesting it doesn't exist. If there is something to watch out for there I would like to know. On Thursday, August 8, 2013 1:25:01 PM UTC-5, aloo wrote: > > I haven an appengine app and we curren

[google-appengine] Re: Datastore: how to design for huge time-series data

2013-08-13 Thread Jay
In my opinion, your biggest take away from this should be to avoid having a mega entity group and you do this by simply *not* having all the entities in question have the same parent. Or perhaps more pointedly, any parent at all. Unless there is a really strong case to put many thousands of enti

[google-appengine] increased 121 error code with http status 500 this morning

2013-08-22 Thread Jay
I think this has been an issue in the past. Backend instances won't run; being terminated. app id: galtsgulchonline -- 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

[google-appengine] Strange Behaviour with TextProperty

2013-08-25 Thread jay
I run a small video game. Each player has an account model with a variety of properties. I recently added a TextProperty to track player badges. These are just an ASCII character that is appended to the account.badges property as they are awarded. Because the properly is new, most account mo

[google-appengine] Python 2.5 and Master Slave Datastore

2013-09-14 Thread jay
How long do I have before I have to update my new app to python 2.7 and the new db? Is there a specified date when my old app will no longer function? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop

Re: [google-appengine] Python 2.5 and Master Slave Datastore

2013-09-14 Thread jay
lable until > April > 20, 2015, BUT Google can for its own reasons to end features sooner than > that. > > > > > > On 14 September 2013 21:04, jay > wrote: > >> How long do I have before I have to update my new app to python 2.7 and >> the new db? Is ther

[google-appengine] 5-10 mins of downtime after deployment.

2013-09-19 Thread jay
time is a big deal for my users. Is there anything I can do to fix this? Is this an issue on my side? Help! Jay. -- 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 i

Re: [google-appengine] 5-10 mins of downtime after deployment.

2013-09-20 Thread jay
want to look into. On Friday, 20 September 2013 13:44:38 UTC+10, Vinny P wrote: > > On Thu, Sep 19, 2013 at 7:38 PM, jay > > wrote: > >> Is this an issue on my side? >> >> > > Are you doing any processing at instance startup, or any sort of > time-consumin

Re: [google-appengine] 5-10 mins of downtime after deployment.

2013-09-20 Thread jay
Oh thanks Vinny, I do appreciate you taking the time to make some suggestions. Jay. On Saturday, 21 September 2013 01:28:55 UTC+10, Vinny P wrote: > > On Fri, Sep 20, 2013 at 4:45 AM, jay wrote: > >> >> Is this not something other folks are experiencing? >> > &g

[google-appengine] Prospective search subscription quota

2013-10-09 Thread Jay
I'm wondering if I can get the quota increased on an app that I have. We want to use prospective search for a simple daily notification subscription. However, it would require well over 10k subscriptions if we use the prospective search approach. Our app would need 30k to 50k subscriptions at t

[google-appengine] Re: Why GAE is very expensive?

2013-10-21 Thread Jay
There are at least 2 things that have to be pointed out here. First, I hate to say it, but you are probably comparing apples and oranges to some extent. You say the Google solution is more expensive than your VPS solution. However, part of what you are paying for with the Google solution is Int

[google-appengine] Re: how to filter query using dynamic parameters in NDB ?

2013-10-21 Thread Jay
Check out GenericProperty. There may be a way to do it with the other property classes, but I don't recall. On Monday, October 21, 2013 12:07:11 AM UTC-5, Vijay Kumbhani wrote: > > *In Google NDB docs...* > >- *they are given statically examples in documents >* >- *i have multiple A

[google-appengine] Re: Indexes stuck building

2013-10-21 Thread Jay
The typical procedure is to remove them, vacuum indexes, and then re-add. On Friday, October 4, 2013 12:14:04 PM UTC-5, Justin Ellison wrote: > > First time GAE user, but I'm trying to deploy a simple open source app and > my indexes stay stuck in "building". Any guidance appreciated. > > applic

[google-appengine] Deployment Issues 11/05/2013

2013-11-05 Thread Jay
Deploying a python app, I am getting Error 409: --- begin server output --- No transaction is in progress. --- end server output --- I have tried rollback followed by another attempt, but I get the same error. Anyone else having issues? -- You received this message because you are subscribed

[google-appengine] Re: Deployment Issues 11/05/2013

2013-11-06 Thread Jay
Rollback never worked. I just went to a new version of the app and that seemed to do the trick. On Tuesday, November 5, 2013 4:03:51 PM UTC-6, Jay wrote: > > Deploying a python app, I am getting > > Error 409: --- begin server output --- > No transaction is in progress. > ---

[google-appengine] Re: Task Queue | Python | Returns 500 on first attempt and 200 on second attempt

2014-02-21 Thread Jay
Yeah, you will want to drill down on that and figure where it is failing. If this consistently happens, the problem is most likely not taskqueue related. On Wednesday, February 19, 2014 4:52:53 AM UTC-6, Rohan Malhotra wrote: > > Hi, > > I am trying to send a mail via mandrill using GAE tasks. O

Re: [google-appengine] Re: Snapchat

2014-02-22 Thread Jay
Tapir, I really do not understand what you are trying to accomplish. Tim was sharing his thoughts and you come back with childish stuff like this. You are asking people to contribute their success stories to your other thread. You have made some choices in how you responded in this thread. I do

[google-appengine] Re: Using Cloud Datastore API in app engine

2014-03-19 Thread Jay
Hello. You can absolutely use modules to achieve what you want, you don't have to use different apps to run multiple web frameworks or change scaling needs. See the modules documentation for the info on changing scaling config per module. In app.yaml you can just split your api calls to be hand

[google-appengine] Re: Pubsub with Google App Engine

2014-04-03 Thread Jay
Prospective search might be what you are looking for. However, it is in "Experimental" https://developers.google.com/appengine/docs/python/prospectivesearch/ Rolling your own turns out to be quite doable. I have used this approach. It really amounts to some event which kicks off some form of fa

[google-appengine] Re: Twitter Like Feed?

2014-07-21 Thread Jay
This is a fanout problem. You don't want to try and do it with a query. Note: Prospective Search would be the ideal solution for this on App Engine, but it has serious quota issues in the state it is in currently. I wound up implementing my own fanout solution. On Monday, July 21, 2014 3:27:55

[google-appengine] Re: ndb, get_by_id can not get an entity with a parent key only by id?

2014-07-21 Thread Jay
Responding to your first post ... that is right. The parent key is part of the entity's key. When you use get_by_id, this is just shorthand for Key('Foo', 99).get(). You cannot get an entity by key unless you know the key, the whole key. You say you don't want to query, but your use case ... "g

[google-appengine] Re: ndb, get_by_id can not get an entity with a parent key only by id?

2014-07-22 Thread Jay
d use author.AuthSet to get all articles written by the certain author. > there is no query. how can i do the same thing in ndb? > > > 在 2014年7月22日星期二UTC+8上午3时55分28秒,Jay写道: >> >> Responding to your first post ... that is right. The parent key is part >> of the entity'

[google-appengine] Re: ndb, get_by_id can not get an entity with a parent key only by id?

2014-07-22 Thread Jay
nt is? in what instance it may be useful? > > 在 2014年7月22日星期二UTC+8上午3时55分28秒,Jay写道: >> >> Responding to your first post ... that is right. The parent key is part >> of the entity's key. When you use get_by_id, this is just shorthand for >> Key('Foo', 99

[google-appengine] Re: ndb, get_by_id can not get an entity with a parent key only by id?

2014-07-23 Thread Jay
> think it run a query. > > 在 2014年7月22日星期二UTC+8下午11时20分14秒,Jay写道: >> >> When you use that api in db, it is doing a query underneath the covers. >> >> On Monday, July 21, 2014 11:27:08 PM UTC-5, saintthor wrote: >>> >>> in db, i set such a propert

[google-appengine] Re: ndb, get_by_id can not get an entity with a parent key only by id?

2014-07-24 Thread Jay
I wrote a simple test app that used both the db and ndb api and deployed it to app engine. Using appstats I confirmed that both RunQuery when getting the list of articles. On Wednesday, July 23, 2014 8:03:40 PM UTC-5, Jay wrote: > > I refer you to line 3865 of __init__ in the ext.db pack

[google-appengine] Re: ndb, get_by_id can not get an entity with a parent key only by id?

2014-07-25 Thread Jay
gt; > 在 2014年7月25日星期五UTC+8上午8时03分44秒,Jay写道: >> >> I wrote a simple test app that used both the db and ndb api and deployed >> it to app engine. Using appstats I confirmed that both RunQuery when >> getting the list of articles. >> >> On Wednesday, July 23, 201

[google-appengine] Logs viewer broken for one of my projects

2016-01-14 Thread Jay
The background ajax loader for the logs viewer keeps getting 500 errors. It won;t load the logs for me at least on one particular project. I have checked other projects and the logs are loading ok. Project id in question is atlas-filmdb Thanks for any help. Totally dead without the logs. -- Y

[google-appengine] Re: Logs viewer broken for one of my projects

2016-01-14 Thread Jay
I deployed a new version and that seemed to resolve it. On Thursday, January 14, 2016 at 3:56:12 PM UTC-6, Jay wrote: > > The background ajax loader for the logs viewer keeps getting 500 errors. > It won;t load the logs for me at least on one particular project. I have > checked ot

[google-appengine] Getting "Unsupported filesystem" when initiating gae backup.

2016-03-28 Thread Jay
This just started happening all of a sudden. This is a python27 app engine environment. I am trying to backup to a google cloud storage bucket in a different project. I have successfully backed up from this project to the google storage project many times in the past so I know permissions are OK

[google-appengine] Re: Getting "Unsupported filesystem" when initiating gae backup.

2016-03-28 Thread Jay
Ah, well it turned out it was the old "/gs/..." bucket name thing. I was a bit confused by the documentation. It said something about "older app engine" and I thought the "/gs/..." was no longer required in all cases. On Monday, March 28, 2016 at 2:57:28 PM U

[google-appengine] Re: Where to store thousands of Constants?

2016-06-09 Thread Jay
One approach that can work really is to store this data as a json document in google cloud storage. This may require architectural changes however for the client to get the information. On Wednesday, June 8, 2016 at 10:20:03 PM UTC-5, YuRen Lin wrote: > > Hi, all > > I am in the game industry an

[google-appengine] Project Sharding/Load Balancing

2014-09-05 Thread Jay
This is a violation of the terms of service. You shoud have investigated more before investing the effort. -- 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] Re: Prospective Search Subscriptions over quota

2014-09-16 Thread Jay
I had the same issue a year and a half ago ... and Prospective Search is still in experimental. *sigh* Good luck. I love Prospective Search. I sure wish we could use it. Care to share a link to the forum featuring your app? On Tuesday, September 16, 2014 10:13:10 AM UTC-5, Appsent Minded wrote

[google-appengine] 9/19/2014 - Deployment issues?

2014-09-19 Thread Jay
I'm having trouble deploying to one of our App Engine apps. It just keeps trying the "Checking if Deployment Succeeded" step and over and over (60 sec. wait between). In the admin console | Versions, no version is selected. The app is serving however. Any one else having issues? -- You receiv

[google-appengine] Re: Datastore first public release

2014-10-01 Thread Jay
Not sure about the announcement date, but I have certainly been using it since the second half of 2008. On Wednesday, October 1, 2014 7:57:18 AM UTC-5, timh wrote: > > Hi > > Not sure of the exact date of announcement, but I got my invite for > Appengine of the 19/4/2008 > > Cheers > > Tim > > >

[google-appengine] Re: Distributed Promises library for python on appengine

2014-11-22 Thread Jay
Hi Emlyn, This looks promising ... (couldn't resist) :) Regarding releasing it as open source, why not just publish on GitHub with an appropriate license and be done with that part of it? You might receive additional feedback related to packaging from there. Thanks in advance for the contribut

[google-appengine] Increased Datastore timeouts

2015-01-20 Thread Jay
Has anyone else noticed an increase in DeadlineExceededExcption over the last couple of days due to datastore (query) timeouts? I am seeing this on one of my apps (python). It is intermittent but more than usual and noticeable. The app engine status has showed all green when I have looked. I th

[google-appengine] Search API - weird issue, investigating further before bug report

2015-03-12 Thread Jay
Using the Python 2.7 runtime. We have a search index that has some user information in it. One of these fields is a simple number field "total_points". I just observed that one of our top players was not showing up in results. They should have been the number 2 player. I manually looked at th

[google-appengine] Re: App Engine can't handle any kind of burst ...

2015-03-12 Thread Jay
Hmm ... ALL the puts fail? How many instances does the scheduler spin up? Are the entities all in their own entity group? You said that each task executes 1 second after the previous task. So you expect the put part of the test to take about 16, 17 minutes. Is that right? How deep does the task

[google-appengine] Re: Using pull queues with tagging to battle contention / batch tasks

2015-03-16 Thread Jay
Glad you have met with success. I have also been using pull queues with task tags as counters and for other aggregating behavior as well. I have also enjoyed success with this approach. For simple write heavy counters, I think I *may* prefer the good old sharded counter. There are plenty of use

[google-appengine] Mystery delay between put and fetch.

2015-06-07 Thread jay
e are any ongoing problems / issues with the datastore at the moment. Jay. -- 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-app

[google-appengine] Slow Curve Up

2015-06-07 Thread jay
Hey Guys, Anybody have any idea what this slow curve up summary in my summary graph over the last 30 days. http://i.imgur.com/rizQt4v.png There is a corresponding curve in errors. http://i.imgur.com/nCDXoS5.png I dont know why it would be a slow curve up, or why it would level off. What a

[google-appengine] Re: Slow Curve Up

2015-06-07 Thread jay
Never mind, I think I found a runaway task queue processes that was creating other task queue processes. On Monday, 8 June 2015 16:34:09 UTC+10, jay wrote: > > Hey Guys, > > Anybody have any idea what this slow curve up summary in my summary graph > over the last 30

[google-appengine] Re: Mystery delay between put and fetch.

2015-06-07 Thread jay
i think i found this issue. On Monday, 8 June 2015 16:22:22 UTC+10, jay wrote: > > Hey All, > > My app has developed some weird delays between putting to the datastore > and when that data is available to fetch. (like hours) > > I don't see any issues in the logs, and

[google-appengine] Email Quota

2015-09-23 Thread Jay
I filled out the form to increase email quota on a newer application a few days ago. Of course I have billing enabled, but the quota still reads as 100 recipients. What can I do to get that increased? Thanks for your help. -- Jay -- You received this message because you are subscribed to

[google-appengine] Custom Domains (and SSL)

2015-09-29 Thread Jay
g two different things. This makes me nervous. It also means that I can't, apparently, setup the SSL, he would have to do that. Surely, the configuration here is not tied to the user in some way. I must be missing something. Thanks for any insight or suggestions. -- Jay -- You received th

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

2015-09-29 Thread Jay
: > > Salutations Jay, > > You may need to verify the domain yourself. You should see a banner at the > top of the Customer domain page: > > The custom domain feature has been migrated here from Google Apps. To get > started, verify ownership of your domains by completing st

[google-appengine] remote_api SDK 1.9.27 won't connect to localhost

2015-10-12 Thread Jay
Has anyone run into an issue using the remote_api_shell.py (python runtime) to connect to localhost? This seems to have stopped working for me after I dropped in the newest SDK. The dev app server responds with http 401 response codes and the connection aborts from the remote shell. Sorry for t

  1   2   3   >