-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Connect create cluster command to include offsets (#2754)
- Loading branch information
Showing
14 changed files
with
207 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "az-connector", | ||
"config": { | ||
"name": "az-connector", | ||
"azblob.account.name": "azsink", | ||
"azblob.account.key": "key", | ||
"azblob.container.name": "azsink", | ||
"data.format": "JSON", | ||
"kafka.api.key": "key", | ||
"kafka.api.secret": "key", | ||
"tasks.max": "1", | ||
"time.interval": "HOURLY", | ||
"topics": "apples", | ||
"connector.class": "AzureBlobSink" | ||
}, | ||
"offsets": [ | ||
{ | ||
"partition": { | ||
"server": "dbzv2" | ||
}, | ||
"offset": { | ||
"event": 2, | ||
"file": "mysql-bin.000600", | ||
"pos": 2001, | ||
"row": 1, | ||
"server_id": 1, | ||
"transaction_id": null, | ||
"ts_sec": 1711788870 | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "az-connector", | ||
"config": { | ||
"name": "az-connector", | ||
"azblob.account.name": "azsink", | ||
"azblob.account.key": "key", | ||
"azblob.container.name": "azsink", | ||
"data.format": "JSON", | ||
"kafka.api.key": "key", | ||
"kafka.api.secret": "key", | ||
"tasks.max": "1", | ||
"time.interval": "HOURLY", | ||
"topics": "apples", | ||
"connector.class": "AzureBlobSink" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "az-connector", | ||
"azblob.account.name": "azsink", | ||
"azblob.account.key": "key", | ||
"azblob.container.name": "azsink", | ||
"data.format": "JSON", | ||
"kafka.api.key": "key", | ||
"kafka.api.secret": "key", | ||
"tasks.max": "1", | ||
"time.interval": "HOURLY", | ||
"topics": "apples", | ||
"connector.class": "AzureBlobSink" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Error: unable to read configuration file "test/fixtures/input/connect/update-config-malformed.json": offsets are not allowed in configuration file for `confluent connect cluster update` |