-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup of configuration documentation.
- Loading branch information
1 parent
ac8c4e4
commit cb67558
Showing
3 changed files
with
50 additions
and
3 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
12 changes: 12 additions & 0 deletions
12
...urces/com/github/jcustenborder/kafka/connect/spooldir/SpoolDirCsvSourceConnector/tsv.json
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 @@ | ||
{ | ||
"name": "TSV", | ||
"description": "This example will read a TSV", | ||
"config": { | ||
"finished.path": "/tmp", | ||
"input.path": "/tmp", | ||
"error.path": "/tmp", | ||
"input.file.pattern": "^users\\d+\\.tsv", | ||
"topic": "users", | ||
"csv.separator.char": 11 | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...ces/com/github/jcustenborder/kafka/connect/spooldir/SpoolDirJsonSourceConnector/test.json
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,11 @@ | ||
{ | ||
"name":"Json", | ||
"description":"This example will read json from the input directory.", | ||
"config":{ | ||
"finished.path": "/tmp", | ||
"input.path": "/tmp", | ||
"error.path": "/tmp", | ||
"input.file.pattern":"^users\\d+\\.json$", | ||
"topic":"users" | ||
} | ||
} |