33 lines
730 B
Bash
33 lines
730 B
Bash
{
|
|
/* the Wikidata JSON file */
|
|
"file": "./wikidata-dump.json",
|
|
|
|
/* neo4j connection details */
|
|
"neo4j": {
|
|
/* bolt protocol URI */
|
|
"bolt": "bolt://localhost",
|
|
"auth": {
|
|
"user": "neo4j",
|
|
"pass": "password"
|
|
}
|
|
},
|
|
/* Stages */
|
|
"do": {
|
|
/* database cleanup */
|
|
"0": true,
|
|
/* importing items and properties */
|
|
"1": true,
|
|
/* linking entities and generating claims */
|
|
"2": true
|
|
},
|
|
/* extra console output on stage 2 */
|
|
"verbose": false,
|
|
/* how many commands will be ran by the DB at a given time */
|
|
"concurrency": 4,
|
|
/* skip lines */
|
|
"skip": 0,
|
|
/* count of lines */
|
|
"lines": 21225524,
|
|
/* bucket size of entities sent to DB to process */
|
|
"bucket": 1000
|
|
} |