Created
July 1, 2020 09:55
-
-
Save s-chb/3d3d1fe728b52eadb3fa79c68e3223a6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
CREATE SOURCE CONNECTOR JsonSpoolDir WITH ( | |
'tasks.max' = '1', | |
'connector.class' = 'com.github.jcustenborder.kafka.connect.spooldir.SpoolDirJsonSourceConnector', | |
'input.path' = '/tmp/data', | |
'input.file.pattern' = 'json-spooldir-source.json', | |
'error.path' = '/tmp/error', | |
'finished.path' = '/tmp/finished', | |
'halt.on.error' = 'false', | |
'topic' = 'spooldir-json-topic', | |
'schema.generation.enabled' = 'true' | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment