bulkloader Questions
1
I have a array of data something like
var records = [
{Name: '', Id: 1},
{Name: '', Id: 2},
{Name: '', Id: 3},
{Name: '', Id: 4},
{Name: '', Id: 5},
{Name: '', Id: 6}
];
there could be th...
Phylum asked 15/11, 2015 at 19:17
1
I have a map reduce job that connects to HBASE and I can't figure out where I am running into this error:
Exception in thread "main" java.lang.reflect.InvocationTargetException
at sun.reflect.Na...
Nottinghamshire asked 15/8, 2014 at 21:39
3
Solved
I am doing something that should be simple and getting stuck over and over again. I am getting this error when uploading quite simple csv files to my development server:
Error in WorkerThread-0: a...
Econah asked 15/8, 2011 at 12:51
1
Solved
I'm running the following two commands:
appcfg.py download_data --kind=Journal --url=http://appname.appspot.com/_ah/remote_api --filename=Journals.sql3
appcfg.py upload_data --url=http://localhost...
Crossover asked 18/7, 2013 at 10:9
2
Solved
I am still new to Python and GAE. I have an application on local server that is running just fine. I can add entity to my datastore, I can view my website, etc: everything is fine.
Now I am trying...
Wincer asked 8/12, 2012 at 12:49
3
I'm trying to sort d-dimensional data vectors by their Hilbert order, for bulk-loading a spatial index.
However, I do not want to compute the Hilbert value for each point explicitly, which in part...
Gybe asked 10/12, 2011 at 20:18
1
Solved
I am a little bit confused as to why I am receiving the error AttributeError: 'module' object has no attribute 'strptime'. When I import datetime in my Python script and call datetime.datetime.strp...
Dulcy asked 7/2, 2012 at 18:56
1
Solved
I want to use bulkloader to download all entities in a model with some self-defined Property.
If I define a model like this,
class MyType:
def __init__(self, arg):
self.name = arg['name']
self...
Highpressure asked 8/10, 2011 at 14:12
1
Solved
From an empty datastore, I was able to auto-generate a bulkloader.yaml file. It only contains the python_preamble, but the transformers section was empty.
python_preamble:
- import: google.appengi...
Riojas asked 25/7, 2011 at 14:24
3
Solved
I'm using the following to download all instances of one of my kinds:
appcfg.py download_data --config_file=bulkloader.yaml --kind=ModelName --filename=ModelName.csv --url=http://appid.appspot.com...
Waistband asked 18/11, 2010 at 16:35
1
Solved
I'm currently using the --kind parameter to specify which kind to download and the --filename to specify the name of the csv file to produce. The --rps_limit, --bandwidth_limit and --batch_size are...
Johnny asked 15/5, 2011 at 14:15
1
Solved
Bulkloader raises the following error when importing a CSV file with large cells:
[ERROR ] Error in data source thread: field larger than field limit (131072)
This is a common problem for the cs...
Millibar asked 12/5, 2011 at 4:39
2
Solved
My application uses Django non-rel. I don't have access to model.
I have my bulkloader.yaml file autogenerated by appcfg.py create_bulkloader_config.
Problem is entities numeric ID's are being ...
Twocycle asked 27/6, 2010 at 23:26
2
Solved
The docs say
appcfg.py --dump --app_id=<app-id> \
--url=http://<appname>.appspot.com/remote_api \
--filename=<data-filename>
The thing itself barfs:
Usage: appcfg.py [option...
Nittygritty asked 31/5, 2010 at 23:2
1
© 2022 - 2024 — McMap. All rights reserved.