Skip to content

Commit

Permalink
Merge pull request #3 from Trendyol/feature/go-pq-cdc-v0.0.10
Browse files Browse the repository at this point in the history
feat: bump go-pq-cdc to v0.0.10
  • Loading branch information
3n0ugh authored Jan 29, 2025
2 parents 69a21a7 + 0c640b6 commit 519ade0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ This setup ensures continuous data synchronization and minimal downtime in captu
| `cdc.publication.tables` | []Table | yes | - | Set tables which are tracked by data change capture | Define multiple tables as needed. |
| `cdc.publication.tables[i].name` | string | yes | - | Set the data change captured table name | Must be a valid table name in the specified database. |
| `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. |
| `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. |
| `cdc.slot.createIfNotExists` | bool | no | - | Create replication slot if not exists. Otherwise, return `replication slot is not exists` error. | |
| `cdc.slot.name` | string | yes | - | Set the logical replication slot name | Should be unique and descriptive. |
| `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). |
Expand Down
2 changes: 1 addition & 1 deletion example/simple/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.22.5
replace github.com/Trendyol/go-pq-cdc-elasticsearch => ../..

require (
github.com/Trendyol/go-pq-cdc v0.0.9
github.com/Trendyol/go-pq-cdc v0.0.10
github.com/Trendyol/go-pq-cdc-elasticsearch v0.0.0-20240628144743-a0f06e9b6d86
)

Expand Down
4 changes: 2 additions & 2 deletions example/simple/go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/Trendyol/go-pq-cdc v0.0.9 h1:lRADk9tJ7iFlTrVxxyQQT3oMKv4M5ib8+b1hIH7Xndw=
github.com/Trendyol/go-pq-cdc v0.0.9/go.mod h1:RIooS3DPOWkXxq7nhrOuGgkD4x3ondWEYOrOEHAHnxc=
github.com/Trendyol/go-pq-cdc v0.0.10 h1:JeDYAK5d+KATG8hkWVvwYaIRfnUZSpTVfQDhfwWzdO0=
github.com/Trendyol/go-pq-cdc v0.0.10/go.mod h1:RIooS3DPOWkXxq7nhrOuGgkD4x3ondWEYOrOEHAHnxc=
github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M=
github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY=
github.com/avast/retry-go/v4 v4.6.0 h1:K9xNA+KeB8HHc2aWFuLb25Offp+0iVRXEvFx8IinRJA=
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/Trendyol/go-pq-cdc-elasticsearch
go 1.22.5

require (
github.com/Trendyol/go-pq-cdc v0.0.9
github.com/Trendyol/go-pq-cdc v0.0.10
github.com/elastic/go-elasticsearch/v7 v7.17.10
github.com/go-playground/errors v3.3.0+incompatible
github.com/json-iterator/go v1.1.12
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/Trendyol/go-pq-cdc v0.0.9 h1:lRADk9tJ7iFlTrVxxyQQT3oMKv4M5ib8+b1hIH7Xndw=
github.com/Trendyol/go-pq-cdc v0.0.9/go.mod h1:RIooS3DPOWkXxq7nhrOuGgkD4x3ondWEYOrOEHAHnxc=
github.com/Trendyol/go-pq-cdc v0.0.10 h1:JeDYAK5d+KATG8hkWVvwYaIRfnUZSpTVfQDhfwWzdO0=
github.com/Trendyol/go-pq-cdc v0.0.10/go.mod h1:RIooS3DPOWkXxq7nhrOuGgkD4x3ondWEYOrOEHAHnxc=
github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M=
github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY=
github.com/avast/retry-go/v4 v4.6.0 h1:K9xNA+KeB8HHc2aWFuLb25Offp+0iVRXEvFx8IinRJA=
Expand Down

0 comments on commit 519ade0

Please sign in to comment.