* Fixes based on tests and some improvements * Fix the issues after running stress tests * Fixing checkstyle issues and updating README Co-authored-by: Rajesh Mahindra <rmahindra@Rajeshs-MacBook-Pro.local> Co-authored-by: Vinoth Chandar <vinoth@apache.org>
19 lines
815 B
JSON
19 lines
815 B
JSON
{
|
|
"name": "hudi-sink",
|
|
"config": {
|
|
"bootstrap.servers": "localhost:9092",
|
|
"connector.class": "org.apache.hudi.connect.HoodieSinkConnector",
|
|
"tasks.max": "4",
|
|
"key.converter": "org.apache.kafka.connect.storage.StringConverter",
|
|
"value.converter": "org.apache.kafka.connect.storage.StringConverter",
|
|
"value.converter.schemas.enable": "false",
|
|
"topics": "hudi-test-topic",
|
|
"hoodie.table.name": "hudi-test-topic",
|
|
"hoodie.base.path": "file:///tmp/hoodie/hudi-test-topic",
|
|
"hoodie.datasource.write.recordkey.field": "volume",
|
|
"hoodie.datasource.write.partitionpath.field": "date",
|
|
"hoodie.schemaprovider.class": "org.apache.hudi.schema.SchemaRegistryProvider",
|
|
"hoodie.deltastreamer.schemaprovider.registry.url": "http://localhost:8081/subjects/hudi-test-topic/versions/latest"
|
|
}
|
|
}
|