-
Notifications
You must be signed in to change notification settings - Fork 434
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GEOMESA-3326 Ingest from stdin with converter inference (#3036)
* Cache the bytes from the stdin input stream, allowing re-use of the stream for type inference * Fix lat/lon column order in test data * Add ThreadLocal hook for testing stdin * Add srcList logic to convert command Co-authored-by: Emilio Lahr-Vivaz <[email protected]>
- Loading branch information
1 parent
e4a88cd
commit 41b3197
Showing
14 changed files
with
296 additions
and
112 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
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
2 changes: 1 addition & 1 deletion
2
geomesa-accumulo/geomesa-accumulo-tools/src/test/resources/examples/example1.csv
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,4 +1,4 @@ | ||
ID,Name,Age,LastSeen,Friends,Lat,Lon | ||
ID,Name,Age,LastSeen,Friends,Lon,Lat | ||
23623,Harry,20,2015-05-06,"Will, Mark, Suzan",-100.236523,23 | ||
26236,Hermione,25,2015-06-07,"Edward, Bill, Harry",40.232,-53.2356 | ||
3233,Severus,30,2015-10-23,"Tom, Riddle, Voldemort",3,-62.23 |
2 changes: 1 addition & 1 deletion
2
geomesa-accumulo/geomesa-accumulo-tools/src/test/resources/examples/example2.csv
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,3 +1,3 @@ | ||
ID,Name,Age,LastSeen,Friends,Lat,Lon | ||
ID,Name,Age,LastSeen,Friends,Lon,Lat | ||
33623,Ron,20,2015-05-06,"Will, Mark, Suzan",-100.236523,23 | ||
36236,Ginny,25,2015-06-07,"Edward, Bill, Harry",40.232,-53.2356 |
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
Oops, something went wrong.