Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bulk upload data into data store for GAE Java project

I would like to populate the data store. Yet all the examples and instructions for populating the data store are concerned with Python projects. Is there a way to upload bulk data using the AppEngine Java tools? (At the moment the data is in CSV format, but I can easily reformat the data as needed.)

It would be especially useful if it could be done within the Eclipse IDE.

Thanks.

like image 943
Marc Butler Avatar asked Jul 26 '09 16:07

Marc Butler


1 Answers

I'm having the same problem as you with this one. According to the discussion at http://groups.google.com/group/google-appengine-java/browse_thread/thread/72f58c28433cac26 there's no equivalent tool available for Java yet. However it looks like there's nothing stopping you from using the Python tool to just populate the datastore and then accessing that data as normal through your Java code, although this assumes you're comfortable with Python, which could be the problem.

like image 67
Bryce Thomas Avatar answered Oct 06 '22 02:10

Bryce Thomas