[google-appengine] Re: entity groups

2009-08-28 Thread Tim Hoffman
On thing to remember with parent/entity groups and that is your can't change them after the fact. So if you ever want to move an entity between objects (ie parents swapping children) you would then want to use reference properties (child -> parent) or hold a list of keys in the parent of the child

[google-appengine] Re: Just use and host

2009-08-28 Thread Jean
I already did part of this but it is a directory I want to install and it is PHP/MySQL based, it is not traditional html. Is there a way to use such a script? On Aug 28, 12:03 am, "Brandon N. Wirtz" wrote: > If I understand your ask this will work. > But you would likely be happier on Google

[google-appengine] Re: How can you access App.yaml data?

2009-08-28 Thread Sylvain
I think it is not possible, app.yaml is not uploaded in the same directory than your app. Maybe you can duplicated this file app.yaml -> settings.yaml, then it will be uploaded in the same dir and you could use the yaml lib to read it. Regards On 27 août, 19:47, TC wrote: > Is it possible to

[google-appengine] Re: Help With Error: ReferenceProperty failed to be resolved

2009-08-28 Thread djidjadji
Yes you can find all of them. You know the ID of the deleted object (112052). The Key of this object is rogueKey = db.Key.from_path('Quiz',112052) or is there a parent object of a Quiz object? If so put that in the path too. Find all the faulty references result = Selector.all().filter('quiz =

[google-appengine] Re: Webworker definition & explanation

2009-08-28 Thread Tim Hoffman
Hi Actually I think you question is probably a bit vague (define webworker - do you mean http://www.whatwg.org/specs/web-workers/current-work/) for any really meaningful response. Is the link above what you meant, have you read that document, if not what that definition what do you mean. If it

[google-appengine] Re: How can I create Indexes using Entities in Google's Data Store

2009-08-28 Thread Tim Hoffman
Hi I found out earlier you can query what indexes exist, but you can't create them through the api (even though the call exists) at least in the the python sdk Have a look at this thread http://groups.google.com.au/group/google-appengine/browse_thread/thread/9c2cd22c992866e4/48230163d090815f?q=

[google-appengine] Re: How can I create Indexes using Entities in Google's Data Store

2009-08-28 Thread Rahul Kumar
Hi Tim But I am using this through java API. I have the Data & Ported it with & without index but I am getting index on all the attributes & dont know whether it will work or not on Million records to get faster result through query. On Fri, Aug 28, 2009 at 12:35 PM, Tim Hoffman wrote: > > Hi

[google-appengine] Re: How can you access App.yaml data?

2009-08-28 Thread djidjadji
app.yaml is skipped during upload. if you define your own skip_file entry, app.yaml should be uploaded and you can read it like any other file. http://code.google.com/appengine/docs/python/config/appconfig.html#Skipping_Files 2009/8/28 Sylvain : > > I think it is not possible, app.yaml is not u

[google-appengine] high variance in cpu_ms for same GET URL & data, constant api_cpu_ms

2009-08-28 Thread Jeff Enderwick
Trolling my logs, I'm coming across cases where there is extreme (~10x) variance in cpu_ms for the exact same code flow, same GET URL and same data (not even any intervening writes to the datastore). I am logging my db.* function accesses, and I have factored out memcache too. For example: 92ms,

[google-appengine] KeyError When Psyco is installed

2009-08-28 Thread j...@q42.nl
I was wondering whether the App Engine team is aware of this issue: http://code.google.com/p/googleappengine/issues/detail?id=995 I'm not sure if this is a bug in psyco or app engine... --~--~-~--~~~---~--~~ You received this message because you are subscribed to t

[google-appengine] Task queue API exception

2009-08-28 Thread nebulabug
What happens when a task is queued again because of exception ?. Will it be counted as new task or it will be counted as existing task ?. If it is counted as a new task then there is a possibility of exhausting the quota right ?. --~--~-~--~~~---~--~~ You received

[google-appengine] Re: Task queue API exception

2009-08-28 Thread Nick Johnson (Google)
Hi nebulag, Requeued tasks are deducted from your quota. The Task Queue uses an exponential backoff scheme to prevent a single error exhausting your quota. -Nick Johnson On Fri, Aug 28, 2009 at 11:38 AM, nebulabug wrote: > > What happens when a task is queued again because of exception ?. Will

[google-appengine] Timeouts have increased since maintenance on August 18th ?

2009-08-28 Thread Sylvain
Hi, Today, I've checked the log for one of my app and I've noticed than one of my handler produces a lot of timeouts since the maintenance on August 18th. Just after the message "Datastore writes are temporarily unavailable." is gone, a lot of timeouts are raised an now the number seems to be v

[google-appengine] Re: Building index stucked

2009-08-28 Thread Nick Johnson (Google)
Hi Nad, I've reset your indexes. You should now be able to vacuum and re-create them. -Nick On Wed, Aug 26, 2009 at 10:08 AM, Nad wrote: > > Hi, > > My application indexes have been "building" for over a day, even > though I have removed all data (entities). I've tried vacuuming the > indexes u

[google-appengine] Re: Request Slow Down

2009-08-28 Thread Nick Johnson (Google)
On Thu, Aug 27, 2009 at 9:12 PM, Jaap Taal wrote: > Hi Nick, > > You say: "The same Python runtime environment can be used by multiple > handlers - in which case they will share the same loaded modules." > Is this always the case? Or do you need to programmatically do this? If so, > how do you ac

[google-appengine] Re: Increasing Task Queue Quota Limit

2009-08-28 Thread Nick Johnson (Google)
Hi Brian, We'll be increasing the limit across the board in the near future. If you think you have a compelling use case for getting your limit raised early, please let me know in a private email what you need it for. -Nick Johnson On Fri, Aug 28, 2009 at 1:09 AM, Brian wrote: > > Hello, > > I

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad
Hi, Any updates? Almost 24 hours now :( and the indexes are still stuck in the building state. Please have a look. Thanks, Arun Shanker Prasad. On Aug 28, 6:42 am, Arun Shanker Prasad wrote: > Hi Jeff, > > Still no updates? My indexes are still stuck building. > > Thanks, > Arun Shanker Prasa

[google-appengine] Re: Just use and host

2009-08-28 Thread Brandon N. Wirtz
Php requires a php to java script, ad gae doesn’t support sql. -Original Message- From: google-appengine@googlegroups.com [mailto:google-appeng...@googlegroups.com] On Behalf Of Jean Sent: Friday, August 28, 2009 12:22 AM To: Google App Engine Subject: [google-appengine] Re: Just use and

[google-appengine] Re: How can I create Indexes using Entities in Google's Data Store

2009-08-28 Thread Wooble
Most individual attributes are indexed automatically unless you specify otherwise (I believe the only exceptions are the equivalent's of the python SDK's TextProperty and BlobProperty). The indexing scales fine; the only real issue with having unneeded indexes for the properties of millions of en

[google-appengine] Re: How can I create Indexes using Entities in Google's Data Store

2009-08-28 Thread Jai
Hi Rahul, If you want to turn off indexing then you can use indexed = False, on the attributes which you don't want to index explicitly, because the default value is indexed = True for any attribute type except db.Text and db.Blob, which are not indexed by default. Though having an index increas

[google-appengine] Bigger File Sizes, any timeframe?

2009-08-28 Thread Lee Olayvar
Has there been any word on when AE is getting larger file storage? I've got a few projects i'd like to put on AE, but I need the ability to host 25-50MB files. Thanks, Lee --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Grou

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad
Hi, Bump, any one to help me? Thanks, Arun Shanker Prasad. On Aug 28, 5:37 pm, Arun Shanker Prasad wrote: > Hi, > > Any updates? Almost 24 hours now :( and the indexes are still stuck in > the building state. > > Please have a look. > > Thanks, > Arun Shanker Prasad. > > On Aug 28, 6:42 am, Ar

[google-appengine] Re: Just use and host

2009-08-28 Thread Wooble
No; you can't run a PHP/Mysql script. You can get PHP to work under the java runtime, but you'd need to completely rewrite the database layer of your application to use the datastore. Doing this in PHP would almost certainly not be worth the effort. On Aug 28, 3:21 am, Jean wrote: > I already d

[google-appengine] Re: Timeouts have increased since maintenance on August 18th ?

2009-08-28 Thread Joe Bowman
For the past couple of days I've been seeing lots of datastore timeouts. The confusing thing is it seems to be application specific, as it's only one app that I'm seeing the problem, all the others appear to be running fine. On Aug 28, 6:58 am, Sylvain wrote: > Hi, > > Today, I've checked the lo

[google-appengine] Re: Just use and host

2009-08-28 Thread Jean
Would there be another solution for me to run a directory using Google App Engine with my domain names ? Use an existing script or a similar application ? Thx for you rsupport On Aug 28, 3:48 pm, Wooble wrote: > No; you can't run a PHP/Mysql script. > > You can get PHP to work under the java

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Jeff S (Google)
It looks like your indexes are all in the deleting state, I'll keep you posted. On Fri, Aug 28, 2009 at 7:57 AM, Arun Shanker Prasad < arunshankerpra...@gmail.com> wrote: > > Hi, > > Bump, any one to help me? > > Thanks, > Arun Shanker Prasad. > > On Aug 28, 5:37 pm, Arun Shanker Prasad > wrote:

[google-appengine] JPA, more then one primary key

2009-08-28 Thread ralph.kretz...@googlemail.com
Hello, I have an Article entity and an ArticleCode entity. Aritcle Code has Article as forgeing key but is has also a second and third primary key. The example below isnt possible because Article isnt serializable. Any ideas? Thanks, Ralph @Entity @Table(name="article") public class Article

[google-appengine] upload application

2009-08-28 Thread Steven Etzkorn
I have 6 applications on google appengine. So I have install applications before. I am attempting to upload my third application to stetzkorn3.appspot.com. I was able to login to the console and create the application name: stetzkorn3. When I go to upload my new application I am told I don't have

[google-appengine] index building stuck

2009-08-28 Thread martin.kukan
Hi, I'm using java and low level api for the datastore and after uploading incorrect index definition (I specified a column in index which doesn't exist) the index is stuck on building. I've updated the index definition with no indexes also added the missing column but nothing helps. My app id is

[google-appengine] datastore question: Tags as expando dynamic properties or use a list?

2009-08-28 Thread Doug
Hi, I'm very new to GAE and was curous if there is a performance penalty with regards to queries and exploding indices, etc. etc... if one implements tags (a list of category names for a record if you will) as dynamic properties vs. just list. As a dynamic property I was thinking a possibility

[google-appengine] Re: Task queue API exception

2009-08-28 Thread Sai
Thanks. On Aug 28, 7:17 am, "Nick Johnson (Google)" wrote: > Hi nebulag, > Requeued tasks are deducted from your quota. The Task Queue uses an > exponential backoff scheme to prevent a single error exhausting your quota. > > -Nick Johnson > > On Fri, Aug 28, 2009 at 11:38 AM, nebulabug wrote: >

[google-appengine] Re: index building stuck

2009-08-28 Thread Jeff S (Google)
Hi all, There is currently a slowdown in the processing of index changes. We're aware of the issue and will keep you updated. Apologies for the inconvenience, Jeff On Aug 28, 4:57 am, "martin.kukan" wrote: > Hi, > > I'm using java and low level api for the datastore and after uploading > inco

[google-appengine] Re: Google Checkout "Rate Your Experience" emails

2009-08-28 Thread Nick Johnson (Google)
Hi Ben, Thanks for the heads-up. We recognize it can be pretty annoying, and we're working on it. -Nick On Fri, Aug 28, 2009 at 6:53 AM, Ben Nevile wrote: > > Hi, > > Is there any way to get Google Checkout to stop sending me "Rate your > shopping experience" emails? I've answered them, but t

[google-appengine] index building

2009-08-28 Thread fedex1
Hi, I have an application id "wsxnyc" that is in index "building" and "deleting" mode. Can you tell me how to reset it or can you reset it. I apologize but vacuum also returns an error. Thanks, Ralph --~--~-~--~~~---~--~~ You received this message because you ar

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Jeff S (Google)
The indexes have now been deleted for this app. Thank you, Jeff On Fri, Aug 28, 2009 at 9:56 AM, Jeff S (Google) wrote: > It looks like your indexes are all in the deleting state, I'll keep you > posted. > > > On Fri, Aug 28, 2009 at 7:57 AM, Arun Shanker Prasad < > arunshankerpra...@gmail.com

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad
Hi Jeff, Thank You for removing the indexes. I tried to upload the old indexes one at a time, but I get the following error after I run the appcfg.py Uploading index definitions. Error 500: --- begin server output --- Server Error (500) A server error has occurred. --- end server output --- L

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Jeff S (Google)
Index creation and deletion is slow at the moment, so uploading new indexes may not currently be possible. We've posted a notice on the status site, apologies: http://code.google.com/status/appengine -Jeff On Aug 28, 12:14 pm, Arun Shanker Prasad wrote: > Hi Jeff, > > Thank You for removing th

[google-appengine] Help: indexes stuck building

2009-08-28 Thread luciferous
Tried to vacuum, but error message is that the index doesn't exist. Tried uploading an empty project, and then re-uploading the project, but I get: Uploading index definitions. Error 500: --- begin server output --- Server Error (500) A server error has occurred. --- end server output --- Your a

[google-appengine] setting a favicon in java app using eclipse

2009-08-28 Thread Phone Guy
Of all the things to get hung up on, this one should not be it... I cannot for the life of me make my favicon.ico show up in my application. I'm writing a java app using the eclipse plug to deploy. The instructions for this in python are pretty clear. For java, I keep reading that I just need

[google-appengine] Re: Timeouts have increased since maintenance on August 18th ?

2009-08-28 Thread lookon
I've seen a lot of timeouts today On Aug 28, 11:10 pm, Joe Bowman wrote: > For the past couple of days I've been seeing lots of datastore > timeouts. The confusing thing is it seems to be application specific, > as it's only one app that I'm seeing the problem, all the others > appear to be runn

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad
Hi, Thank You Jeff for the quick response. I will wait for the status to return to normal before I try to upload again. Thanks a bunch to You and Nick for the help :D :D Thanks, Arun Shanker Prasad. On Aug 29, 1:04 am, "Jeff S (Google)" wrote: > Index creation and deletion is slow at the mome

[google-appengine] Re: Just use and host

2009-08-28 Thread Wooble
I'm not sure what you mean by "directory". Any meaning I can think of for the term seems like it would be trivial to code. On Aug 28, 10:23 am, Jean wrote: > Would there be another solution for me to run a directory using Google > App Engine with my domain names ? > > Use an existing script  or

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad
Hi, Thank you Jeff. Thanks to Nick for moving those indexes to the ERROR state, so I could delete them. I had deleted them almost 3 hours ago, they are still shown as deleting in the dashboard, I also got a 500 error while running the appcfg.py initially to vacuum the indexes. Could this have ca

[google-appengine] wildcard for custom domains

2009-08-28 Thread Neves
Now that appengine supports wildcards on myapp.appspot.com: http://googleappengine.blogspot.com/2009/08/new-features-in-124.html Will it be possible to support wildcards within my own domain? --~--~-~--~~~---~--~~ You received this message because you are subscrib

[google-appengine] Re: Request Slow Down

2009-08-28 Thread Arjun Vasan
Hey Nick, Thanks for the prompt reply. Thats what I thought, but if you could explain why removing a certain number of URL handlers in main.py somehow did the trick, I would much appreciate it. I can intentionally reproduce the effect, if you like. I wasn't getting a new instance.. well at least

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Jeff S (Google)
Index creation and deletion should be proceeding normally now. Cheers, Jeff On Aug 28, 1:16 pm, Arun Shanker Prasad wrote: > Hi, > > Thank You Jeff for the quick response. > I will wait for the status to return to normal before I try to upload > again. > > Thanks a bunch to You and Nick for th

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad
Hi, Thanks Jeff, I think they are all removed now.. Great now to start uploading all the old ones back one by one.. Thanks, Arun Shanker Prasad. On Aug 28, 11:31 pm, Arun Shanker Prasad wrote: > Hi, > > Thank you Jeff. > Thanks to Nick for moving those indexes to the ERROR state, so I could >

[google-appengine] Re: Webworker definition & explanation

2009-08-28 Thread Tim Hoffman
Sorry about the shocking grammar and spelling in that response, I was in a hurry to get my wife to the doctor and didn't have time to proof read it. Hopefully it made some sort of sense despite the atrocious english displayed ;-) T On Aug 28, 4:36 pm, Tim Hoffman wrote: > Hi > > Actually I th

[google-appengine] Re: index building stuck

2009-08-28 Thread Jeff S (Google)
Hello again, This issue should now be resolved and creating new indexes or delete existing indexes should be proceeding at the normal pace. Thank you, Jeff On Aug 28, 10:47 am, "Jeff S (Google)" wrote: > Hi all, > > There is currently a slowdown in the processing of index changes. > We're awa

[google-appengine] problem with redirect

2009-08-28 Thread lookon
I have a function that use webapp.RequestHandler as parameter. Once I can do handler.redirect("http://aaa.com";). But since yesterday, the handle.redirect does not work. Anyone can help me? thanks --~--~-~--~~~---~--~~ You received this message because you are subsc