I am developing my first App Engine app. I haven't yet uploaded it to appspot.com -- I am just using the development server at the moment.
I have written some models, my own bulkloader.yaml
file, and I am currently trying to use appcfg.py
to load my sample data into the data store (several thousand entities of two different kinds).
In this question: uploading-data-with-bulkloader, the original poster mentions that he solved his problem by splitting the data up into multiple files. How can I do this?
At the moment I am using appcfg.py
like this:
appcfg.py upload_data --config_file=bulkloader.yaml --url=http://localhost:8080/_ah/remote_api --filename=mydata/objects.csv --kind=FirstObject --email=test@example.com
How can I add a second filename
and kind
? I got the impression this was possible from the example .yaml file here: bulkloadersample.appspot.com, but it's possible that version of the bulkloader is out of date (e.g. it uses model
instead of kind
in the transformers).