The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
12 views

Cassandra Enable compression during SSTable generation from huge CSV data files

I am facing some issues regarding disk space consumption while generating SSTables from CSV data files with billion+ rows and 8 columns. I am using the bulk loading techniques provided at ...
2
votes
1answer
68 views

Bulk Download via Google App Engine Backend

I have 1.6 Million entities in a Google App Engine app that I would like to download. I tried using the built in bulkloader mechanism but found that it is terribly slow. While I can only download ~30 ...
0
votes
2answers
36 views

Actionscript 3 Read Response Content-Type

Is it possible to read the raw content-type of a web server response using the URLLoader class in Actionscript 3? We're receiving self descriping messages over http: HTTP/1.1 200 OK Cache-Control: ...
0
votes
1answer
43 views

Downloading google app engine database (java project)

I would download the google app engine datastore. I'm following several guides, but none of those helps me. My web.xml file is setted correctly for the use of remote_api. I have installed the python ...
0
votes
0answers
16 views

use bulkloader to download a Kind return strange character in csv file

I ran appcfg.py download_data --kind=<kind> --url=http://your_app_id.appspot.com/_ah/remote_api --filename=<data-filename> My Kind is all of english character, but when I open csv file, ...
0
votes
1answer
38 views

How to use oauth2 to dowload_data in bulkloader

I'm using builkloader in Python, my command like below: appcfg.py download_data --config_file=bulkloader.yaml --filename=all.csv --kind=all --url=http://myapp.appspot.com/remote_api ...
3
votes
2answers
213 views

Importing a dict to an App Engine ndb.JsonProperty with bulkloader

I'm using the bulkloader to upload data into my App Engine data storage. I can't seem to store a dictionary into a JsonProperty and I am getting the following error: BadValueError: Unsupported ...
0
votes
1answer
59 views

how to populate “ID” field in appengine when using bulkloader?

Updated: see below I have figured out how to get the Key Name field filled in for my dataset so that I have now reduced the write ops by 2 (down from 8). But I still have this extra empty column ...
0
votes
1answer
68 views

Special charaters in a CSV file to load in to a mysql database

I have a script which imports data from a CSV file to a mysql Database; the CSV has strings like this somethingcô-SOMETHING see the ô, now when i import this to the DB it only saves the ...
0
votes
1answer
105 views

Creation of Batches from CSV resulting in erroneous state

I'm trying to make batches from a CSV file written using CSVWriter of opencsv as: CSVWriter writer = new CSVWriter(new FileWriter(filePath+createFileName), ',', CSVWriter.DEFAULT_QUOTE_CHARACTER); ...
3
votes
1answer
112 views

How to upload a repeated property into ndb datastore with appcfg.py

I've been using appcfg.py to upload_data pretty successfully, but I'm not sure how to set up the import transform in bulkloader.yaml for repeated properties or how to structure the CSV. For example: ...
0
votes
1answer
52 views

My loader doesn't calls complete event in Actionscript 3

In my flash & actionscript app, Bulk-Loader doesn't dispatch complete event. My load elements: private var yukleyici:BulkLoader = new BulkLoader("yukleyicii"); yukleyici.add("mouse_simge.png", ...
0
votes
0answers
125 views

Loading Facebook profile image with Bulk-Loader

I have to load user's profile image in my flash Facebook app (iframe). But there is something unlikeable with loading it. My loading code is: var context1:LoaderContext = new LoaderContext(); var ...
-1
votes
1answer
55 views

How to config export property db.ListProperty(db.Key) in bulkloader

I started to export data from Google AppEngine with bulkLoader, configured in bulkloader.yaml. For "standard" data likes string, int and bool this is no problem. Even single keys are exported easily. ...
0
votes
1answer
143 views

Why do i get appcfg.sh: permission denied when i try to download my app from google app engine?

I am using google app engine with java. In my web.xml i added following code: <servlet> <servlet-name>RemoteApi</servlet-name> ...
0
votes
0answers
228 views

MySQL Bulk Loader - java.lang.ArrayIndexOutOfBoundsException: -1

Hi, I am using MySQL bulk loader to dump data from Amazon services to a local table on a linux server but every time I execute it fails at the MySQL bulk loader step saying MySQL Bulk Loader - ...
0
votes
0answers
159 views

Hbase bulk load error

I tried to use HBase bulk loading according the instruction on http://hbase.apache.org/book/arch.bulk.load.html My command is following: hbase org.apache.hadoop.hbase.mapreduce.ImportTsv ...
1
vote
2answers
111 views

bulkloader not importing ndb.model

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 to ...
1
vote
3answers
157 views

bulk loader appcfg.py

I am trying to dowload data using appcfg.py download_data --url=http://cayotkanawa.appspot.com/_ah/ remote_api --filename=datasave.csv But I get this. What I should do to get data? ...
0
votes
1answer
234 views

Bulk API errors: Upsert on Standard Salesforce Object

We're using Bulk Api to upsert records for both Custom and Standard Salesforce Objects. Its working fine for custom objects but when We're trying to perform Upsert operation on a Standard Salesforce ...
1
vote
0answers
31 views

Is it possible to use the bulkloader for incremental exports?

Is there a way to use the bulk loader incrementally? I'd like to export all entities of type X overnight, then a day later export any new entities that may have been created. (I was hopeful, ...
1
vote
1answer
184 views

How to load data from the online GAE datastore into the local development server?

I have previously used the approach described in GAE docs to download backups of my entities on the live datastore. Currently, I have a csv file per entity kind, that I got by writing bulkloader.yaml ...
4
votes
2answers
138 views

SQLXML BulkLoader not throwing any error but no data is inserted

I'm trying to use SQLXMLBulkLoader4 from C# code into an SQL 2008 DB. But for some reason it doesn't insert any rows at all despite not throwing any error. I've made use of the bulkloads own ErrorLog ...
0
votes
0answers
83 views

GAE/J Local datastore is empty after successful bulkloader data upload

I am trying to test my application using production data, to do this I've downloaded the whole datastore using appcfg.py not specifying any specific kind. I didn't use any connector, thus data loaded ...
1
vote
2answers
85 views

How can I use none_if_empty with create_deep_key?

I was looking at Where are the reference pages of the Google App Engine bulkloader transform? and figured out most of my bulkloader.yaml configuration with the exception of one case. One of my Kinds ...
0
votes
1answer
96 views

Upload data to datastore from a gzipped CSV file?

I have a very large gzip csv file (around 500GB) which I need to import in datastore using the bulk load tool. Is it possible without having to unzip it first? If yes how I have to configure my ...
0
votes
2answers
160 views

GQL Query Not Returning Results on StringProperty Query Test for Equality

class MyEntity(db.Model): timestamp = db.DateTimeProperty() title = db.StringProperty() number = db.FloatProperty() db.GqlQuery("SELECT * FROM MyEntity WHERE title = 'mystring' AND ...
1
vote
1answer
88 views

How to upload date with bulkloader?

I have the following code in bulkloader.yaml: - property: dismissal_date external_name: dismissal_date import_transform: "lambda x: None if x is None or x=='' else ...
0
votes
1answer
135 views

Google app engine bulkloader environment variables

I rely on python's os.environ to work out what configs my application should use (such as different API keys for different hosts). It seems that bulkloader doesn't have access to these variables, is ...
0
votes
0answers
112 views

Cassandra bulk loader hangs

I am trying to bulk load using the sstableloader. My files get loaded OK (I think – judging from the progress bar), but then I get this message and it just hangs indefinitely: Waiting for targets to ...
0
votes
1answer
79 views

Merge multiple columns in bulkloader

I'm using app engine's bulkloader to import a CSV file into my datastore. I've got a number of columns that I want to merge into one, for example they're all URLs, but not all of them are supplied and ...
2
votes
1answer
73 views

Uploading entity with parent using bulkloader

So, I am trying to create an entity with a parent using bulkloader. I have a Client entity: class Client(db.Model): identifier = db.StringProperty() www_ip = db.StringProperty() ...
0
votes
0answers
477 views

AS3 flv resume not working after pause

I have been working on a player for a while, and am having a problem playing flv videos. Specifically, Resuming play after having paused the video. Basically, my problem is this, after the video is ...
1
vote
0answers
76 views

Google App Engine : Bulkuploader : int64 too big error

i am getting this error while uploading data to datastore using bulkuploader. Data used to be uploaded fine with the previous csv file. the new csv file has an extrafield that contains a list of ...
0
votes
0answers
60 views

GAE bulk loader with db.ReferenceProperty

I'm using the bulkloader.yaml to upload raw company data into the Datastore. One of those fields is actually a reference. I shall include the models below. My question is therefore in the raw data ...
0
votes
1answer
62 views

Datastore is putting a different ID value when importing from csv file

I am importing data from csv file to datastore using appcfg.py My problem is that the ID value inserted in datastore is different from the value in csv file. I think the error is in the ...
1
vote
1answer
195 views

How to configure bulkloader.yaml to upload data from csv to datastore

I'm trying to upload a csv file to datastore using appcfg.py. The command I'm using is this: appcfg.py upload_data --application=s~hay-fe --kind=CasillaFinal --filename=CasillaFinal.csv ...
0
votes
1answer
167 views

Flex 4 with PHP and BulkLoader - Assets getting deleted

Has anyone ever encountered a situation where your assets (image png files) got deleted from your web path? Let me explain it little more clearly. I am loading some images located in my localhost ...
0
votes
1answer
47 views

Google AppEngine Datastore Bulkloader behind http proxy

Is it possible to configure a http proxy (host and credentials) to be used by the bulkloader?
1
vote
1answer
208 views

AS3: Handle BulkLoader.COMPLETE event on AS3 Preloader

I am trying to use BulkLoader (https://github.com/arthur-debert/BulkLoader) to preload all assets of my AS3/Flex application. Right now it is working and I am able to access the contents everywhere on ...
1
vote
2answers
379 views

Google App Engine Bulkloader appcfg.py download_data vs. Datastore Backup Entities Button

I am currently looking for the best way to backup my Google App Engine's webapp datastore. From the reading I have been doing it seems like there are two different ways I can do this. I can either use ...
0
votes
1answer
122 views

Uploading data into a new application using bulkloader.yaml

I have a simple application which uses a database of products. I created the app and there are no entities with the kind "Product" as it is a new db. Following the guidelines for uploading data, I ...
4
votes
1answer
8k 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 ...
3
votes
2answers
1k 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. ...
0
votes
1answer
108 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, ...
1
vote
2answers
1k 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 ...
0
votes
1answer
64 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
154 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: ...
1
vote
1answer
136 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: - ...
20
votes
4answers
1k 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 ...

1 2 3