[appengine-java] Re: The index for this query is not ready to serve

2010-06-07 Thread Manjoor
The problem has be solved. I need to wait for 4 hours. Here is the story There were about 300 test records in the table. We deleted those records and deployed new version. In console pannle it was displaying total 2 indexes. 1 was completed instantly but 1 was in queue. I was getting error

[appengine-java] Re: The index for this query is not ready to serve

2010-06-07 Thread Manjoor
The problem has been solved. I need to wait for 4 hours. Here is the story There were about 300 test records in the table. We deleted those records and deployed new version. In console pannle it was displaying total 2 indexes. 1 was completed instantly but 1 was in queue. I was getting

[appengine-java] application search!

2010-06-07 Thread Muhammad Ijaz Khan
Hi, Is the applications during development is searchable by other users? like, can someone come game1.appspot.com although it isnt advertised yet? Please elighten. regards, Ijaz -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

[appengine-java] How to stop development server from command line?

2010-06-07 Thread shekhar
Hi, I am not able to stop development server. I am starting it from command prompt using ANT script. I have created ANT script (build.xml) according to tutorial given by Google itself. My development App server starts successfully and I am able to test my app also. But when I press

[appengine-java] Can't use the google's Key class

2010-06-07 Thread Konstantin Solomatov
I have a simple data class with the google's Key as a primary key. When I try to get an object by Key from a persistent manager, I get an exception. However if I wrap the key in ObjectIdentity(ClassName.class, key), everything works fine. Is it intended to be so or did I misconfigure something?

[appengine-java] Re: GAE and Google Apps

2010-06-07 Thread i...@ontologycentral.com
Hi, On Jun 7, 1:51 am, i...@ontologycentral.com i...@ontologycentral.com wrote: However, I get a: This webpage is not available. The webpage athttps://appengine.google.com/_ah/login?continue=https://appengine.goo.. when I try to accept the admin invite. ok, hitting reload a couple

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-07 Thread Jake
Hey, The logs show what is being GET for any message. When loading some pages, I noticed that, beyond the initial delay of the page, I saw an 8s delay on one of the javascript files that was referenced in the code. When I checked the GAE logs, I saw a startup request for the initial GET for the

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-07 Thread Jake
Hey, Here's a concrete example. One page load, 3 loading requests: one for the library page, another for a CSS file for that page, and a third for an image on that page. The end result, after a lot of optimization, is 24 seconds from initial page arrival to full display. And, it's likely that

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-07 Thread Thomas
Hi Jake: By default, all css/image files should be treated as static files. It seems that your css/image files were not served as static files. I think you should check your static files setting. Please refer to

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-07 Thread Tin
Hi Jack: I suggest that maybe you can write a ServletContextListener to monitor the web instance reloading issue, for our testing we just put a info logging in the contextInitialized(..) method: public void contextInitialized(ServletContextEvent evt) { log.info(Web context inited.); } And

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-07 Thread Jake
Hi all, @Thomas: I will look into that, thank you. The way we generate our pages in this framework, however, involves some interesting dynamic generation of image URLs that are mounted within the application itself. It ends up being a bit more complicated than just displaying one string or

Re: [appengine-java] Re: JSONMarshaller on GAE

2010-06-07 Thread Marc Guillemot
Hi François, does the problem occur in unit tests too? Do you custom types? JSONMarshaller has some problems with classloaders and custom types: http://code.google.com/p/jsonmarshaller/issues/detail?id=25 Cheers, Marc. -- Blog: http://mguillem.wordpress.com François wrote: This is happening

[appengine-java] Custom settings aplication

2010-06-07 Thread Maxi Melvin
Hi, I'm starting to develop an application in AppEngine with Java. I have a question that has not been resolved by searching the Web. My application needs a table or file to save settings as general for the entire application. Try creating a class Administration which was persistent, but could

[appengine-java] Class guestbook.Greeting does not seem to have been enhanced

2010-06-07 Thread naveen shan
Hello all, I am working on persistence in Google app engine. When I tried doing the same with the simple guestbook app provided I land into this error.. --- Class guestbook.Greeting does not seem to have been enhanced You may want to rerun the enhancer and check for errors in the

[appengine-java] java.lang.NoClassDefFoundError: org/apache/tools/ant/ExitException

2010-06-07 Thread Ray Valley
java.lang.NoClassDefFoundError: org/apache/tools/ant/ExitException can anyone tell why this happen? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com. To

[appengine-java] Sending XMPP message with HTML anchor tag

2010-06-07 Thread Greg
Hello. I can send XMPP messages to the Google Talk client using the API provided with GAE. However, I'd like to send a link that people can click on, as well as do some simple formatting. These links contain a lot of request parameters, so they are long and messy- looking. I'd prefer to hide

[appengine-java] Custom settings aplication

2010-06-07 Thread Maxi Fernández
Hi, I'm starting to develop an application in AppEngine with Java. I have a question that has not been resolved by searching the Web. My application needs a table or file to save settings as general for the entire application. Try creating a class Administration which was persistent, but could

[appengine-java] Frontend Auth Redirect not working.

2010-06-07 Thread NPickle
I started with the the basic GWT/GAE project in Eclipse. This ends up with just the basic enter your name and then a dialog pop up. Now if I try and put in the front end authentication in the deployment xml file, the performance is this. The page will load but none of the dynamic code will be

Re: [appengine-java] Need help on java.security.AccessControlException: access denied

2010-06-07 Thread Ikai L (Google)
Can you try placing the file into WEB-INF and setting filename to WEB-INF/ssma_std.txt? On Sat, Jun 5, 2010 at 4:42 PM, Nick lgfr...@gmail.com wrote: Hi, I'm new to GoogleAppEngine, please help me on resolving following erro... 1. I would like to read a ssma_stud.txt file as an input

[appengine-java] App Engine datastore does not support operator max.

2010-06-07 Thread Iván Navarro
Hi, I'm trying to get a max value using jdoql. My query is: Query query = pm.newQuery(select max(timeStamp) from + DBPrettyThing.class.getName()); But I'm getting this trace insted: Service method 'public abstract com.polillaSoft.prettyThingsTracker.client.PrettyThing

[appengine-java] Datastore design

2010-06-07 Thread Marcel Overdijk
I've the following scenario. a) Registered users can post recipes (we anticipate on 5000 different recipes) b) Each recipe is part of 1 or more categories (we anticipate 100 different categories) c) Registered users can vote for recipes d) Registered users must select the country they live in 1)

[appengine-java] Re: Datastore design

2010-06-07 Thread Marcel Overdijk
Thanks, do you know if there is a demo site using thoughtsite? On Jun 7, 9:06 pm, Ikai L (Google) ika...@google.com wrote: Thoughtsite does something similar. Have you taken a look yet? http://google-opensource.blogspot.com/2010/05/open-sourcing-thoughtsi... On Mon, Jun 7, 2010 at 11:48 AM,

[appengine-java] Re: many to many relation with additional attribut

2010-06-07 Thread Anna
Thank you very much Ian! I've implemented your solution but now I struggle with adding a Link to the database: A record of entity 1 and one of entity 2 are stored in the database. How can I get them out of the database to put their keys into a new link? I don't know the keys of both entities

Re: [appengine-java] Need help on java.security.AccessControlException: access denied

2010-06-07 Thread 时强
I encountered the same problem. I have a configuration file and It contained same information for my app. If the file is located in /war/, everything is OK. However, some other paths , such as /war/config/, are not available for reading. Is there anybody who can explain this issue for me ? I will

[appengine-java] Datastore stats

2010-06-07 Thread keyurva
I am querying the __Stat_Kind__ kind. It does not return me entities about kinds that currently exist in the datastore but it includes entities about kinds that I had deleted more than a week ago. I am not so much concerned about it returning me the non-existent kinds - the doc does mention this

[appengine-java] Re: Class guestbook.Greeting does not seem to have been enhanced

2010-06-07 Thread Greg
Annotation problems will definitely do that. Other times, I've found that I need to do a Project - Clean from the Eclipse menu. I think that in some cases, the enhancement process just doesn't work quite right, and clean rebuilds it and the problem is solved. (This seemed to happen more often

[appengine-java] Version not ready error (but it's ready)

2010-06-07 Thread Tristan
I keep on getting this during deployment: Deploying new version. Will check again in 1 seconds Will check again in 2 seconds Will check again in 4 seconds Will check again in 8 seconds Will check again in 16 seconds Will check again in 32 seconds Will check again in 64 seconds Will check again in

[appengine-java] SDK 1.3.4 Development Mode showing import error blob/user

2010-06-07 Thread Perry Dykes
Use Eclipse (Version: 3.5.2.R35x_v20100210-0800-9hEiFzmFst- TiEn9hNYgDWg1XN8ulH_JvCNGB), develop within it, have 1.3.4 app engine sdk, using JPA. I have recently upgraded to app engine 1.3.4. Since upgrade, the Validating newly complied units in Development Mode window in Eclipse gives me new

[appengine-java] Re: Uploading to blobstore gives OutOfMemoryError

2010-06-07 Thread Jean Hsu
Anyone NOT getting an outOfMemory error? I tried to deploy to appengine, and don't get an outofmemory error, but instead eventually get a methodNotFound. Anyone have a small working example? Jean On Jun 5, 5:22 pm, Luai kassar luai.kas...@gmail.com wrote: I am getting OutOfMemoryError too for

[appengine-java] Re: Uploading to blobstore gives OutOfMemoryError

2010-06-07 Thread Jean Hsu
Here's what I get from live http headers when I deploy and try to upload. It tries to do a get on the uploadUrl, for test.nocache.js, and also later for css. I get a 405 Method Not Allowed for these. Any ideas why it's trying to do a get?? POST /_ah/upload/

[appengine-java] On cron job - Request was aborted after waiting too long to attempt to service your request

2010-06-07 Thread Didier Durand
Hi, On a cron job scheduled each minute, I get the following message 20-30 times a day on a very regular basis: Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when the App Engine serving cluster is under unexpectedly high or uneven

[appengine-java] Re: SDK 1.3.4 Development Mode showing import error blob/user

2010-06-07 Thread Perry Dykes
Well, for those like me who hit this, just a few things I have learned: a) Writing an application with GWT and App Engine support is trickier than app engine by itself with some html front end (which I had working). You have to really keep track of the new folders created. b) I was hoping I could

[appengine-java] indexes and Eclipse plugin

2010-06-07 Thread Philip Tucker
I'm getting some very confusing behavior regarding indexes in my app. Maybe someone can help me figure out what's going on. I have a persistent entity, GameDataV1. I'd pushed several versions of my app to appspot with no issues until last week. Then, after a push, all indexes for GameDataV1 were

[google-appengine] Accesing config-files on the Engine

2010-06-07 Thread Oggy
Hi I'm new with google app engine. I just deployed my Application molwind to the engine. In my web.xml i described a parameter for the ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN http://java.sun.com/dtd/web-app_2_3.dtd;

[google-appengine] Re: app-engine-data-pipelines session video

2010-06-07 Thread Jaroslav Záruba
Also if someone knew what is the purpose of now / 30 in the task name, please: http://www.youtube.com/watch?v=zSDC_TU7rtc#t=41m35 Regards J. Záruba 2010/6/7 Jaroslav Záruba jaroslav.zar...@gmail.com Hello I'm reading through the PDF that Brett Slatkin has published for %subj %.

[google-appengine] can not access appengine.google.com

2010-06-07 Thread enes akar
Hello; From Turkey I can not access my app-engine dashboard. Currently there is ip based restriction for youtube. For a few days, also we can not reach some google services (docs, appengine, chart api), as some ip's shared by youtube are banned also. So is there a way to connect to appengine,

[google-appengine] Cannot delete blobs from the Google Dashboard

2010-06-07 Thread Michele Penzo
Dear Google, I am not able to delete blobs from your dashboard. I always get a generic error message (see the attached image). Please, could you solve quickly the problem on your servers? Thanks in advance Regards, Michele -- You received this message because you are subscribed to the Google

Re: [google-appengine] Re: Using GAE as external storage

2010-06-07 Thread Maaartin-1
I'm afraid, this won't work. My problem is quite exactly as the one described in http://groups.google.com/group/gs-discussion/msg/dd3bae779fecd633?hl=en On 10-06-04 23:05, ctran wrote: Google Storage for Developers or use S3 is much more suitable for your purpose. On Jun 3, 1:18 pm, Maaartin

Re: [google-appengine] Re: Using GAE as external storage

2010-06-07 Thread Alon Carmel
is the data textual files? images? why not use blobstore service to store the files using a proprietary api and write a proprietary api to download them? its not supposed to be an issue or am i missing the point? - Cheers, public static function AlonCarmel() { //Contact me var email =

[google-appengine] Re: Indexes Not Building (again)

2010-06-07 Thread davemo
These indexes finished building over the weekend. Thanks ;) On Jun 4, 9:24 am, jread jr...@vendasta.com wrote: We added a new index to our app (appid: steprep-demo) 24 hours ago and it has yet to start building. Can someone give it a kickstart? We have also added the index this morning to our

[google-appengine] Re: Email Service with 10K+ addresses in the cc list

2010-06-07 Thread Sandeep Arneja
have you experimented with shorter email groups. do we know the maximum recipients that can be safely added? I think maybe the only solution would be to split them into smaller individual tasks. On Jun 3, 3:00 am, Aurelian aurelian.vacar...@googlemail.com wrote: I was trying to send 1200 emails

[google-appengine] Re: Email Service with 10K+ addresses in the cc list

2010-06-07 Thread Sandeep Arneja
Has anyone experimented with shorter email bcc groups? Whats the maximum number of people I can have in a group without having the task fail? On Jun 3, 3:00 am, Aurelian aurelian.vacar...@googlemail.com wrote: I was trying to send 1200 emails using a task queue, but it doesn't work, giving a

[google-appengine] Account re-verification

2010-06-07 Thread johnl
Hello, I have already verified my account, but am being asked to do so again to add another application. I can't re-verify as it won't accept the same phone number twice. Could this be to do with my email changing to @gmail.com as part of the UK change from @googlemail.com? Hope you can help!

[google-appengine] Re: Deployment getting stuck

2010-06-07 Thread Robert Munteanu
Seeing this as well. Robert On Jun 7, 4:11 am, Kelly A kelly.j.ander...@gmail.com wrote: Every time I try to deploy it just gets stuck.  I have let it run for over an hour but the update never completes.  Updates were happening fine earlier this morning.  Any one have any suggestions on how I

[google-appengine] give me a demo that have 'nomoal user signup' and openid user login

2010-06-07 Thread zjm1126
a demo or a framework on gae -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Re: An introduction to the DataStore

2010-06-07 Thread bluedes
yup, good work indeed! it's been very helpful, to people like me, too! coincidentally, from Athens, GA.. =) more power to you! On Jun 5, 9:23 pm, nickmilon nickmi...@gmail.com wrote: Good  work and  very yy  helpfull  ! Ciao (from Athens Greece) On Jun 5, 11:33 am, Luca

[google-appengine] Searching a Google Apps Domain Authenticated Application

2010-06-07 Thread Greg Atkinson
I have a blogging application running on GAE that is only accessible to a specific Google Apps Domain. I need my users to be able to search the application. The options I can think of are: (1) The application is indexed by Google's crawler and results are returned with a simple Google search. But

[google-appengine] Shows Datastore Quota Exceeded (100%) when 149 MB of 1GB only used

2010-06-07 Thread Apostek Apps
On the Dashboard we are getting Total Stored Data 100% 1.00 of 1.00 GBytes But on the Datastore Statistics we get 149 MBytes as the Size of all entities We are getting- The API call datastore_v3.Put() required more quota than is available. as an exception when we try to insert values in the

[google-appengine] Application Code Loaded for the First Time

2010-06-07 Thread brandoneggar
I keep getting the usual log message of: This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. Looking through my app logs i'm seeing this message multiple times within ONE minute. I can understand if the

Re: [google-appengine] Application Code Loaded for the First Time

2010-06-07 Thread Jaroslav Záruba
On Mon, Jun 7, 2010 at 7:17 PM, brandoneggar brandoneg...@gmail.com wrote: Looking through my app logs i'm seeing this message multiple times within ONE minute. I can understand if the site is idle for more than 5 minutes or so. I'm envious of you guys, my JVMs seem to fall asleep after

[google-appengine] Re: Application Code Loaded for the First Time

2010-06-07 Thread Jake
Hey, Several threads on this. I wonder why, after I started having the issue several months ago, it's getting so much attention now :) Anyways, star this issue: http://code.google.com/p/googleappengine/issues/detail?id=2931 :) Jake On Jun 7, 1:36 pm, Jaroslav Záruba

[google-appengine] Deadline?

2010-06-07 Thread Patrick Twohig
I was under the impression that the deadline for requests was 30 seconds, but my app is routinely throwing deadline exceptions after 10 seconds or so. Is there a reason for this? -- Patrick H. Twohig. Namazu Studios P.O. Box 34161 San Diego, CA 92163-4161 -- You received this message because

[google-appengine] Bulk upload - transform to uppercase?

2010-06-07 Thread Craig Berry
I'm a Java guy, so I'm asking for something that's probably pitifully simple, but I can't find it. I need to write a bulk upload import transformer that takes a particular field from my source data and converts it to uppercase before storing it in the datastore. I can find how to convert a python

[google-appengine] Re: Deadline?

2010-06-07 Thread Mike Wesner
The ones that fail right at 10 seconds are usually due to the simultaneous dynamic request limit. Do the logs show this? Request was aborted after waiting too long to attempt to service your request because you have reached your simultaneous dynamic request limit. This is almost always due to

Re: [google-appengine] Re: Deadline?

2010-06-07 Thread Patrick Twohig
Ah, that would make sense. On Mon, Jun 7, 2010 at 1:17 PM, Mike Wesner mike.wes...@webfilings.comwrote: The ones that fail right at 10 seconds are usually due to the simultaneous dynamic request limit. Do the logs show this? Request was aborted after waiting too long to attempt to service

Re: [google-appengine] Re: Email Service with 10K+ addresses in the cc list

2010-06-07 Thread Patrick Twohig
If you send a bulk email like that, does it count as one email towards your quota or does it count as each recipient. I wrote a task that sends a single email to my entire subscriber base. WOuld I be saving money by using the BCC field? On Mon, Jun 7, 2010 at 8:34 AM, Sandeep Arneja

[google-appengine] Re: give me a demo that have 'nomoal user signup' and openid user login

2010-06-07 Thread Tam Vo Minh
Dear friend, You can see http://code.google.com/p/super-easy/ as an example. But I can't check out the source code. If you have, plz share for us. Thanks. On Jun 7, 10:38 am, zjm1126 zjm1...@gmail.com wrote: a demo or a framework on gae -- You received this message because you are subscribed

[google-appengine] Re: Searching a Google Apps Domain Authenticated Application

2010-06-07 Thread Tam Vo Minh
Dear Greg, I would like to recommend for you a library which you can use in datastore: http://code.google.com/p/guestbook-example-appengine-full-text-search/ I have used it, it's easy to implement and powerful, but it parses our text into word token and store it as a new column and so it costs a

[google-appengine] GAE anti-DOS mechanism

2010-06-07 Thread Timothy Makobu
Hello All, Does GAE have an anti-DOS mechanism? For example, if an IP makes over 10 requests/second, it sends you an email or blocks the IP and sends an email? regards, Tim. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this

[google-appengine] Re: Deployment getting stuck

2010-06-07 Thread Edgar Gonçalves
Just adding a similar issue, yesterday around 10PM (GMT) i was cut out of the ability to deploy my application. appconfig.sh prints out everything up to 90% Deploying new version, and then 95% Rolling back the update, followed by these: java.io.IOException: Error posting to URL:

[google-appengine] Index doesn't seem to work

2010-06-07 Thread Col Wilson
I know I'm using python below, but this is really a question about indexes. I am trying to sort a query by price (low to high) and the query looks like: q = models.Slot.all() q.filter('geoboxes =', geobox) q.filter('date =', dt) q.order('price') index.yaml looks like

[google-appengine] Re: Email Service with 10K+ addresses in the cc list

2010-06-07 Thread Sandeep Arneja
Each recipient in the bcc list counts towards one email credit On Jun 7, 4:24 pm, Patrick Twohig patr...@namazustudios.com wrote: If you send a bulk email like that, does it count as one email towards your quota or does it count as each recipient.  I wrote a task that sends a single email to

[google-appengine] Re: app-engine-data-pipelines session video

2010-06-07 Thread Tristan
not a python guy but, the purpose of int (now / 30) will be to come up with the same name for a span of time (30 milliseconds?). notice that int(1/30) = 0 int (3/30) = 0 int (29/30) = 0 and int(32/30) = 1. this is a way to come up with that task name uniquely. although now i'm confused

[google-appengine] Re: How to perform a task regularly every 1-4 seconds?

2010-06-07 Thread Tristan
sounds like you're a perfect candidate for the fan-in problem. check out this i/o video: http://code.google.com/events/io/2010/sessions/high-throughput-data-pipelines-appengine.html On Jun 7, 12:20 am, Rye Terrell ryeterr...@ryeterrell.net wrote: Thanks, Nick.  It looks like the task queue

Re: [google-appengine] Re: app-engine-data-pipelines session video

2010-06-07 Thread Brett Slatkin
Hey all, The int(time.time()/30) part of the task name is to prevent queue stalls. When memcache gets evicted the work index counter will be reset to zero. That means new fork-join work items may insert tasks that are named the same as tasks that were already inserted. By including a time window

Re: [google-appengine] Re: app-engine-data-pipelines session video

2010-06-07 Thread Jaroslav Záruba
Thank you, Brett. Would it be wrong to hash whole work_index instead of only hashing its second half? sum_name, knuth_hash(index) By md5-ing only the sequence number I get work_index of 'mySumName' + 32B. If I hashed mySumName together with the seq.number the key would be only 32B. (Still quite

Re: [google-appengine] Re: app-engine-data-pipelines session video

2010-06-07 Thread Brett Slatkin
I was using an integer hash to reduce the key size. You don't need to hash the whole thing. Bigtable will split tablets based on a string prefix, so all that matters is the data distribution beyond that prefix. So foo-hash is just as effective as hash of foo + number, or even better since it's

Re: [google-appengine] Re: app-engine-data-pipelines session video

2010-06-07 Thread Jaroslav Záruba
Thanks a lot! On Mon, Jun 7, 2010 at 11:44 PM, Brett Slatkin brett-appeng...@google.comwrote: I was using an integer hash to reduce the key size. You don't need to hash the whole thing. Bigtable will split tablets based on a string prefix, so all that matters is the data distribution beyond

Re: [google-appengine] Bulk upload - transform to uppercase?

2010-06-07 Thread djidjadji
write a lamba function as lambda x: x.upper() 2010/6/7 Craig Berry cdbe...@gmail.com: I'm a Java guy, so I'm asking for something that's probably pitifully simple, but I can't find it. I need to write a bulk upload import transformer that takes a particular field from my source data and

Re: [google-appengine] GAE anti-DOS mechanism

2010-06-07 Thread djidjadji
Look at the Dos sections of the configuration files: app.yaml or app.xml You can permanently block IP ranges, or single IPs 2010/6/7 Timothy Makobu makobu.mwambir...@gmail.com: Hello All, Does GAE have an anti-DOS mechanism? For example, if an IP makes over 10 requests/second, it sends you

Re: [google-appengine] GAE anti-DOS mechanism

2010-06-07 Thread Andrius A
Hi Tim, there is no smart anti-dos mechanism, but you can block specific IP's within dos.yaml in python or alternative configuration. Rgds, Andrius -- Sent from my mobile device On 7 Jun 2010 21:26, Timothy Makobu makobu.mwambir...@gmail.com wrote: Hello All, Does GAE have an anti-DOS

[google-appengine] Reserving instances and datastore performance

2010-06-07 Thread Anders
I read in the App Engine Product Roadmap that Ability to reserve instances to reduce application loading overhead is planned. Really good! If the price for that will not be too high. http://code.google.com/appengine/docs/roadmap.html But will that also affect the performance of for example the

Re: [google-appengine] Re: give me a demo that have 'nomoal user signup' and openid user login

2010-06-07 Thread Scott Ellis
http://github.com/sje397/Chess http://your-move.appspot.com On 8 June 2010 04:20, Tam Vo Minh vo.mita...@gmail.com wrote: Dear friend, You can see http://code.google.com/p/super-easy/ as an example. But I can't check out the source code. If you have, plz share for us. Thanks. On Jun 7,

[google-appengine] Re: can not access appengine.google.com

2010-06-07 Thread nickmilon
I think you better address this to Mr. Erdogan or whoever is censoring Internet in Turkey.. Or try through a proxy, as the people from China are doing since ages ago. happy coding ;-) On Jun 7, 10:53 am, enes akar enesa...@gmail.com wrote: Hello; From Turkey I can not access my

[google-appengine] Applet cannot find com/google/gdata/util/ServiceException

2010-06-07 Thread PeterJ
I'm building an applet in Processing (Java graphics extension) which pulls data from a Google Spreadsheet to populate its internal database. I finally have it to the point where I can and want to run tests in applet form, and I get this error: java.lang.NoClassDefFoundError:

[google-appengine] INFO: This request caused a new process to be started for your application

2010-06-07 Thread Francisco Ceruti
Hi everyone, Whenever i get the: INFO: This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take longer and use more CPU than a typical request for your application. the server returns

[google-appengine] Bulkupload to local dev server -- key generation?

2010-06-07 Thread Craig Berry
I am attempting to populate a local dev db using bulk upload (the prerelease version, if that matters). This works fine when I do it to the production datastore at appspot, but when I connect to my local instance (http://localhost:/remote_api), I end up with exactly one record, with an ID of

[google-appengine] Re: INFO: This request caused a new process to be started for your application

2010-06-07 Thread Geoffrey Spear
On Jun 7, 8:53 pm, Francisco Ceruti francisco.cer...@gmail.com wrote: Hi everyone, Whenever i get the: INFO: This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take longer and

[google-appengine] Re: Shows Datastore Quota Exceeded (100%) when 149 MB of 1GB only used

2010-06-07 Thread prgmratlarge
What's session data? On Jun 7, 3:03 pm, Ikai L (Google) ika...@google.com wrote: Are you using any indexes? If you have many properties with lots of indexes on them, it's possible the space is taken up by indexes. Another possibility is session data. At any rate, to keep your application

[google-appengine] get_or_insert and Locks

2010-06-07 Thread prgmratlarge
Just want to make sure: When using get_or_insert(), appengine only locks that entity group and not the entire Kind? Thanks -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to