[appengine-java] Re: PersistenceManager (JDO), transaction and close() function

2011-02-22 Thread Ian Marshall
Hi Tom, I always call close() on an PersistenceManager instance once I have finished with it, be it using or not using a transaction. In my jdoconfig.xml, I use the setting property name=datanucleus.DetachAllOnCommit value=true/ so I can call PersistenceManager#close() with confidence that I

[appengine-java] Re: Protocol Buffer in Google app engine

2011-02-22 Thread Didier Durand
Hi Amit, I still don't know much about your app and requirement, but what I can say: a) you should stick to http rather than going to any other kind of RPC: http on port 80 is very well managed and ubiquitous over the whole Internet. If you go to something more exotic, you risk getting blocked

[appengine-java] Re: bulkloader - Authentication failed.

2011-02-22 Thread Aswath Satrasala
Any idea on how to use the bulkloader, if FederatedLogin Authentication is enabled. -Aswath On Mon, Feb 21, 2011 at 3:38 PM, Aswath Satrasala aswath.satras...@gmail.com wrote: I figured out this. I had modified the Application Setting -AuthenticationOptions to 'Federated Login'. Hence it

[appengine-java] Are IdGeneratorStrategy.Identity values always unique.

2011-02-22 Thread Richard Wallis
If I use IdGeneratorStrategy.Identity to generate a long key field and then delete the object associated with that key from the datastore. Is it possible that the same key will be reused with a different object of the same class? Or are keys always unique? -- You received this message because

[appengine-java] Re: max-concurrent-requests useless?

2011-02-22 Thread vincentd
Its okay, the file isnt used on my localhost, but it works fine on google apps engine... -- 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-java@googlegroups.com. To unsubscribe

[appengine-java] Re: 1.4.2: Can't make https call from dev server

2011-02-22 Thread Jens Lundberg
I'm running the dev-server (ver. 1.4.2) and GData Docs 3.0 Client ( on Windows Vista and I also experience this problem when I try to access the DocList with Oauth like below: GoogleOAuthParameters oauthParameters = new GoogleOAuthParameters(); oauthParameters.setOAuthConsumerKey(CONSUMER_KEY);

[appengine-java] ClassNotFoundException

2011-02-22 Thread winsome[765]
Okay last night I deployed onto GAE and everything worked. I changed some html (no java, config, etc) and deployed again. Now when I access the app via the default gae url e.g. id.appspot.com, my app throws a ClassNotFoundException - and I'm sure the class is in the WEB- INF/classes folder.

[appengine-java] api Sites: Required extension element http://schemas.google.com/acl/2007:role not found

2011-02-22 Thread vincentd
Hi, I catch this exeption when i use the ACL feed for a site where there is the user anyone with the link: com.google.gdata.util.ParseException: [Line 1, Column 8788, element entry] Required extension element http://schemas.google.com/acl/2007:role not found. I saw the same problem was

[appengine-java] PersistenceManager (JDO), transaction and close() function

2011-02-22 Thread Tom Fishman
In almost every example code I can see, the PersistenceManager is never closed ( call close() ) with JDO transaction operation. What's the reason of that? ( In other cases, close() is always called in finally clause ) My code has both transaction and non-transaction operations, the entity

[appengine-java] Learning the datastore

2011-02-22 Thread John
I've been reading the App Engine docs to prep myself for for a new project using the datastore. When learning a new technology I like to look at working code vs. just the examples in the docs. Does anyone know of an active open source project that I can download and use to accelerate my learning

Re: [appengine-java] Learning the datastore

2011-02-22 Thread Ronmell Fuentes
Hi John, acording to my expertise in DataStore, you'll get more know-how when running the example you'll see the creation of the files and all the data that datastore deals with. try running the helloWorld example and try to 1. create one own Object to be stored (kinda POJO); 2. create a

[appengine-java] Zero instance

2011-02-22 Thread Ciro
Hi, Since yesterday, my GAE app has zero instance allowed so when I enter http://teatropicaro.appspot.com I get an error 500. I've tried to disable and re-enable the app but nothing to do. Please help. Thank you. -- You received this message because you are subscribed to the Google Groups

Re: [appengine-java] Learning the datastore

2011-02-22 Thread Ikai Lan (Google)
I think one of the best ways to start learning about the datastore is to use the low-level API: http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/package-summary.html We changed our docs recently to show examples using this. As far as open source projects go,

[appengine-java] Re: ClassNotFoundException

2011-02-22 Thread Simon Knott
I can't answer the first question, but as for the second - are you doing any static initialization of that class? If a static initializer fails, you will get a ClassNotFoundException even if the Class is deployed. -- You received this message because you are subscribed to the Google Groups

[appengine-java] Re: Learning the datastore

2011-02-22 Thread Didier Durand
Hi, I would also recommend you to get the source code of Objectify, 1 of the open source datastore frameworks recommended by Google to work on top of its low-level ds api: very efficient and broad use of the ds capabilities. I would also recommend the wiki pages of the project: perceived as very

Re: [appengine-java] Unable to start embedded HTTP server, AccessControlException

2011-02-22 Thread Toby Reyelts
If you set the JVM flag, -Djava.security.debug=access,failure, you'll get a lot of log spam that has the root cause buried in it somewhere. If you post the logs to the list, we can help debug it for you. Remember that if you're running dev_appserver from the command line, you need to use

[appengine-java] Re: Learning the datastore

2011-02-22 Thread John
Great, thanks all! On Feb 22, 7:49 am, Ronmell Fuentes ringe...@gmail.com wrote: Hi John, acording to my expertise in DataStore, you'll get more know-how when running the example you'll see the creation of the files and all the data that datastore deals with. try running the helloWorld

[appengine-java] Re: Probably a newbie question (most likely)

2011-02-22 Thread WillSpecht
Don't you need to persist the thread as well as the comment? It's hard to analyze your code with such a small sample. Does addComment persist the thread? My guess is that something is making the transaction fail, probably cause you are trying to operate on two different entity groups. I would

Re: [appengine-java] Re: Probably a newbie question (most likely)

2011-02-22 Thread Fernando O.
Thanks! I'll try that. BTW no, addComment does not store the comment. On Tue, Feb 22, 2011 at 8:49 PM, WillSpecht willspe...@gmail.com wrote: Don't you need to persist the thread as well as the comment? It's hard to analyze your code with such a small sample. Does addComment persist the

Re: [appengine-java] Re: Probably a newbie question (most likely)

2011-02-22 Thread Fernando O.
tried that and it's telling me org.datanucleus.exceptions.NucleusObjectNotFoundException: Could not retrieve entity of kind Thread with key Thread(51) I also tried doing a query with the Thread key and UserKey (wich is the key for a thread) and then I get an exception about modifying 2 entities

Re: [appengine-java] Re: Protocol Buffer in Google app engine

2011-02-22 Thread Amit Pandey
Completely Make sense. Thanks Didier. On Tue, Feb 22, 2011 at 5:57 PM, Didier Durand durand.did...@gmail.comwrote: Hi Amit, I still don't know much about your app and requirement, but what I can say: a) you should stick to http rather than going to any other kind of RPC: http on port 80

[appengine-java] Re: Protocol Buffer in Google app engine

2011-02-22 Thread Peter Ondruška
Just a note on Java-to-Java serialization: This is not going to work 100% while protobuf serialization should work. -- 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

[appengine-java] Re: Unexpected Exception while trying executin a jdo query

2011-02-22 Thread culov
same problem, havent found an answer. On Jan 28, 1:46 am, Christophe Weber christophe.we...@gmail.com wrote: Hi, I have a problem when trying to query  on the appengine. here's what I do: Query q = persistenceManager.newQuery(User.class); q.declareParameters(java.lang.String emailParam);

Re: [appengine-java] Re: Protocol Buffer in Google app engine

2011-02-22 Thread Amit Pandey
I am planning to use the regular servlet interface and use encoded protobufs in the request and response bodies. thoughts/suggestions? On Wed, Feb 23, 2011 at 12:47 PM, Peter Ondruška peter.ondru...@gmail.comwrote: Just a note on Java-to-Java serialization: This is not going to work 100%

[google-appengine] Kay 1.1rc1 Released!

2011-02-22 Thread Ian Lewis
Hi! We just released Kay 1.1 rc1! Kay is a web framework made specifically for Google App Engine. The basic design of Kay is based on the Django framework, like middleware, settings, pluggable applications, etc. Kay uses Werkzeug as a lower level framework, Jinja2 as template engine, and babel

Re: [google-appengine] Re: Need help with redirection

2011-02-22 Thread djidjadji
Are you sure your redirect request handler is being called? Put some logging.info(Here-1) calls in your code. Have you tried http://localhost:8080/learn Have you read and understand HTTP and HTML tutorials. Why not put the external link directly in the a tag a

[google-appengine] How do I update the key_name using bulkloader.yaml?

2011-02-22 Thread ogterran
Hi, I am trying to update the key_name using bulkloader.yaml, but key_name is not being updated, just id What am i doing wrong? My bulkloader.yaml below - kind: User connector: csv connector_options: encoding: utf-8 column_list: [__key__, username, email, name] property_map:

Re: [google-appengine] server error accessing datastore admin

2011-02-22 Thread Ubaldo Huerta
Hi Robert In my google apps dashboard I disable, that is, deleted, the app engine app (the jargon is very confusing, to say the least), but anyhow, I disable the app and added it again. Still the same error. I wonder if you meant actually deleting the app in app engine dashboard and add it

[google-appengine] Unrequested warmup requests thrashing cpu

2011-02-22 Thread Tim Hoffman
Hi Mid last week we started getting a massive increase in unrequested warmup requests. Have logged an issue http://code.google.com/p/googleappengine/issues/detail?id=4625 has anyone else noticed these unrequested requests. The instance is an always on instance, and we used to get an

[google-appengine] Re: Make a simple uploader interface for war

2011-02-22 Thread Peter Quiring
I had the same idea. Maybe Google can create something inside the admin console to do this. Seems like a simple straight forward idea. This would allow people to get started who are novice and don't know how to use Eclipse or the command line. Thanks. -- You received this message because

[google-appengine] I am unable to add an existing appengine app to a google apps Domain, why?

2011-02-22 Thread Mario César
Hello all, I am having strange problems trying to add a google app engine app to google apps. I hope someone could give me a hint about solving this. I would try to be very descriptive, the issues is obscure for me, so I would give all details: Using a gmail account I create an app on

[google-appengine] Re: ate up my app slot

2011-02-22 Thread branflake2267
Could I get 10 more slots? :) I make demos and GWT apps. Thanks, Brandon Donnelson http://gwt-examples.googlecode.com http://c.gawkat.com http://gonevertical.com -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

Re: [google-appengine] Re: pricing / additional app slots

2011-02-22 Thread branflake2267
I need 10 more slots if someone reads this. They need a formal process to request more slots. Brandon Donnelson http://gwt-examples.googlecode.com -- 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] template inheritance while using django 1.2 via appengiene uselibrary in gae 1.4.2

2011-02-22 Thread Sandeep Koduri
Hi, Am trying to use django 1.2. which is raising some template not found error when we try to extend to other relative path. Which worked fine in django 0.96, {% extends ../../../central/dashboard/templates/home.html %} Using this is bringing the error home dose not exist. this is the file

Re: [google-appengine] Who can I ask for more App Engine Slots?

2011-02-22 Thread branflake2267
Very clever. Is there any reason I can't get any more slots at the moment? Have I hit a ceiling are you out of slots to give? Thanks looking, Bandon -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

Re: [google-appengine] Re: love letter to appengine team (see attached)

2011-02-22 Thread Raymond C.
So billing issue is available now? where i can get access to it? -- 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

Re: [google-appengine] Who can I ask for more App Engine Slots?

2011-02-22 Thread Barry Hunter
I imagine its more that there is a limit to how much they willing to give away for free. In essence each 'slot' or appid, is a whole hosting account. One with a particularly generous free quota. Can't really expect Google to keep handing out free hosting accounts continuously On 22 February

[google-appengine] App Engine billing statement unclear from what slot/projectid it billed from.

2011-02-22 Thread branflake2267
When app engine just billed me, the source of the application was unclear. I'd suggest adding the projectid to the statement. It said - Charge for resources consumed. [From where?] * * *branflake2...@gmail.com* | My

Re: [google-appengine] Who can I ask for more App Engine Slots?

2011-02-22 Thread branflake2267
I'll pay for more, how much? There isn't anything on the subject yet. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

Re: [google-appengine] como configurar my domain .com

2011-02-22 Thread sogan xie
Please refer to the link: http://stackoverflow.com/questions/817809/how-to-use-google-app-engine-with-my-own-domain-not-subdomain Maybe some help for you. On Mon, Feb 21, 2011 at 2:16 PM, leonardo leotak...@gmail.com wrote: hello, I know how to configure my app to use with my domain. com.

[google-appengine] NeedIndexError on growing number of entities

2011-02-22 Thread Joseph
Hi, I have an entity kind that inherits from SearchableModel which has 13,417,423 Entities whose single property indexes I disabled (Indexed=False). I have no composite indexes on this kind and all queries made on this kind is via basic seach. *entities =

[google-appengine] Securing servlets

2011-02-22 Thread Charly
Hi friends I'm new and I'm not sure what is the correct way to secure my servlets allowing calls only from my android app client. What do you recommend me? Thanks -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

[google-appengine] metadata overhead for ListProperty

2011-02-22 Thread gzy
Hi, I just wanted to share my findings on the protobuf overhead for lists. While it's a common advice to use short property names I'd say most of the time it makes marginal difference, *except* when using lists. e = Entity('X') e['long_property_name'] = range(100) len(e.ToPb().Encode()) 2827

[google-appengine] Re: I am unable to add an existing appengine app to a google apps Domain, why?

2011-02-22 Thread branflake2267
Hi, I had the same problem when I added a domain to my project. I signed out of my gmail accounts I think to get it to work.. The google sign in process gets confused with account signed in, at least thats what I thought. Try signing out of the accounts except for google app engine dashboard.

[google-appengine] decision: store my geo data using geomodel in datastore or rely on fusion tables?

2011-02-22 Thread roberto.cr
I've already used php, mysql and js to make a maps-based guide before. For that last project I didn't really have to use fusion tables: I just went ahead with only displaying the markers inside a box a little larger than the recommended zoom level for that purpose. (no more than 40 markers inside

[google-appengine] help needed in hello world programe

2011-02-22 Thread thahir hussain
hi i am using google app engine and trying to write simple hello world programme in python and getting this error ImportError: No module named google.appengine.ext i am using eclipse as ide -- You received this message because you are subscribed to the Google Groups Google App Engine group.

[google-appengine] App engine is blocking our server (... Our systems have detected unusual traffic from your computer network ...)

2011-02-22 Thread Marc Provost
This isssue has been covered on other posts -- with no clear answer. (see: http://groups.google.com/group/google-appengine/browse_thread/thread/88cde75072a08fc2/56b80e93e40ce3dd and http://groups.google.com/group/google-appengine/browse_thread/thread/1c8dd575aa6804c2/e84294dc934a1500 for

[google-appengine] Problem about indexes and floats

2011-02-22 Thread Jairo Vasquez
Hi, I'm facing this situation and I don't know why is it happening: I do a query cs = Country.all().filter('government_tax =', 0.005).filter('country_code =', 'US').fetch(1000) and it works :) ... now I do it again but I change 0.005 to 0.5 and not if FAILS!!! cs =

[google-appengine] Re: Object Persistence Methodology - suggestions?

2011-02-22 Thread Jay Young
I'm using SSJS with Rhino on GAE/J, so I've had to do this from scratch as well. I've had success with creating thin wrapper classes (one per kind) around the low-level datastore entities. All of my queries are either static or instance methods on the class, depending on what makes sense. --

Re: [google-appengine] Re: Object Persistence Methodology - suggestions?

2011-02-22 Thread Jeff Schwartz
I'm not sure what your question really is but just in case you are asking about a recommended ORM for AE Java then I recommend Objectify - you can find more information about it at http://code.google.com/p/objectify-appengine/. On Tue, Feb 22, 2011 at 11:20 AM, Jay Young jayyoung9...@gmail.com

Re: [google-appengine] Re: love letter to appengine team (see attached)

2011-02-22 Thread Brandon Donnelson
For some reason I get an erro #316 when posting the link, so heres my wiki with the link to billing: http://code.google.com/p/gwt-examples/wiki/NotesOnAppEngine Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google

Re: [google-appengine] Re: love letter to appengine team (see attached)

2011-02-22 Thread Robert Kluin
There has been a billing issue form for a long time. According to the Billing FAQ, http://code.google.com/appengine/kb/billing.html#morehelp The form is: http://code.google.com/support/bin/request.py?contact_type=AppEngineBillingSupport Robert On Tue, Feb 22, 2011 at 09:45, Raymond

[google-appengine] Re: datastore timeout question

2011-02-22 Thread stevep
Dmity indicated a master/slave on-line handler failure caused by: --get by key, --put with updated value, --run new task to update stats within transaction (launching the TQ call, not finishing it I'll assume) My question on the failures on this lightweight process is whether the

[google-appengine] Re: ETA for programmatic creation of Blobstore images?

2011-02-22 Thread timwhunt
Here's a nice article that includes an example of POSTing to the blobstore in Java http://jeremyblythe.blogspot.com/2010/10/manipulating-images-in-blobstore.html -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

Re: [google-appengine] Problem about indexes and floats

2011-02-22 Thread Robert Kluin
It sort of looks like: The built-in indices are not efficient enough for this query and your data. When there is no compiste index for a multiple property query, the 'merge join' strategy will be used. I would guess you don't have a composite index defined on those two fields, but there are a

[google-appengine] Re: I am unable to add an existing appengine app to a google apps Domain, why?

2011-02-22 Thread Mario César
Thank you Brandon, But, it doesn't work I even clear all the cache and start from scratch with no cookies and sign in with just the google app admin account. I just get the error You do not have the permissions necessary to install this application. I think the problem was create the app with a

[google-appengine] Re: datastore timeout question

2011-02-22 Thread Dmitry
- no. there are no new instances spin-up that time - there are only from google.appengine.ext import db, webapp, from google.appengine.ext.webapp.util import run_wsgi_app and couple of my classes imports. I don't think this is an issue. normally this operation takes around 229ms 385cpu_ms

Re: [google-appengine] template inheritance while using django 1.2 via appengiene uselibrary in gae 1.4.2

2011-02-22 Thread Robert Kluin
There are several other similar discussions, here's a couple: http://code.google.com/appengine/forum/python-forum.html?place=msg/google-appengine-python/YaqfeygoiaI/WjRY2xTJEIEJ https://groups.google.com/group/google-appengine-python/browse_thread/thread/10010f148d74ec55/75d1c011f1f904d8

[google-appengine] Re: Make a simple uploader interface for war

2011-02-22 Thread Ian Marshall
Password Have you tried the appcfg option --passin, which I presume allows the password to be given at launch-time? (I personally do not use this and just enter my password once after having started the uploading process.) Ease of use --- I can only speak for myself, but I find

[google-appengine] Re: Problem about indexes and floats

2011-02-22 Thread Darien Caldwell
This part explains the problem: NeedIndexError: The built-in indices are not efficient enough for this query and your data. Please add a composite index for this query. This query needs this index: - kind: Country properties: - name: country_code - name: government_tax Without an Index

Re: [google-appengine] Prblem deplying Site

2011-02-22 Thread Robert Kluin
You need to clarify the link to the site is broken. In what way? Do you get a 404? Do you get a 500? How are you trying to access the app, via the [appid].appspot.com url? Check your apps logs in the admin console. Robert On Tue, Feb 22, 2011 at 02:34, Tzahi zahiz0...@gmail.com wrote:

[google-appengine] In praise of GWT and App Engine

2011-02-22 Thread Jeff Schwartz
I needed a personal Web site where I could host my credentials, one I can use as sort of a promo to highlight my GWT and App Engine experience and showcase my work because I am currently looking for development work. So using App Engine and GWT I put together http://jefftschwartz.appspot.com/. On

[google-appengine] Is it possible to add the price programmatically to Buy Now Button in Google Checkout?

2011-02-22 Thread Zeynel
I asked the same question at Checkout forum but there was no answer. I would like users to pay for tags they associate with links they submit to the site (I guess like Google keywords). In the script (python) I have a variable total_value that I would like to pass to Buy Now Button as the price.

[google-appengine] Re: help needed in hello world programe

2011-02-22 Thread Zeynel
Do you import these from google.appengine.ext import webapp from google.appengine.ext.webapp.util import run_wsgi_app from google.appengine.ext import db in your python script? On Feb 21, 12:31 pm, thahir hussain s.thahirhuss...@gmail.com wrote: hi i am using google app engine and trying to

[google-appengine] Is it possible to pass the price programmatically to Buy Now Button in Checkout?

2011-02-22 Thread Zeynel
I asked the same question in the Checkout forum but there was no answer. I would like users to pay for tags they associate with links they submit to the site (I guess like Google keywords). In the script (python) I have a variable total_value that I would like to pass to buy now button as the

[google-appengine] Re: decision: store my geo data using geomodel in datastore or rely on fusion tables?

2011-02-22 Thread roberto.cr
i've seen a lot of feedback regarding performance problems with fusion tables... but judging from pubschools demo, it sometimes display the nearby markers and sometimes it simply doesn't display them. are there reliability problems with using geomodel? On Feb 22, 8:32 am, roberto.cr

[google-appengine] AppEngine seems slow to me. Is it normal?

2011-02-22 Thread tobik
I built a page using Django's Paginator which displays a simple table with 20 items from around 1000 total stored in database. I don't know how the Paginator works from the inside, but according to the appstats, it makes two queries (first counts items, second selects given page) and each one of

Re: [google-appengine] AppEngine seems slow to me. Is it normal?

2011-02-22 Thread Chris Copeland
Django's Paginator is not going to be efficient on GAE and is definitely not going to scale. GAE provides cursors which are a very efficient way to page through query results: http://code.google.com/appengine/docs/python/datastore/queries.html#Query_Cursors On Tue, Feb 22, 2011 at 3:57 PM, tobik

[google-appengine] Re: AppEngine seems slow to me. Is it normal?

2011-02-22 Thread tobik
Ok, just to be clear, I found this about 'offset' in the documentation: The query has performance characteristics that correspond linearly with the offset amount plus the limit. If I understand it correctly, the more entries I skip the more time consuming it will be. I guess Paginator simply

[google-appengine] Re: AppEngine seems slow to me. Is it normal?

2011-02-22 Thread tobik
Sorry, one more tricky question. What about namespaces. If I had 10 namespaces and in each namespace 10 entries, would the performance be the same as if I had only one namespace but with 100 entries? On 22 ún, 23:31, Chris Copeland ch...@cope360.com wrote: Django's Paginator is not going to be

[google-appengine] Re: Object Persistence Methodology - suggestions?

2011-02-22 Thread Tim Hoffman
Hi Zope of course has no orm by default. All of it's transactions can be commited on request boundaries by default (ie on successful completion of the request) so you don't have to worry about explicit commits (unless you want to). Unfortunately/fortunately (depending on your point of view)

Re: [google-appengine] Re: help needed in hello world programe

2011-02-22 Thread thahir hussain
i imported this only from google.appengine.ext import webapp : in my hello world programme and getting this error No module named google.appengine.ext i am using eclipse as ide On 2/23/11, Zeynel azeyn...@gmail.com wrote: Do you import these from google.appengine.ext import webapp from

Re: [google-appengine] Re: love letter to appengine team (see attached)

2011-02-22 Thread Raymond C.
Thanks so much! I didnt know Ikai is referring to this form. -- 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

Re: [google-appengine] Re: help needed in hello world programe

2011-02-22 Thread Robert Kluin
Sounds like your paths are not configured / wrong. http://lmgtfy.com/?q=eclipse+python+app+engine+plugin On Tue, Feb 22, 2011 at 23:46, thahir hussain s.thahirhuss...@gmail.com wrote: i imported this only from google.appengine.ext import webapp : in my hello world programme and getting

Re: [google-appengine] NeedIndexError on growing number of entities

2011-02-22 Thread Robert Kluin
Some of the search terms have many results, since there is no composite index merge-join is being used. Adding a compiste index would probably significantly increase the write-time overhead (search for exploding indexes). Three thoughts come to mind: 1) Compute statistics so you can identify

Re: [google-appengine] Re: AppEngine seems slow to me. Is it normal?

2011-02-22 Thread Robert Kluin
Performance is independent of the number of entities you have. Namespaces are great for segregating data, but you can't query across them -- you'll only get results from one. Like Chris mentioned, use cursors instead of offsets. And if you can, then yes a well thought out caching strategy is a

Re: [google-appengine] server error accessing datastore admin

2011-02-22 Thread Robert Kluin
Hi Ubaldo, I just double checked this on one of my apps. It does fix the issue when directly accessing an app via [appid].appspot.com. Now it looks like custom admin pages and the datastore admin is loading the app off of a domain such as: [version]-dot-latest-dot-[appid].appspot.com I

[google-appengine] Re: Migration to High Replication, lost access to keys.

2011-02-22 Thread johnP
There is lots of thought about how to migrate to HR for the promised increase in reliability. But how do I resolve the following situation. I have millions of entities with a key_name that is a compressed hash of 4 other entity key-strings. This ensures that there are no duplicate records.

Re: [google-appengine] Re: How do I determine the order of HTTP requests?

2011-02-22 Thread Robert Kluin
Hey Dan, If your getting large bursts of requests there is a very good chance they will not hit the app / datastore in order they were made anyway. At least if you define order-they-were-made as the 'true' click order (hope that is clear). There will be network latencies, instance spin-ups, and

Re: [google-appengine] Datastore admin Server Error

2011-02-22 Thread Robert Kluin
Are you getting the error on your local development server or on production? I expect you probably have issues deploying, since your app id is SymPullCDN -- it should be all lower case. Does anything show up in your logs? Robert On Mon, Feb 21, 2011 at 04:39, burg burga...@gmail.com wrote: