1.0.2 • Published 9 years ago
postgres-import-json v1.0.2
#postgres-import-json This tools doesn't reinvent the wheel! It stands on giants shoulders.
The main goal of this Node.js tool is to import multiple JSON data files into a Postgres table by leveraging psql and copy native utilities, so then the data, can be later processed and ingested by running Postgres operations at the table level. Hence, there's no need to reinvent the wheel by running individual operations at the record level.
You can run this tool in two methods. Method 1: Clone this repo and run Node.js tool or Method 2: install this tool with NPM
$ node ./bin/postgres-import-json.js --help
Usage: postgres-import-json [options]
import json all JSON files into a postgres table with a JSON column
Options:
-h, --help output usage information
-V, --version output the version number
-f, --files [filePath] JSON files location e.g. ../tmp/data/*.json
-d, --database [database] Postgres database e.g. postgres
-t, --table [table] Postgres table e.g. public.apiproxyhistory
-h, --host [host] Postgres host
-u, --username [uri] Postgres username
-p, --port [port] Postgres port
Method 1: Install it
$ npm install postgres-import-json -g
/usr/local/bin/postgres-import-json -> /usr/local/lib/node_modules/postgres-import-json/bin/postgres-import-json.js
Run it
$ postgres-import-json -f '../api-deployment-collector/tmp/data/*.json' -d postgres -t public.apiproxyhistory -h localhost -u diegozuluaga -p 5432
you executed a import-json import with:
../api-deployment-collector/tmp/data/*.json - files
postgres - database
localhost - host
diegozuluaga - username
5432 - port
importing file: ../api-deployment-collector/tmp/data/test-9-8-2015.json
COPY 21
importing file: ../api-deployment-collector/tmp/data/test2-poc-9-8-2015.json
COPY 213
importing file: ../api-deployment-collector/tmp/data/test3-9-8-2015.json
Method 2: Run from the repo
clone this repo
node ./bin/postgres-import-json.js -f '../api-deployment-collector/tmp/data/abercrombie-9-8-2015.json' -d postgres -t public.apiproxyhistory -h localhost -u diegozuluaga -p 5432