-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve vespa connector resilience and logging (#7)
* Update documentation * Update vespa feed client version * Update connector * Downgrade vespa client version * Update readme examples
- Loading branch information
1 parent
0768647
commit 8155214
Showing
16 changed files
with
148 additions
and
81 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"config": { | ||
"name": "VespaSinkConnector1", | ||
"connector.class": "com.vinted.kafka.connect.vespa.VespaSinkConnector", | ||
"tasks.max": "1", | ||
"topics": "music", | ||
"key.converter": "org.apache.kafka.connect.storage.StringConverter", | ||
"value.converter": "org.apache.kafka.connect.storage.StringConverter", | ||
"vespa.url": "http://vespa:8080/", | ||
"vespa.namespace": "default", | ||
"vespa.document.type": "music", | ||
"vespa.dryrun": "false", | ||
"vespa.drop.invalid.message": "true", | ||
"vespa.behavior.on.malformed.documents": "WARN", | ||
"errors.tolerance": "all", | ||
"errors.log.enable": "true", | ||
"errors.log.include.messages": "true", | ||
"errors.deadletterqueue.topic.name": "dlq", | ||
"errors.deadletterqueue.topic.replication.factor": 1, | ||
"errors.deadletterqueue.context.headers.enable": "true" | ||
} | ||
} |
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,12 @@ | ||
{ | ||
"config": { | ||
"name": "VespaSinkConnector1", | ||
"connector.class": "com.vinted.kafka.connect.vespa.VespaSinkConnector", | ||
"tasks.max": "1", | ||
"topics": "music", | ||
"key.converter": "org.apache.kafka.connect.storage.StringConverter", | ||
"value.converter": "org.apache.kafka.connect.storage.StringConverter", | ||
"vespa.url": "http://vespa:8080/", | ||
"vespa.operational.mode": "raw" | ||
} | ||
} |
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,12 @@ | ||
{ | ||
"config": { | ||
"name": "VespaSinkConnector1", | ||
"connector.class": "com.vinted.kafka.connect.vespa.VespaSinkConnector", | ||
"tasks.max": "1", | ||
"topics": "music", | ||
"key.converter": "org.apache.kafka.connect.storage.StringConverter", | ||
"value.converter": "org.apache.kafka.connect.storage.StringConverter", | ||
"vespa.url": "http://vespa:8080/", | ||
"vespa.namespace": "default" | ||
} | ||
} |
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
Oops, something went wrong.