Bulk upload data to data warehouse for GAE Java project

I would like to populate a data warehouse. However, all examples and instructions for filling the data warehouse are related to Python projects. Is there a way to load bulk data using 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 this could be done in the Eclipse IDE.

Thanks.

+6
java google-app-engine
source share
1 answer

I have the same problem as you have with this. According to the discussion on http://groups.google.com/group/google-appengine-java/browse_thread/thread/72f58c28433cac26 for Java there is no equivalent tool yet. However, it seems that nothing prevents you from using the Python tool to simply populate the data store and then access this data, as usual, through Java code, although this suggests that you are comfortable with Python, which could be a problem.

+4
source share

All Articles