Cristian I.
Cristian I.
**Reason for the change** https://github.com/rethinkdb/rethinkdb-python/issues/249 **Description** Implemented feature in rethindkb-export and rethinkdb-import scripts: a new export format jsongz - gzipped json. On export side, there is a new jsongz writer...
**Is your feature request related to a problem? Please describe.** Dumping large databases / tables involves writing very large files to the disk, is expensive in terms of disk io....
Was there any particular reason for not capturing exceptions?
If I add `query_timeout` to the example: ```js const pg = require('pg') var pool = new pg.Pool({ query_timeout: 10000, }) const QueryStream = require('pg-query-stream') const JSONStream = require('JSONStream') //pipe 1,000,000...
The `service.stop` implementation removes all the listeners from the connection here https://github.com/kibae/pg-logical-replication/blob/main/src/logical-replication-service.ts#L80 which prevents the subscribe query promise from completing (rejecting) when the service is stopped and underlying connection is...