-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Remove redundant paginator (#391)
- Loading branch information
1 parent
a88b051
commit e6990fa
Showing
6 changed files
with
91 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"plugin_type": "loaders", | ||
"name": "target-jsonl", | ||
"namespace": "target_jsonl", | ||
"variant": "andyh1203", | ||
"label": "JSON Lines (JSONL)", | ||
"docs": "https://hub.meltano.com/loaders/target-jsonl--andyh1203", | ||
"repo": "https://github.com/andyh1203/target-jsonl", | ||
"pip_url": "target-jsonl", | ||
"description": "JSONL loader", | ||
"logo_url": "https://hub.meltano.com/assets/logos/loaders/jsonl.png", | ||
"settings": [ | ||
{ | ||
"name": "destination_path", | ||
"kind": "string", | ||
"value": "output", | ||
"label": "Destination Path", | ||
"description": "Sets the destination path the JSONL files are written to, relative\nto the project root.\n\nThe directory needs to exist already, it will not be created\nautomatically.\n\nTo write JSONL files to the project root, set an empty string (`\"\"`).\n" | ||
}, | ||
{ | ||
"name": "do_timestamp_file", | ||
"kind": "boolean", | ||
"value": false, | ||
"label": "Include Timestamp in File Names", | ||
"description": "Specifies if the files should get timestamped.\n\nBy default, the resulting file will not have a timestamp in the file name (i.e. `exchange_rate.jsonl`).\n\nIf this option gets set to `true`, the resulting file will have a timestamp associated with it (i.e. `exchange_rate-{timestamp}.jsonl`).\n" | ||
}, | ||
{ | ||
"name": "custom_name", | ||
"kind": "string", | ||
"label": "Custom File Name Override", | ||
"description": "Specifies a custom name for the filename, instead of the stream name.\n\nThe file name will be `{custom_name}-{timestamp}.jsonl`, if `do_timestamp_file` is `true`.\nOtherwise the file name will be `{custom_name}.jsonl`.\n\nIf custom name is not provided, the stream name will be used.\n" | ||
} | ||
] | ||
} |
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,39 @@ | ||
{ | ||
"plugin_type": "loaders", | ||
"name": "target-sqlite", | ||
"namespace": "target_sqlite", | ||
"variant": "meltanolabs", | ||
"label": "SQLite", | ||
"docs": "https://hub.meltano.com/loaders/target-sqlite--meltanolabs", | ||
"repo": "https://github.com/MeltanoLabs/target-sqlite", | ||
"pip_url": "git+https://github.com/MeltanoLabs/target-sqlite.git", | ||
"description": "SQLite database loader", | ||
"logo_url": "https://hub.meltano.com/assets/logos/loaders/sqlite.png", | ||
"settings_group_validation": [ | ||
[ | ||
"batch_size" | ||
] | ||
], | ||
"settings": [ | ||
{ | ||
"name": "database", | ||
"value": "warehouse", | ||
"label": "Database Name", | ||
"description": "Name of the SQLite database file to be used or created, relative to the project root.\n\nThe `.db` extension is optional and will be added automatically when omitted.\n" | ||
}, | ||
{ | ||
"name": "batch_size", | ||
"kind": "integer", | ||
"value": 50, | ||
"label": "Batch Size", | ||
"description": "How many records are sent to SQLite at a time." | ||
}, | ||
{ | ||
"name": "timestamp_column", | ||
"value": "__loaded_at", | ||
"label": "Timestamp Column", | ||
"description": "Name of the column used for recording the timestamp when data are loaded to SQLite." | ||
} | ||
], | ||
"dialect": "sqlite" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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