First: I'm a beginner in python.
How can I fetch more than 1000 record from data store and put all in one single list to pass to django?
|
First: I'm a beginner in python. How can I fetch more than 1000 record from data store and put all in one single list to pass to django? |
||||
|
|
|
Starting with Version 1.3.6 (released Aug-17-2010) you CAN
|
|||||||||||||
|
|
Just for the record - fetch limit of 1000 entries is now gone: http://googleappengine.blogspot.com/2010/02/app-engine-sdk-131-including-major.html Quotation:
|
|||
|
|
|
App Engine gives you a nice way of "paging" through the results by 1000 by ordering on Keys and using the last key as the next offset. They even provide some sample code here: http://code.google.com/appengine/docs/python/datastore/queriesandindexes.html#Queries_on_Keys Although their example spreads the queries out over many requests, you can change the page size from 20 to 1000 and query in a loop, combining the querysets. Additionally you might use itertools to link the queries without evaluating them before they're needed. For example, to count how many rows beyond 1000:
|
|||||||||
|
|
Every time this comes up as a limitation, I always wonder "why do you need more than 1,000 results?" Did you know that Google themselves doesn't serve up more than 1,000 results? Try this search: http://www.google.ca/search?hl=en&client=firefox-a&rls=org.mozilla:en-US:official&hs=qhu&q=1000+results&start=1000&sa=N I didn't know that until recently, because I'd never taken the time to click into the 100th page of search results on a query. If you're actually returning more than 1,000 results back to the user, then I think there's a bigger problem at hand than the fact that the data store won't let you do it. One possible (legitimate) reason to need that many results is if you were doing a large operation on the data and presenting a summary (for example, what is the average of all this data). The solution to this problem (which is talked about in the Google I/O talk) is to calculate the summary data on-the-fly, as it comes in, and save it. |
|||||||||||
|
|
You can't. Part of the FAQ states that there is no way you can access beyond row 1000 of a query, increasing the "OFFSET" will just result in a shorter result set, ie: OFFSET 999 --> 1 result comes back. From Wikipedia:
From http://code.google.com/appengine/docs/whatisgoogleappengine.html
From http://code.google.com/appengine/docs/datastore/gqlreference.html
From http://code.google.com/appengine/docs/datastore/queryclass.html
What this means isIf you have a singular query, there is no way to request anything outside the range 0-1000. Increasing offset will just raise the 0, so
Will return 1000 rows, and
Will return 0 rows, thus, making it impossible to, with a single query syntax, fetch 2000 results either manually or using the API. The only plausible exceptionIs to create a numeric index on the table, ie:
If your data or query can't have this 'ID' hardcoded identifier, then you are out of luck |
|||||||||||||
|
|
This 1K limit issue is resolved. query = MyModel.all() for doc in query: print doc.title By treating the Query object as an iterable: The iterator retrieves results from the datastore in small batches, allowing for the app to stop iterating on results to avoid fetching more than is needed. Iteration stops when all of the results that match the query have been retrieved. As with fetch(), the iterator interface does not cache results, so creating a new iterator from the Query object will re-execute the query. The max batch size is 1K. And you still have the auto Datastore quotas as well. But with the plan 1.3.1 SDK, they've introduced cursors that can be serialized and saved so that a future invocation can begin the query where it last left off at. |
|||
|
|
|
The 1000 record limit is a hard limit in Google AppEngine. This presentation http://sites.google.com/site/io/building-scalable-web-applications-with-google-app-engine explains how to efficiently page through data using AppEngine. (Basically by using a numeric id as key and specifying a WHERE clause on the id.) |
|||
|
|
|
||||
|
|
|
we are using something in our
This gets around the 1000 query limit on every model without having to think about it. I suppose a keys version would be just as easy to implement. |
|||
|
|
Simple as that. Note that there is an RPC made for every entity which is much slower than fetching in chunks. So if you're concerned about performance, do the following: If you have less than 1M items:
Otherwise, use a cursor. It should also be noted that:
returns 1000 max and should not be used. |
|||||
|
|
JJG: your solution above is awesome, except that it causes an infinite loop if you have 0 records. (I found this out while testing some of my reports locally). I modified the start of the while loop to look like this:
|
|||
|
|
|
To add the contents of the two queries together:
List 1 now contains all 2000 results. |
|||||||||
|
|
The proposed solution only works if entries are sorted by key... If you are sorting by another column first, you still have to use a limit(offset, count) clause, then the 1000 entries limitation still apply. It is the same if you use two requests : one for retrieving indexes (with conditions and sort) and another using where index in () with a subset of indexes from the first result, as the first request cannot return more than 1000 keys ? (The Google Queries on Keys section does not state clearly if we have to sort by key to remove the 1000 results limitation) |
||||
|
|
|
I'm building an app that needs to report on events occurring. An event has a type and I also need to report by event type. The 1000 limit is throwing a wrench into how I would normally do it. I don't need to retrieve all of the entities and present them to the user, but I do need to show the total count for a specific date range. Any suggestions? Thanks! |
|||
|
|
This is close to the solution provided by Gabriel, but doesn't fetch the results it just counts them:
Works perfectly for my queries, and fast too (1.1 seconds to count 67,000 entities) Note that the query must not be an inequality filter or a set or the cursor will not work and you'll get this exception:
|
||||
|
|