The bulkloader tag has no wiki summary.
19
votes
3answers
569 views
Hilbert sort by divide and conquer algorithm?
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 ...
6
votes
0answers
395 views
Java Google App Engine bulk loader download warning “No descending index on __key__, performing serial download” [closed]
Possible Duplicate:
App engine bulk loader download warning "No descending index on key, performing serial download"
My post is very similar to: App engine bulk loader download ...
5
votes
2answers
184 views
Can MySqlBulkLoader be used with a transaction?
Can MySqlBulkLoader be used with a transaction? I don't see a way to explicitly attach a transaction to an instance of the loader. Is there another way?
5
votes
1answer
538 views
App Engine Bulk Loader Performance
I am using the App Engine Bulk loader (Python Runtime) to bulk upload entities to the data store. The data that i am uploading is stored in a proprietary format, so i have implemented by own connector ...
5
votes
3answers
715 views
Google app engine bulkloader problem when using yaml autogenerated configuration and enities with numeric ID
QUESTION
Please be kind I'm new to pytnon and appengine platform.
Application uses django-norel, and I dont have access to model (and really I'm not that python proficient to backtrace how models ...
3
votes
1answer
268 views
Errors during downloading data from Google App Engine using bulkloader
I am trying to download some data from the datastore using the following
command:
appcfg.py download_data --config_file=bulkloader.yaml --application=myappname
...
2
votes
2answers
85 views
Clone movieclip in ActionScript3
I'm using BulkLoader to load MovieClips and Bitmaps into my AS3 app. Bitmaps are easy to clone, but I have some problems with complicated MovieClips, which has many children, buttons, symbols, etc.
...
2
votes
1answer
84 views
How can I speed up the App Engine bulk downloader?
I'm trying to use the App Engine bulkloader to download entities from the datastore (the high-replication one if it matters). It works, but it's quite slow (85KB/s). Are there some magical set of ...
2
votes
1answer
122 views
Which credentials should I put in for Google App Engine BulkLoader at JAVA development server?
I can't upload data to my GAE Java dev serwer. Bulkloader asks for a password, but no password matches:
D:\python_google_appengine>appcfg.py upload_data --config_file=bulkloader.yaml ...
2
votes
1answer
449 views
Appengine BulkLoader problem using development server
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: app ...
2
votes
3answers
147 views
CPU Time needed to bulk upload 2 GB database?
I hired a programmer to port my web site -- originally implemented using Django and MySQL -- over to Google App Engine. The database for the original web app is about 2 GB in size, and the largest ...
2
votes
1answer
234 views
Issue with Interop.SQLXMLBULKLOADLib.dll
I converted an old dts package into SSIS package and trying to run it Windows 2008 server. This SSIS package runs an Win32 exe file which is using Interop.SQLXMLBULKLOADLib.dll and trying to load some ...
2
votes
1answer
202 views
Java Google App Engine bulk loader upload error “OverflowError: date value out of range”
I'm using the bulk loader to download my Review kind from one GAE server and upload to another GAE server. This Review kind contains about 30,000 entities.
I use the command to upload:
appcfg.py ...
2
votes
1answer
284 views
How to upload data with key_name by Google App Engine bulkloader
I can upload data, but key_name is empty.
How can I use the 'id' in the CSV as the key_name on datastore?
I'like to use 'id' as the key_name, because other data uses the 'id' as the foreign key.
I'm ...
2
votes
3answers
190 views
Uploading data with bulkloader
In short: how can I configure bulkloader to insert data into 2 models with references?
I have a person and fruit class, with person linking to fruit:
class Fruit(db.Model):
name = ...
2
votes
2answers
751 views
How can I use bulkuploader to populate class with a db.SelfReferenceProperty?
I've got a class that is using db.SelfReferenceProperty to create a tree-like structure.
When trying to populate the database using appcfg.py upload_data -- config_file=bulkloader.yaml --kind=Group ...
2
votes
2answers
376 views
How can I use the Google App engine bulkloader to back up all my data?
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 [options] ...
1
vote
1answer
170 views
AttributeError: 'module' object has no attribute 'strptime' — Possible Bug?
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 ...
1
vote
2answers
127 views
Saleforce Bulk upload Error using Apex Data loader: Storage limited exceeded
When i try to bulk upload 25,000 records of a custom (employee) object i get errors stating "storage limits exceeded".
I have ensured that there are no employee objects in salesforce (using data ...
1
vote
1answer
51 views
appengine import_transform custom value
From what I could figure out, it is not very easy to assign default values to properties in the bulkloader.yaml file. I learned that one way to set default values is to write your own function:
- ...
1
vote
1answer
41 views
Google AppEngine Bulkloader High Replication Data Delay
In the AppEngine Bulkloader Documentation, they state "If you attempt to copy from a High Replication datastore, you'll see a high_replication_warning error in the Admin Console, and the downloaded ...
1
vote
1answer
49 views
AppEngine bulkloader export Model with self-defined Property
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 = ...
1
vote
1answer
187 views
BadRequestError while uploading data using bulk loader
Hello I have created sample Greeting application in Google app engine.
Now I am trying to upload data using bulk loader.
But its giving BadRequestError.This is the code for that:
...
1
vote
2answers
93 views
Long (and failing) bulk data loads to Google App Engine datastore
I'm developing an application on Google App Engine using the current django non-rel and the now default, high replication datastore. I'm currently trying to bulk load a 180MB csv file locally on a ...
1
vote
0answers
83 views
How do I automate Google App Engine upload_data with --passin and subprocess.Popen?
Here is what I have:
process = subprocess.Popen(["cmd.exe",
"/c"
"appcfg.py",
"upload_data",
...
1
vote
1answer
168 views
Google appengine, Cannot fetch data from child model
My bulkloader.yaml looks like this:
- import: models
transformers:
- model: models.Company
connector: csv
connector_options:
encoding: utf_8
columns: from_header
property_map:
- ...
1
vote
2answers
106 views
Loading XML locally with AS3
I have a project in Flash Builder and I use Bulkloader to load some configuration files. When I run the project from Flash Builder or in a server, everything works as expected, but when I run the SWF ...
1
vote
3answers
117 views
Parent resides in datastore, assign children uploaded using CSV bulkloader
Presently I have a Team residing in the datastore:
team = Team.get_by_key_name('Plants')
And I have the following CSV file in my local computer:
name,level
Pea Shooter,1
Threepeater,3
...
1
vote
1answer
285 views
Where are the reference pages of the Google App Engine bulkloader transform?
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: ...
1
vote
1answer
40 views
Properly encoding text in the bulk uploader
What is the proper way to encode strings for the bulk uploader. It is currently bailing out when it runs into an apostrophe inside my text fields.
Here's a sample CSV file:
demo,name,message
...
1
vote
1answer
336 views
Using java google app engine bulkloader.yaml to upload data with export_transform on __key__ changes ID/NAME coloumn from id (long) to name (string)
I think my question is similar to: BulkLoader -export_transform OR GAE datastore export_transform
Basically, I'm using the bulkloader to backup and restore entities that I've created.
To test I'm ...
1
vote
1answer
452 views
Using Java Google App Engine bulkloader to download entire datastore to one csv file
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 ...
1
vote
2answers
425 views
as3 wait until image loaded on button click
I have a slideshow that loads image files with the BulkLoader class from here. When the first image is loaded completely, it gets added to a MovieClip container to add it to the stage.. and it gets ...
1
vote
2answers
194 views
(Google App Engine) Bulkloader upload generates new entries instead of updating existing ones
for my project I am using GAE datastore to store data. For backup
purpose I decided to use the bulkloader - which downloads the whole
data perfectly in a csv file. Also the upload uploads the data ...
1
vote
1answer
152 views
Using post_import_function in App Engine bulkuploader yaml
I'm trying to upload some data to my App Engine datastore using the bulkuploader. For one of my entity types, I have one property that is calculated from another, so I'd really like to do some ...
1
vote
1answer
161 views
AppEngine bulk loader and automatically created property values
In my model I have a property:
created = db.DateTimeProperty(required=True, auto_now_add=True)
When an object of this type is created in the datastore, the created property is automatically ...
1
vote
1answer
108 views
Starting, Stopping, and Continuing the Google App Engine BulkLoader
I have quite of bit of data that I will be uploading into Google App Engine. I want to use the bulkloader to help get it in there. However, I have so much data that I generally use up my CPU quota ...
1
vote
1answer
131 views
How to get property from ReferenceProperty class when downloading App Engine data using bulkloader?
I want to download my App Engine data so I can operate on it efficiently locally (I'm generating some PDFs based on it). How can I define that the column for a ReferenceProperty gets populated by a ...
1
vote
1answer
159 views
Generating a default value with the Google App Engine Bulkloader
I have successfully used the bulkloader with my project before, but I recently added a new field to timestamp when the record was modified. This new field is giving me trouble, though, because it's ...
1
vote
1answer
132 views
Server Error (Google Apps Engine) when executing custom bulkloader
I had not succeeded in using the bulkloader option that is officially provided, so i wrote my own bulkloader script (actually post handler that would incrementally load entities from csv into the ...
1
vote
3answers
347 views
App engine bulk loader download warning “No descending index on __key__, performing serial download”
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 ...
1
vote
1answer
257 views
Is is possible to re-export to CSV from a GAE bulkloader.py sqlite database?
I ran bulkloader with parameters to export my bigtable to a csv file, and it spent a lot of time downloading the table (it's large). It failed to export do to a problem with one of the lambda ...
0
votes
0answers
50 views
Showing swf animation while preloading stuff with bulkLoader in Flex3
I have Flex code similar to following:
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" initialize="preloadImages()">
<mx:XML id="preloaderItems" format="e4x" ...
0
votes
1answer
14 views
BulkLoader behaviour changing when loading from internet
I'm using BulkLoader to load in images, SWFs, XML, etc into a game.
When working local, the content property on the LoadingItem is always good depending on the type of asset: Bitmap if it's an image, ...
0
votes
0answers
27 views
Does Google App Engine Bulkloader Use Up the Datastore Write Quota? [closed]
I assume so, but any thoughts would be nice.
Thanks!
0
votes
1answer
34 views
app engine upload mechanisme for changed data, does it upload whole or delta?
I upload my_app to app engine app by:
appcfg.py update c:\my_app ...
If I already uploaded for my_app then done a minor changement in file,
Does it upload whole project to app engine and ...
0
votes
1answer
71 views
appengine import_transform two function at the same time: truncate & export_date_time
I have this datetime 2011-07-02 03:03:32.793
To deal with the millisecond issue with python 2.5 version(mentioned here), I try to truncate it & convert it date time as:
import_transform: ...
0
votes
1answer
38 views
What can I do to enhance the performance of bulk data loading using Derby?
I am using Derby In-Memory DB. I need to perform some data loading from csv files in the beginning. For now, it takes about 25 seconds to load all the csv files into their tables. I hope the time can ...
0
votes
1answer
65 views
Google app engine ignores my custom db property when I bulkload data?
The problem:
When I store the data with bulkloader the method DecimalProperty.get_value_for_datastore is never called so, when I store 5.4 in the datastore saves exactly like this: 5.4; This should ...
0
votes
1answer
104 views
Google App Engine BadValueError even after import_transform: db.Text
Attempting to import a TextProperty, similar to another Stack Overflow question ...