lujop
lujop

Reputation: 13883

Unindexed properties with bulk loader

I'm using python bulk loader to load a csv file to appengine and I see that all properties are automatically indexed.

How can I leave some properties unindexed?

PD: I'm using the new configuration:

appcfg.py upload_data --config_file=bulkloader.yaml --filename=xxx.csv --kind=MyEntity --url=http://xxx.appspot.com/remote_api

Upvotes: 1

Views: 82

Answers (1)

alex
alex

Reputation: 2451

You could use something like this: http://alex.cloudware.it/2012/08/unindexed-entity-properties-with-bulk.html

Upvotes: 1

Related Questions