-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug fix: repeating term field caused invalid command
- Loading branch information
jeffreyvanhelden
committed
May 30, 2020
1 parent
f21688c
commit 025dde0
Showing
12 changed files
with
92 additions
and
86 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
{ | ||
"name": "tile", | ||
"name": "foo-avro-sink", | ||
"config": { | ||
"tasks.max": "1", | ||
"connector.class": "guru.bonacci.kafka.connect.tile38.Tile38SinkConnector", | ||
"topics": "test", | ||
"topics": "foo", | ||
|
||
"key.converter": "org.apache.kafka.connect.storage.StringConverter", | ||
"value.converter": "io.confluent.connect.avro.AvroConverter", | ||
"value.converter.schema.registry.url": "http://schema-registry:8081", | ||
|
||
"tile38.topic.test": "test event.id FIELD route event.route POINT event.lat event.lon", | ||
"tile38.topic.foo": "foo event.bar POINT event.bar1 event.bar2", | ||
|
||
"tile38.host": "tile38", | ||
"tile38.port": 9851, | ||
|
||
"tasks.max": "1" | ||
"tile38.port": 9851 | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,50 @@ | ||
{ | ||
"namespace": "demo", | ||
"name": "foo", | ||
"type": "record", | ||
"fields": [ | ||
{ | ||
"name": "bar", | ||
"type": { | ||
"type": "string", | ||
"arg.properties": { | ||
"options": [ | ||
"one", | ||
"two", | ||
"three" | ||
] | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "bar1", | ||
"type": { | ||
"type": "double", | ||
"arg.properties": { | ||
"options": [ | ||
12.34, | ||
23.45, | ||
34.56, | ||
45.67, | ||
56.78 | ||
] | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "bar2", | ||
"type": { | ||
"type": "double", | ||
"arg.properties": { | ||
"options": [ | ||
-98.76, | ||
-87.65, | ||
-76.54, | ||
-65.43, | ||
-54.32 | ||
] | ||
} | ||
} | ||
} | ||
] | ||
} |
File renamed without changes.
File renamed without changes.
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