Last active
July 1, 2020 10:28
-
-
Save s-chb/24a2e32c1b60e3aa915442b43394a87d 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 CSVSpoolDir WITH ( | |
| 'connector.class' = 'com.github.jcustenborder.kafka.connect.spooldir.SpoolDirCsvSourceConnector', | |
| 'finished.path' = '/tmp/finished', | |
| 'input.path' = '/tmp/data', | |
| 'error.path' = '/tmp/error', | |
| 'input.file.pattern' = 'csv-spooldir-source.csv', | |
| 'topic' = 'spooldir-csv-topic', | |
| 'schema.generation.enabled' = 'true' | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment