What type of performance times wise did you have?
I have been playing with a data import of roughly 60,000 entities, and using a batch of 1000 at a time.
Using a ndb.Expando model with a few dynamic fields (roughly 6-7) with indexing disabled.
I'm getting (using Guido's method) of approx 9-10s per 1000 (1 batch), kind of expensive :/
I've tried a few variations, currently using one put_multi() tried breaking it down to put_multi at 100, and 500 interval. But not much difference in performance (none more than likely).
App stats says its the datastore_v3.Put that is the cost factor.
Anybody else able to import these volumes with lower cost time?
Thanks,
Mike