[appengine-java] Re: 1000 Entity limit

2010-01-18 Thread jd
You can iterate over _more_ than 1000 results. From the horses mouth (sorry Don): http://groups.google.com/group/google-appengine-java/browse_thread/thread/4dc3cd9e6113fe16# On Jan 17, 11:58 pm, Paul Jacobs paul.r.jac...@gmail.com wrote: Can I get a quick confirmation? The 1000 entity limit

[appengine-java] Re: 1000 Entity limit

2010-01-18 Thread Paul Jacobs
Thanks. On Jan 18, 6:49 am, jd jdpatter...@gmail.com wrote: You can iterate over _more_ than 1000 results. From the horses mouth (sorry Don): http://groups.google.com/group/google-appengine-java/browse_thread/th... On Jan 17, 11:58 pm, Paul Jacobs paul.r.jac...@gmail.com wrote: Can I

[appengine-java] Re: 1000 Entity limit

2010-01-18 Thread Paul Jacobs
Well, it appears that this cannot be done. Works fine on the development server but I get this: java.lang.IllegalArgumentException: offset may not be above 1000 on the live server. See similar results below: http://www.mail-archive.com/google-appengine-java@googlegroups.com/msg04763.html

Re: [appengine-java] Re: 1000 Entity limit

2010-01-18 Thread Jeff Schnitzer
If you call PreparedQuery.asIterator(), you can actually iterate yourself as far as you want (within the deadline, of course). In practice I've found you can rarely iterate through more than a couple thousand entities. The offset value is limited to 1,000. Basically the datastore is iterating