[appengine-java] Re: Trying to save and retrieve data in google app engine in hierarchical manner.

2011-08-03 Thread Ian Marshall
I don't think that we can help you unless we see some of your code where you do your persisting! (Am I correct to presume that you are using JDO?) On Aug 2, 2:28 pm, Sachin Salunkhe sachi...@ensarm.com wrote:  I am trying to save and retrieve data in google app engine in hierarchical manner.

[appengine-java] Starting up DevAppServer, Jetty, ContainerService manually

2011-08-03 Thread Marcel Overdijk
I'm wondering what the options are for starting up the DevAppServer manually. I read about the KickStart, DevAppServerMain etc but this not satisify my needs. I more or less looking to possibilities to use something like: org.mortbay.jetty.webapp.WebAppContext.setDescriptor(String contentWebXml)

[appengine-java] Best way to provide authenticated service

2011-08-03 Thread ale
Hi everybody, I need to create a servlet that exposes data in json format, I just want the data to be visible only from authenticated users (the client is a smartphone). The user is authenticated through userservice. (so I can't pass user and password...) Is there any way that I can do?

[appengine-java] Re: Trying to save and retrieve data in google app engine in hierarchical manner.

2011-08-03 Thread Nichole
In the first case, you have an unowned one to many and the children are not persisted with pm.makePersitent(item); If the 2nd case, when Item owns Child entities, pm.makePersistent(item) will persist the children too, but you will have exceptions it you try to persist another item with the same

[appengine-java] Re: Retrieving keys involving corresponding entities in transaction

2011-08-03 Thread Nichole
Did you reverse the error and queries? In the first, you're getting a list of keys, so those aren't entities to have caused the multiple entity exception. On Aug 1, 11:12 pm, Mauricio Aristizabal aris...@gmail.com wrote: I was just trying retrieve a List of entities and do a .size() to get a

[appengine-java] - datastore owned parent to child query capabilities

2011-08-03 Thread sam
Is there an example to query parent list based on filter criteria based on child attributed. Parent has list of children. Not one child. I have seen examples of parent having one child and basic filter on parent attributes but not using child attributes where child is a list inside parent. --

[appengine-java] Re: Moderation enabled

2011-08-03 Thread Brett Prescott
Hello Everyone, I am looking for a freelance back end site programmer to develop a site that is built in java and hosted on google app engine. This is a self funded start up that will entail 150 hours over the next 4 weeks. I am looking for an independent contractor with a history of

Re: [appengine-java] Re: Chat Time!

2011-08-03 Thread Brett Prescott
Would you or anyone be interested in freelance work? I am currently working on a start up and need a back end developer who can design in jaba, work with the Facebook API and develop the hosted product within Google App Engine. This would require approximately 150 hours of work over the next

[appengine-java] Errata on Backend Java API Overview

2011-08-03 Thread Robert Åkerblom-Andersson
Hi, I'm not sure if this is the right place to post this type of notification? But I'd like to tell that the backend java api overview has two paragraphs that are almost the same, and they are just after each other: http://code.google.com/appengine/docs/java/backends/overview.html First:

[appengine-java] Channel client support for non-js clients

2011-08-03 Thread Bruce Jackson
Is there any support for non-javascript clients to use Channels? In particular, I would like to have a Java-based client application connect to my app using Channels in the same way that I can through the use of the js API. -- You received this message because you are subscribed to the Google

Re: [appengine-java] Best way to provide authenticated service

2011-08-03 Thread Bruno Fuster
Hi ale, You can use RESTful concepts. Stateless services are easier to scale. In my case I'm sending the user/pass within all requests. You could centralize your requests and after you login store that user/pass and use later for other requests. Regards, On Wed, Aug 3, 2011 at 5:11 AM, ale

[appengine-java] Re: Persistence issue

2011-08-03 Thread Rolf Aden
Max, to isolate the problem, can you see your entities (GiniChat) in the DataStore Viewer? Are you experiencing this problem with the development server or with the application on app engine? Rolf On 1 Aug., 02:22, max maximepo...@gmail.com wrote: hello, I'm facing a problem about the

Re: [appengine-java] Best way to provide authenticated service

2011-08-03 Thread ale
Ok, I will study restFUL, but for in my case I user Gooogle Autentication Service, so I don't have user and password I'm a little confused thanks -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on

[appengine-java] Re: Connection Timeout for URL fetch??

2011-08-03 Thread Ronoaldo José de Lana Pereira
When using the java.net.URLConnection, you cant set the timeout over the 10s. You must use the Low Leve URLFetchService and URLRequest classes to be able to set higher timeouts. Hope this helps. -Ronoaldo -- You received this message because you are subscribed to the Google Groups Google

[appengine-java] GWT + GAE Deployment

2011-08-03 Thread Ice13ill
Hello, I use GWT and GAE for my application, but the deployment phase takes too long: any small modification to the GWT java code will trigger the whole compilation, GAE has a scanning phase, cloning files, uploading, precompiling, and deployment checking. For my app that takes about 15min (which

Re: [appengine-java] GWT + GAE Deployment

2011-08-03 Thread acellam guy
U need to edit your build settings in eclipse On Aug 3, 2011 8:09 PM, Ice13ill andrei.fifi...@gmail.com wrote: Hello, I use GWT and GAE for my application, but the deployment phase takes too long: any small modification to the GWT java code will trigger the whole compilation, GAE has a

Re: [appengine-java] Best way to provide authenticated service

2011-08-03 Thread Bruno Fuster
You would need to get the auth tokens and send them on each request so google can validate. Also you would need to authenticate your user on a webview and then get back to your native app. On Wed, Aug 3, 2011 at 12:13 PM, ale aleee...@gmail.com wrote: Ok, I will study restFUL, but for in

Re: [appengine-java] Channel client support for non-js clients

2011-08-03 Thread Ikai Lan (Google)
Follow this issue: http://code.google.com/p/googleappengine/issues/detail?id=4189 -- Ikai Lan Developer Programs Engineer, Google App Engine plus.ikailan.com | twitter.com/ikai On Wed, Aug 3, 2011 at 4:27 AM, Bruce Jackson bruce...@googlemail.comwrote: Is there any support for

Re: Отг: Re: [appengine-java] Data is saved in the datastore when transaction is rolled back

2011-08-03 Thread Jose Montes de Oca
Hi Miroslav when any exception occurs, the transaction is rolled back immediately. this is what the custom JDO is implementing wrong, As you could recall from the docs, not every exception means that a transaction failed. DatastoreTimeouts are definitely in this area. As the documentations

Re: [appengine-java] GWT + GAE Deployment

2011-08-03 Thread objectuser
What settings are those? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/1m7bPo0q3ysJ. To post to this group, send email to

Re: [appengine-java] GWT + GAE Deployment

2011-08-03 Thread Renan Mobile
I 'm curious too! -- Atenciosamente, Renan Franca - Presidente - Renan Mobile ltda: http://renanmobile.com - Soluções em Dispositivos Móveis (Smartphones) com integração via web. - Soluções em: Android (Smartphones); Google Web Toolkit (Web); Em

[appengine-java] Getting a grip on startup

2011-08-03 Thread John
As our app has grown, the amount of initialization work to do in order to make an instance useful has increased to the point that GAE often terminates requests that start a new instance. We had a warmup servlet, but the work started to commonly exceed the deadline. We're now looking to pare

Re: [appengine-java] GWT + GAE Deployment

2011-08-03 Thread acellam guy
From eclipse Project-build automatically Also check on your gwt properties On Aug 3, 2011 11:37 PM, Renan Mobile renanfra...@renanmobile.com wrote: I 'm curious too! -- Atenciosamente, Renan Franca - Presidente - Renan Mobile ltda: http://renanmobile.com - Soluções em

Re: [google-appengine] Much more efficient implementation of db.ListProperty(int) - created a lib

2011-08-03 Thread andreas schmid
does this also mean that there is no 5000 objects limit on the list? is the get performance good as the put? thx for sharing this. On Aug 2, 2011, at 9:04 PM, Ikai Lan (Google) wrote: Thanks Andrin! If anyone is wondering why this is, it's because the List property is serialized and

Re: [google-appengine] full text search and/or external search services

2011-08-03 Thread andreas schmid
i tried whoosh-appengine and as i mentioned before it fails after indexing a few 1000 because the way it works and it exceeds the soft process limit size. never tried it on a backend. right now i customized bill katz's simple full text search and im really surprised how simple it is implemented

[google-appengine] Re: Crazy number of Deadine Exceeded exceptions recently

2011-08-03 Thread Alexis
We are using Python, and we are not using back-ends or taskqueue. But most of our requests fetch entities of the same kind, so a kind- locking can be relevant. I'll setup timeouts on datastore operations to see if this is what is going wrong (and looks good to setup these anyway). Seems logical

Re: [google-appengine] Re: High CPU usage and how to improve performance

2011-08-03 Thread Johan Euphrosine
Sorry for the late followup, I just updated your issue. FYI, we believe that the problems experienced by most of the Apps on this thread were due to a temporary datastore latency, as you can see there:

[google-appengine] Re: Connect from GAE to external PostgreSQL DB?

2011-08-03 Thread wouterdeg
Thanks Pascal / Ikai for reaching out! Unfortunately, I do not have any access to this Postgres DB, except a logon and the ability to perform select queries (i.e. data retrieval only, no create/update/delete). Basically, I would like to get the data out of this DB by executing

Re: [google-appengine] Much more efficient implementation of db.ListProperty(int) - created a lib

2011-08-03 Thread andreas schmid
cool! ill def use it! thx On Aug 3, 2011, at 10:15 AM, MiuMeet Support wrote: You can fit up to 131'072 elements in there, afterwards you hit the 1mb entity limit (entity overhead aside, but 100'000 are def possible). Put and Get performance are really fantastic, 10ms each, see the blog

[google-appengine] Re: Crazy number of Deadine Exceeded exceptions recently

2011-08-03 Thread Alexis
Some more details while searching the logs: The latest burst (we have about one every 1-2 hours) shows this: We had about 90 instances up. We got DeadlineExceeded error during two minutes. During the first 30seconds, 50 successive error requests have no pending_ms. Then during the next 1m30 they

[google-appengine] Can't deploy app. Stops on cloning

2011-08-03 Thread Martino A. Sabia
Hi there, this morning after two deployments to my appengine app i can't deploy it anymore. When i try to deploy the app i get this error message: ... Cloning 2039 application files. Cloned 100 files. Cloned 200 files. Cloned 300 files. Cloned 400 files. Cloned 500 files. Cloned 600 files.

[google-appengine] Re: Data Center (CDN) Locations

2011-08-03 Thread Patrick Poon
Ikai, It sure would be great if Google would consider adding regional data centers on the roadmap. I live in Boston, but travel to Japan a few times a year. Most recently, I stayed in Yokohama for the month of June, actively developing and testing my app the entire month. There was a

[google-appengine] A server error occurred. Please contact the administrator.

2011-08-03 Thread Federico Elles
Getting the message A server error occurred. Please contact the administrator. for all write operations. Status is green: http://code.google.com/status/appengine App: 3x3links Thanks. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

[google-appengine] Re: Can't deploy app. Stops on cloning

2011-08-03 Thread Harald Schilly
I have the same problem, Python flavored appengine. It still worked at 13:00 UTC, and stopped working right after that time and persists until now. H -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web

[google-appengine] Re: Data Center (CDN) Locations

2011-08-03 Thread Ian Wilson
That is interesting, I will also be testing and developing in Yokohama and Tokyo this month. I am currently testing from europe but will see how much of a difference there is from Japan. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

[google-appengine] Re: Data Center (CDN) Locations

2011-08-03 Thread Gdovicak
That blows away my thought of app engine requests being served by people running the sdk. On Aug 2, 3:11 pm, Brandon Wirtz drak...@digerat.com wrote: After doing some research it turns out that the reason GAE is so fast is that it is really a bot net running on every machine with Chrome

[google-appengine] 407 Proxy Authentication Required for ISA

2011-08-03 Thread vineeth ml
We have created a webservice using PROTORPC and we get json response in different methods. But when trying to access this webservice from other domains we get the 407 Proxy Authentication Required for ISA server error. Can we add domains that are allowed to access this service.Is there any

[google-appengine] Error 500s on deploy

2011-08-03 Thread James Tindall
For the past 2 days I've been entirely unable to deploy to any of my google app engine instances. It was bad like this at the beginning of the year but has been much better recently. Has anyone else been experiencing similar issues? I noticed the write latency peaking on the app engine

[google-appengine] Cannot deploy app, cannot modify any settings

2011-08-03 Thread Pambo Paschalides
Today, whenever I try to deploy my app, I get the following: *...* *Closing update: new version is ready to start serving.* *Rolling back the update.* *Error 503: --- begin server output ---* * * *Application Busy (503)* *Multiple clients are trying to modify the same application.* *--- end server

[google-appengine] Re: Problems Deploying App - 500 Internal server Error

2011-08-03 Thread Matt Burns
I've been getting this same problem consistently for the past 15 minutes or so. Creating staging directory Scanning for jsp files. Compiling jsp files. Scanning files on local disk. Scanned 250 files. Initiating update. Cloning 55 static files. Cloning 246 application files. Cloned 100 files.

[google-appengine] Re: Error 500s on deploy

2011-08-03 Thread Harald Schilly
I can't deploy for half an hour now. Wow, I hope this will be fixed soon! H -- 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/-/Fa1_q9ntsDUJ. To post

[google-appengine] Re: Error 500s on deploy

2011-08-03 Thread Francois Masurel
Same here. -- 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/-/SaqNaquYGFcJ. To post to this group, send email to google-appengine@googlegroups.com. To

[google-appengine] Re: Can't deploy app. Stops on cloning

2011-08-03 Thread Francois Masurel
Deploying a new version seems to work. -- 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/-/NHoSoeTp118J. To post to this group, send email to

[google-appengine] Re: full text search and/or external search services

2011-08-03 Thread Jon Romero Vlachogiannis
We are using indextank.com for our service and it works perfectly. On Aug 3, 10:32 am, andreas schmid a.schmi...@gmail.com wrote: i tried whoosh-appengine and as i mentioned before it fails after indexing a few 1000 because the way it works and it exceeds the soft process limit size. never

[google-appengine] Re: Can't deploy app. Stops on cloning

2011-08-03 Thread Harald Schilly
uhm no, deploying a new version doesn't work for me. it takes a long time to process and i guess there is an internal timeout. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

[google-appengine] Re: JDO schema change nightmare, app going live

2011-08-03 Thread tempy
+1 to getting away from JDO. I know I'm not helping you specifically so sorry about that, but GAE development for me was one struggle after another until I tossed JDO. GAE and JDO are NOT a good fit. On Aug 3, 12:18 am, Pascal Voitot Dev pascal.voitot@gmail.com wrote: You can also give a try

[google-appengine] App Engine Update Downtime

2011-08-03 Thread LSH
Starting update of app: *, version: no-underscore Scanning files on local disk. Scanned 500 files. Could not guess mimetype for static/favicon.ico. Using application/ octet-stream. Cloning 207 static files. Cloned 100 files. Cloned 200 files. Cloning 377 application files. Cloned

Re: [google-appengine] Re: Can't deploy app. Stops on cloning

2011-08-03 Thread Johan Euphrosine
This issue is tracked there: http://code.google.com/p/googleappengine/issues/detail?id=5474 - If your app is using M/S this should now be fixed. - If your app is using HDR please open a new production issue with your application id. Thanks in advance. On Wed, Aug 3, 2011 at 3:56 PM, Harald

Re: [google-appengine] Re: Error 500s on deploy

2011-08-03 Thread Johan Euphrosine
This issue is tracked there: http://code.google.com/p/googleappengine/issues/detail?id=5474 - If your app is using M/S this should now be fixed. - If your app is using HDR please open a new production issue with your application id. Thanks in advance. On Wed, Aug 3, 2011 at 3:40 PM, Francois

Re: [google-appengine] Cannot deploy app, cannot modify any settings

2011-08-03 Thread Johan Euphrosine
This issue is tracked there: http://code.google.com/p/googleappengine/issues/detail?id=5474 If it is still not working for you can you add a comment with your appid ? Thanks in advance. On Wed, Aug 3, 2011 at 1:34 PM, Pambo Paschalides already.l...@gmail.com wrote: Today, whenever I try to

Re: [google-appengine] Re: Error 500s on deploy

2011-08-03 Thread LSH
Sorry. No Replication Datastore but still my app si not updatable -- 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/-/DHQ96IKrCw0J. To post to this

[google-appengine] Re: Problems Deploying App - 500 Internal server Error

2011-08-03 Thread sebastián serrano
me too! Sebastian www.devsar.com -- 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/-/Fr9MotdBMf8J. To post to this group, send email to

R: Re: [google-appengine] Re: Can't deploy app. Stops on cloning

2011-08-03 Thread Martino A. Sabia
Thank you for reply and details, now my app is upgradable again. Martino -- 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/-/FFpV9qwvXjwJ. To post to

[google-appengine] Re: Error 500s on deploy

2011-08-03 Thread Santiago López de Haro
+1 -- 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...@googlegroups.com. For more options, visit

[google-appengine] Datastore outage?

2011-08-03 Thread Hugo
I assume somebody is on top of it, but just in case: I have been getting datastore write timeouts for approximately 1h30 now. The status dashboard does not show any issue with the datastore. -- You received this message because you are subscribed to the Google Groups Google App Engine group.

Re: [google-appengine] Re: Problems Deploying App - 500 Internal server Error

2011-08-03 Thread Johan Euphrosine
This issue is tracked there: http://code.google.com/p/googleappengine/issues/detail?id=5474 If you still have this issue, please comment with your application id. On Wed, Aug 3, 2011 at 4:40 PM, sebastián serrano sebastian.serr...@gmail.com wrote: me too! Sebastian www.devsar.com -- You

Re: [google-appengine] App Engine Update Downtime

2011-08-03 Thread Johan Euphrosine
This issue is tracked there: http://code.google.com/p/googleappengine/issues/detail?id=5474 If you still have this issue, please comment with your application id. Thanks in advance. On Wed, Aug 3, 2011 at 4:00 PM, LSH sant...@gmail.com wrote: Starting update of app: *, version:

Re: [google-appengine] Re: Error 500s on deploy

2011-08-03 Thread Johan Euphrosine
Please comment on the issue with your applicaiton id if you are still unable to deploy: http://code.google.com/p/googleappengine/issues/detail?id=5474 Thanks in advance. On Wed, Aug 3, 2011 at 4:30 PM, Santiago López de Haro santiago.lo...@mytaksee.com wrote: +1 -- You received this message

Re: [google-appengine] A server error occurred. Please contact the administrator.

2011-08-03 Thread Johan Euphrosine
Hi Federico, Can you fill a production issue ? http://code.google.com/p/googleappengine/issues/entry Thanks in advance. On Wed, Aug 3, 2011 at 1:53 PM, Federico Elles flas...@googlemail.com wrote: Getting the message A server error occurred.  Please contact the administrator. for all write

Re: [google-appengine] full text search and/or external search services

2011-08-03 Thread Robert Kluin
On Wed, Aug 3, 2011 at 03:32, andreas schmid a.schmi...@gmail.com wrote: i tried whoosh-appengine and as i mentioned before it fails after indexing a few 1000 because the way it works and it exceeds the soft process limit size. Sorry, I was suggesting to *not* use whoosh-appengine -- rather

Re: [google-appengine] Datastore outage?

2011-08-03 Thread Johan Euphrosine
Hi Hugo, There was a storage issue in one of our datacenter that affected M/S application. This should now be fixed. This was being tracked here: http://code.google.com/p/googleappengine/issues/detail?id=5476 If you still have this problem, feel free to open a new production issue:

[google-appengine] The request to API call datastore_v3.Put() was too large.

2011-08-03 Thread Will
Hi all, Some of my tasks suddenly started to report this error: error - class 'google.appengine.runtime.apiproxy_errors.RequestTooLargeError'. The request to API call datastore_v3.Put() was too large. When I checked, the payloads of the tasks are usually under 200 bytes. Anything I should

[google-appengine] Re: which custom HTTP header names allowed?

2011-08-03 Thread Carter
Any info on GAE-acceptable names for custom HTTP headers? We can use User-Agent as workaround, but we'd like to know our options. On Jul 27, 3:58 pm, Carter jcmas...@gmail.com wrote: We have a proxy that needs to send the client's IP address to GAE. We tried setting acustomHTTPheader of

[google-appengine] Verify ownership web master central problem with authentication google account redirect

2011-08-03 Thread Alexander Herrera
I'm trying to verify my site with a domain in appspot.com but i use the authentication whit google account when the web master central try to verify appears an error We weren't able to verify your site: cuz . Your verification file redirects to a disallowed location , the redirect goes to

[google-appengine] Re: Crazy number of Deadine Exceeded exceptions recently

2011-08-03 Thread Olivier
just an update on this matter (I'm working with Alexis): - the application we are talking about is fp-dreamland. - it's not a minor issue for us as it impact directly our users. - we have been observing that for almost two weeks now. - it's not a small application either, we are talking about more

[google-appengine] Re: Crazy number of Deadine Exceeded exceptions recently

2011-08-03 Thread Ronoaldo José de Lana Pereira
I can confirm this problem too, specially when a new instance is spinning up. But the erros are sporadically happenning. Some instances starts in 3-6 seconds, others throws DeadLine/HardDeadLine exceptions after lots of time ... I opened a production issue, sine no changes in the app code

[google-appengine] Any suggestions for migrating an application from Google Apps Script to Google App Engine?

2011-08-03 Thread Joshua Mulloy
Hello, I have been creating an application in Google Apps Script but have run into a wall with Session.getUser() disabled for us Education Edition users. I would still prefer not to serve the application from our own servers, but that is a known system and I am running out of time to develop

[google-appengine] Re: The request to API call datastore_v3.Put() was too large.

2011-08-03 Thread Will
It's on MS datastore. The program hasn't been changed. Seems started happening several hours ago. On Wed, Aug 3, 2011 at 8:44 AM, Will vocalster@gmail.com wrote: Hi all, Some of my tasks suddenly started to report this error:  error - class

Re: [google-appengine] Persisting Lists

2011-08-03 Thread Bruno Sandivilli
So, if an user X adds and User Y, the user Y will become an ancestor of X ? And if the user Y adds the user W too, so user X will have two ancestors(???) ? Any code snippets will be greatful. Thanks again, for the help guys. 2011/8/2 MiuMeet Support r...@miumeet.com By the way, have a look at:

[google-appengine] Re: Federated Login redirecting to Google OpenID and not /_ah/login_required on Java GAE

2011-08-03 Thread Vishal
Hi Robert, Yes I did follow that example. I didn't realize there's a separate Java group. I'll try asking there. Thanks! Vishal On Aug 2, 9:58 pm, Robert Kluin robert.kl...@gmail.com wrote: Hi Vishal,   Did you go through Wesley's example doc:    

Re: [google-appengine] full text search and/or external search services

2011-08-03 Thread andreas schmid
i got that you weren't suggesting that :) On Aug 3, 2011, at 5:19 PM, Robert Kluin wrote: On Wed, Aug 3, 2011 at 03:32, andreas schmid a.schmi...@gmail.com wrote: i tried whoosh-appengine and as i mentioned before it fails after indexing a few 1000 because the way it works and it exceeds the

Re: [google-appengine] Much more efficient implementation of db.ListProperty(int) - created a lib

2011-08-03 Thread andreas schmid
is there a way to use this ArrayProperty to store a list of strings? On Aug 3, 2011, at 10:15 AM, MiuMeet Support wrote: You can fit up to 131'072 elements in there, afterwards you hit the 1mb entity limit (entity overhead aside, but 100'000 are def possible). Put and Get performance are

Re: [google-appengine] Re: Data Center (CDN) Locations

2011-08-03 Thread Ikai Lan (Google)
Patrick, did you follow the page speed advice? The majority of what makes web sites appear slow is the loading of assets and JavaScript execution. Steve Souders (the father of web page speed) has been quoted as saying this can account for up to 90% of web site slowness. Obviously, the first time

Re: [google-appengine] full text search and/or external search services

2011-08-03 Thread Ikai Lan (Google)
Sorry, we're working on getting this out as quickly as we can. We're not close to trusted tester/beta period yet. In the past, I've done App Engine talking HTTP over the public interwebs to an instance running Solr. The latency was acceptable for what I was doing: 20ms to either Slicehost or

[google-appengine] Re: Crazy number of Deadine Exceeded exceptions recently

2011-08-03 Thread Ralph Hesse
We have exactly the same issues. Since a few weeks we have downtimes of almost 30 minutes. Or the request latency increases. Today there was again a spike in errors (duration of 2 hours), during that time our application was not usable. This happens to often the last weeks. We are using Java,

[google-appengine] Re: Crazy number of Deadine Exceeded exceptions recently

2011-08-03 Thread blackpawn
I'm also experiencing this problem. :( -- 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/-/1Xjp0jsnprYJ. To post to this group, send email to

[google-appengine] Re: Deadline exceeded during warm-up

2011-08-03 Thread Karl Rosaen
Is happening on our app a lot too. Seeming more and more like the Master/Slave datastore is not a reliable place to be... -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

Re: [google-appengine] full text search and/or external search services

2011-08-03 Thread blackpawn
I'm using http://www.elasticsearch.org/ hosted on Amazon EC2. works great! -- 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/-/Jdslewu0TL8J. To post to

[google-appengine] Re: Crazy number of Deadine Exceeded exceptions recently

2011-08-03 Thread Will Reiher
To further my original comment... While it seems to be back to an almost normal state when it was really bad I was getting DeadlineExceeded errors on Warm ups and other otherwise trivial requests. Most of my issues were not related to any offline task work - in fact for the most part tasks

[google-appengine] Automated way to switch from M/S to HR?

2011-08-03 Thread Will Reiher
Since I have been having a number of issues with Deadlines on the M/S I would like to move to HR but creating a new app and migrating data is really not an option. Is the app engine team working on a click of a button type upgrade that doesn't require duplication and/or migrating to a new

[google-appengine] Re: Stackoverflow

2011-08-03 Thread Vivek Puri
Most of the ideas and answers(objective and discussion categorization) here are great. To give an example, yesterday i needed to know if regex is supported in objective c. First search on google lead to this -

Re: [google-appengine] Automated way to switch from M/S to HR?

2011-08-03 Thread Ikai Lan (Google)
We're working on a migration tool that'll be better than the one that exists now. You will be able to preserve your current application ID. Unfortunately, there will still be a copy step, so this will likely result in a read-only period for your app. -- Ikai Lan Developer Programs Engineer,

Re: [google-appengine] Automated way to switch from M/S to HR?

2011-08-03 Thread Will Reiher
Ikai, That's great news! I'm not so worried about a temporary read-only period it's the the idea of switching the application id that was scary. I've already done it once, and while it was fairly painless, it did affect our https requests point to the app-id appspot url. Thanks for the update

[google-appengine] Re: Automated way to switch from M/S to HR?

2011-08-03 Thread David
I've just about given up on the thought that AppEngine is a good service. It's good in theory, but I get about 25% errors in bursts and it's generally timeouts on the datastore. Those error bursts are frequent. Lately is been almost daily. But pretty much every upgrade they do has a couple

[google-appengine] Re: Datastore outage?

2011-08-03 Thread David
I'm still seeing this right now on my app. On Aug 3, 8:21 am, Johan Euphrosine pro...@google.com wrote: Hi Hugo, There was a storage issue in one of our datacenter that affected M/S application. This should now be fixed. This was being tracked

Re: [google-appengine] Persisting Lists

2011-08-03 Thread Ernesto Oltra
Sorry, but I don't use Java. I will give you the Python version, it's pretty straight forward. As I said before, any improvements in my design or code will be welcome =) class User(Model): # for easy of use, i will consider user_id as the key name of the entity name, email, etc

[google-appengine] How to find some to create an app. for me

2011-08-03 Thread michael manning
I am completely apps. illiterate, though I feel I have great ideas for apps. How can I find people who could create the apps. and guide me thru the business for a percentage of the income? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

[google-appengine] Great ideas

2011-08-03 Thread michael manning
I have great ideas for apps. that could generate a nice income. Looking for a person who could create these apps. as on either a partner for a % of income, straight pay for building the app. for me. I am completely app. illiterate and need someone who not only is technically savy, but knows the

[google-appengine] Getting Started

2011-08-03 Thread samueldc
Hi everybody, I trying to getting started with Google App Engine and Eclipse 3.7. After creating the project Guestbook, I'm getting the following error when trying to execute with Run Debug As Web Application: Usage: dev-appserver [options] war directory Options: --help, -h

[google-appengine] Re: Automated way to switch from M/S to HR?

2011-08-03 Thread johnP
Amen - temporary read-only is fine. The big problem is that my app makes use of a ton of keys, and in many cases I need to store the keys as strings (or store keys in pickled blobs). The real chore is to write scripts to rebuild all the keys after the migration. I'm hoping that preserving the

Re: [google-appengine] Re: The request to API call datastore_v3.Put() was too large.

2011-08-03 Thread Greg Darke
How large is your put to datastore? On 4 August 2011 02:45, Will vocalster@gmail.com wrote: It's on MS datastore. The program hasn't been changed. Seems started happening several hours ago. On Wed, Aug 3, 2011 at 8:44 AM, Will vocalster@gmail.com wrote: Hi all, Some of my tasks

Re: [google-appengine] Can't download all data with bulkloader from non-default namespace

2011-08-03 Thread Timofey Koolin
Yes, I fill it. http://code.google.com/p/googleappengine/issues/detail?id=5486 3 августа 2011 г. 15:46 пользователь Johan Euphrosine pro...@google.comнаписал: Hi Timofey, I managed to reproduce your issue: proppy@proppy:~$ ~/google_appengine/appcfg.py download_data

Re: [google-appengine] Re: Automated way to switch from M/S to HR?

2011-08-03 Thread Robert Kluin
I've not heard of the ability to allow you preserve the app id as far as the datastore is concerned, only the ability to create an alias so it acts like the same app. I wonder if an alias is what Ikai was referring too or if he meant some way to really preserve the app id. Robert On Wed,

Re: [google-appengine] Re: Automated way to switch from M/S to HR?

2011-08-03 Thread Carter Maslan
I felt your pain on MS; but after moving to HRD Tuesday, our app has not experienced a single timeout error in 24 hours. So don't give up. On Aug 3, 2011, at 2:25 PM, David s2kd...@gmail.com wrote: I've just about given up on the thought that AppEngine is a good service. It's good in

Re: [google-appengine] Persisting Lists

2011-08-03 Thread Robert Kluin
Reference properties are a completely separate idea from entity groups (ie ancestor / parent - child relationships). Reference properties simply store a key; that key can be used to fetch the other entity. They can be changed to point at a different entity as often as you like. An entity's

[google-appengine] App Engine office hours for 2011/07/03 [PDT]

2011-08-03 Thread Greg Darke (Google)
Chat log from today's App Engine office hours. All times are in AEST (UTC+10). 12:01 -!- Irssi: #appengine: Total of 115 nicks [0 ops, 0 halfops, 2 voices, 113 normal] 12:01 jwbnyc Thanks for joining, us Wesley! 12:01 Wesley_Google who? where? 12:01 robertk Wesley_Google: there - 12:01

RE: [google-appengine] How to find some to create an app. for me

2011-08-03 Thread Brandon Wirtz
I don't know anyone who works on a percentage, especially if you are just providing the idea. Even as a Product Manager in most companies you can't be app illiterate, you need to at minimum be able to read code, write product specs, and possibly create wire frames. GAE's Hello world examples are

RE: [google-appengine] Getting Started

2011-08-03 Thread Brandon Wirtz
I just debug in GAE... Deploy/update rather than Run. -Original Message- From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of samueldc Sent: Wednesday, August 03, 2011 1:04 PM To: Google App Engine Subject: [google-appengine] Getting Started

Re: [google-appengine] 407 Proxy Authentication Required for ISA

2011-08-03 Thread Robert Kluin
Are you sure this is something returned from your App Engine application and not something on your side? On Wed, Aug 3, 2011 at 03:42, vineeth ml vineeth...@gmail.com wrote: We have created a webservice using PROTORPC and we get json response in different methods. But when trying to

Re: [google-appengine] Re: which custom HTTP header names allowed?

2011-08-03 Thread Robert Kluin
Hi Carter, If it is a proxy how about using X-Forwarded-For? I tested using curl, it doesn't get filtered. Robert On Wed, Aug 3, 2011 at 12:04, Carter jcmas...@gmail.com wrote: Any info on GAE-acceptable names for custom HTTP headers? We can use User-Agent as workaround, but we'd

  1   2   >