Skip to content

Commit 519ade0

Browse files
authored
Merge pull request #3 from Trendyol/feature/go-pq-cdc-v0.0.10
feat: bump go-pq-cdc to v0.0.10
2 parents 69a21a7 + 0c640b6 commit 519ade0

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ This setup ensures continuous data synchronization and minimal downtime in captu
158158
| `cdc.publication.tables` | []Table | yes | - | Set tables which are tracked by data change capture | Define multiple tables as needed. |
159159
| `cdc.publication.tables[i].name` | string | yes | - | Set the data change captured table name | Must be a valid table name in the specified database. |
160160
| `cdc.publication.tables[i].replicaIdentity` | string | yes | - | Set the data change captured table replica identity [`FULL`, `DEFAULT`] | **FULL:** Captures all columns of old row when a row is updated or deleted. <br> **DEFAULT:** Captures only the primary key of old row when a row is updated or deleted. |
161+
| `publication.tables[i].schema` | string | no | public | Set the data change captured table schema name | Must be a valid table name in the specified database. |
161162
| `cdc.slot.createIfNotExists` | bool | no | - | Create replication slot if not exists. Otherwise, return `replication slot is not exists` error. | |
162163
| `cdc.slot.name` | string | yes | - | Set the logical replication slot name | Should be unique and descriptive. |
163164
| `cdc.slot.slotActivityCheckerInterval` | int | yes | 1000 | Set the slot activity check interval time in milliseconds | Specify as an integer value in milliseconds (e.g., `1000` for 1 second). |

example/simple/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.22.5
55
replace github.com/Trendyol/go-pq-cdc-elasticsearch => ../..
66

77
require (
8-
github.com/Trendyol/go-pq-cdc v0.0.9
8+
github.com/Trendyol/go-pq-cdc v0.0.10
99
github.com/Trendyol/go-pq-cdc-elasticsearch v0.0.0-20240628144743-a0f06e9b6d86
1010
)
1111

example/simple/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/Trendyol/go-pq-cdc v0.0.9 h1:lRADk9tJ7iFlTrVxxyQQT3oMKv4M5ib8+b1hIH7Xndw=
2-
github.com/Trendyol/go-pq-cdc v0.0.9/go.mod h1:RIooS3DPOWkXxq7nhrOuGgkD4x3ondWEYOrOEHAHnxc=
1+
github.com/Trendyol/go-pq-cdc v0.0.10 h1:JeDYAK5d+KATG8hkWVvwYaIRfnUZSpTVfQDhfwWzdO0=
2+
github.com/Trendyol/go-pq-cdc v0.0.10/go.mod h1:RIooS3DPOWkXxq7nhrOuGgkD4x3ondWEYOrOEHAHnxc=
33
github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M=
44
github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY=
55
github.com/avast/retry-go/v4 v4.6.0 h1:K9xNA+KeB8HHc2aWFuLb25Offp+0iVRXEvFx8IinRJA=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/Trendyol/go-pq-cdc-elasticsearch
33
go 1.22.5
44

55
require (
6-
github.com/Trendyol/go-pq-cdc v0.0.9
6+
github.com/Trendyol/go-pq-cdc v0.0.10
77
github.com/elastic/go-elasticsearch/v7 v7.17.10
88
github.com/go-playground/errors v3.3.0+incompatible
99
github.com/json-iterator/go v1.1.12

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/Trendyol/go-pq-cdc v0.0.9 h1:lRADk9tJ7iFlTrVxxyQQT3oMKv4M5ib8+b1hIH7Xndw=
2-
github.com/Trendyol/go-pq-cdc v0.0.9/go.mod h1:RIooS3DPOWkXxq7nhrOuGgkD4x3ondWEYOrOEHAHnxc=
1+
github.com/Trendyol/go-pq-cdc v0.0.10 h1:JeDYAK5d+KATG8hkWVvwYaIRfnUZSpTVfQDhfwWzdO0=
2+
github.com/Trendyol/go-pq-cdc v0.0.10/go.mod h1:RIooS3DPOWkXxq7nhrOuGgkD4x3ondWEYOrOEHAHnxc=
33
github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M=
44
github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY=
55
github.com/avast/retry-go/v4 v4.6.0 h1:K9xNA+KeB8HHc2aWFuLb25Offp+0iVRXEvFx8IinRJA=

0 commit comments

Comments
 (0)