Questions tagged [bulkloader]

167 questions
0
votes
1 answer

Bulkloader: How to define the transform.create_foreign_key() as int?

In my app, when I create a User object, the id is integer. (id=23001) - kind: User connector: csv connector_options: # TODO: Add connector options here--these are specific to each connector. property_map: - property: __key__ …
Houman
  • 64,245
  • 87
  • 278
  • 460
0
votes
1 answer

GAE bulkloader csv delimiter error

I have a file in the following format name- stuffinside -description name- stuffinside -description "ame- stuffinside -description and I have the following bit as my bulkloader code: t ransformers: - kind: storeItem connector: csv…
0
votes
1 answer

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 sdk and relative google appengine launcher. I run…
mary
  • 305
  • 3
  • 12
0
votes
1 answer

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 --namespace=mynamespace it worked, and I can download it…
Chung
  • 947
  • 1
  • 12
  • 22
0
votes
1 answer

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 "ID". I have tried various configurations of the…
slashdottir
  • 7,835
  • 7
  • 55
  • 71
0
votes
1 answer

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 "something" part only. I was trying out many things,…
nivanka
  • 1,352
  • 6
  • 23
  • 36
0
votes
1 answer

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); And BufferedReader to read the written file. The Csv…
Sanchit
  • 428
  • 1
  • 5
  • 24
0
votes
1 answer

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", {id:"mouseSimge"}); yukleyici.add("para_ikon.png",…
mhmtemnacr
  • 185
  • 3
  • 18
0
votes
0 answers

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 req:URLRequest = new…
mhmtemnacr
  • 185
  • 3
  • 18
0
votes
1 answer

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 bulkload.yaml file? transformers: - kind: Client …
Charles
  • 580
  • 5
  • 16
0
votes
2 answers

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 timestamp >= date('2012-01-01') AND timestamp <=…
citronic
  • 9,868
  • 14
  • 51
  • 74
0
votes
1 answer

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 there anyway I can tell what the current version…
Ahmed Nuaman
  • 12,662
  • 15
  • 55
  • 87
0
votes
1 answer

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 there is a superseding order,…
Ahmed Nuaman
  • 12,662
  • 15
  • 55
  • 87
0
votes
1 answer

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 bulkloader.yaml, I don't know how to import the value. This is…
Rodrigo
  • 11
  • 2
0
votes
1 answer

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 (not in flex4 application path) from my flex4…
dejjub-AIS
  • 1,501
  • 2
  • 24
  • 50
1 2 3
11
12