Be sure you have postgres up and running and change the connection string in pgcopy.js
.
Run test.sql
to create the table.
$ npm install [email protected]
With the changes introduced in brianc/node-pg-copy-streams#44:
$ npm install [email protected]
$ # or install v1.1.2 through github since it was not published to npmjs
$ # npm install git+ssh://[email protected]/brianc/node-pg-copy-streams#v1.1.2
$ node pgcopy.js
fileStream finished
connected 192.168.99.100
pgStream ended
fileStream ended
pgStream ended
fileStream ended
Without the changes introduced in brianc/node-pg-copy-streams#44:
$ npm install [email protected]
$ node pgcopy.js
fileStream finished
connected 192.168.99.100
pgStream ended
fileStream ended
I've observed that the streams are being ended multiple times and also that the read stream is not being finished with the changes introduced in brianc/node-pg-copy-streams#44.
The changes proposed in brianc/node-pg-copy-streams#54 fixes this issue.
$ npm install git+ssh://[email protected]/jeromew/node-pg-copy-streams#upstream-end
$ node pgcopy.js
fileStream finished
connected 192.168.99.100
pgStream ended
fileStream ended