Kibae Shin

Results 34 comments of Kibae Shin

Oh, I'll take a look. Thanks @lzkill 😀

Hi, @scythargon :) Because the data transmitted from the server is passed through without modification, the oldKeys field is included in the response. However, it is missing from the TypeScript...

@scythargon I've published version 2.0.6 of the npm package with only minor changes. Unfortunately, I was not able to define the type as a union type based on the values...

https://github.com/kibae/pg-logical-replication/blob/15930f2a2953e84ee1d71dee8449833ebb917162/src/output-plugins/wal2json/wal2json-plugin-output.type.ts#L26-L28 In TypeScript, there is a feature called union type. You can define a type such that the oldKeys value exists only when the kind of Change is either 'update'...

Hello, guys :) I have understood your question while writing the relevant test code. You can find it here: https://github.com/kibae/pg-logical-replication/commit/c5dbda3088443c8ad1dcd225386f76aebf1ab68b#diff-746957515044ada07b4076effa099157208566b32c2a0bdcf581fd8255f434c1 ``` const service = new LogicalReplicationService(config, { acknowledge: { auto:...

```sql SELECT * FROM pg_create_logical_replication_slot('slot_a', 'test_decoding') ``` From this point, PostgreSQL begins to save changes in the WAL, which includes an ID called the LSN for each storage point. As...

Hello, @cyrilchapon 😃 Obviously wal2json has the advantage of handling transactions as a block. However, wal2json is very slow or doesn't work well when a large number of records change....

Hi :) Testing is performed using a dedicated Docker image. Try launching a Docker container using the file `infra/docker-pg-logical-replication/docker-compose.yml`. (You can change port number or remove `POSTGRES_PORT` from command. Test...

Hi, @gzxy-0102 I would like to know the following information to troubleshoot the problem. - What is the size of your numpy array? - Which protocol did you use, HTTP/HTTPS...

@gzxy-0102 There was a payload size limit for HTTP/HTTPS requests. I resolved this issue by adding the `--request-payload-limit` option. It can also be set using the environment variable `ONNX_SERVER_REQUEST_PAYLOAD_LIMIT`. The...