Upon further investigation, it appears that the bulkloader ignores the 
indexed=False directive. When I create entities manually, these properties 
are not indexed, as expected. Is there any way to make the bulkloader work 
as it's supposed to?

On Thursday, April 26, 2012 10:58:16 PM UTC-7, xophe wrote:
>
> I have an entity with only unindexed properties (indexed=False), but 
> whenever I bulk upload a bunch of them, it gets suspiciously close to the 
> quota limit as if the properties were indexed. If I run a query in admin 
> with one of those property in the where clause or the order by clause, it 
> works just fine, even though my understanding of unindexed properties is 
> that this type of query should return an error. Also, the stats shows 
> indexes for all these properties.
>
> Any idea what I'm missing? Here is my entity:
>
> class User(db.Model):
>         token = db.TextProperty(indexed=False)
>         location = db.TextProperty(indexed=False)
>         timestamp = db.DateTimeProperty(indexed=False, auto_now_add=True)
>
> Thanks.
>

-- 
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/-/S0p77LMHT44J.
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 this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to