A data loader for TurbineDB written in Clojure.
Compile
$ lein compile
Run
$ lein run <conf.json> <optional input file>
Package (Create Jar)
$ lein uberjar
Provides two alternate modes
Input file (Loads data via input file)
$ java -jar data-loader.jar <conf.json> <input.json>
Stdin (Loads data via standard in
$ java -jar data-loader.jar <conf.json>)
{
"turbine-base": "http://localhost:8080",
"database": "mydb",
"collection": "mycoll"
}
All input (via file or stdin) is a list of json events delimited by a newline '\n'
This project is Copyright (c) 2015 SPARC and open sourced under the MIT License.