-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Source File: Support JsonL format #2118
Conversation
/test connector=airbyte/source-file
|
("parquet", "parquet", 9, 3), | ||
("csv", "csv", 8, 5000, "demo"), | ||
("json", "json", 2, 1, "demo"), | ||
("ndjson", "ndjson", 2, 10, "ndjson_nested"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in destination-local-json
we are using .jsonl
extensions, is ndjson
standard way of referring to it? Should we harmonize in sources & destinations?
I am more familiar with |
/test connector=source-file
|
@ChristopheDuong @michel-tricot the two look basically the same https://jsonlines.org/ and http://ndjson.org/ (though happy to call it jsonl if it's more widespread |
@michel-tricot @ChristopheDuong renamed to jsonl, any other feedback? |
/test connector=source-file
|
/publish connector=connectors/source-file
|
Closes #2102 by adding support for Newline-delimited-JSON (JSONL/NDJson)
This is technically a new feature, but I did it anyways because: