How to upload data to a local data warehouse?

I can update the current data store using the remote API, but is there something similar for a local data store? My data is in CSV format.

When I try to connect locally using below code

String username = "test"; String password = "test"; RemoteApiOptions options = new RemoteApiOptions().server("localhost", 8888).credentials(username, password); RemoteApiInstaller installer = new RemoteApiInstaller(); installer.install(options); 

I get an exception:

Exception in thread "main" java.net.UnknownHostException: http

An exception is thrown in the line:

installer.install (options);

The local server is working, am I connecting correctly? Do I need to run the local remote_api server separately?

0
source share
1 answer

I finally got this to work through a lot of searching. Dev url / password - XXXX / XXXX

Taken from here: https://groups.google.com/forum/?fromgroups=#!topic/google-appengine-java/1cQWn0UEoMc

I was unable to find this anywhere in the Google engine documentation document.

+1
source

Source: https://habr.com/ru/post/1309544/


All Articles