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?
source share