Skip to content
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

update s3 write #342

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions docs/nodes/App/S3_Write.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,23 @@ An example configuration for an S3 Write Node in the Flow Editor (src_object_pre
- **src_all_or_current_run**: current
- **src_input_or_output_bucket**: output
- **src_object_prefix**:
- **glob_pattern**: \*

### Parameters

- **src_input_or_output_bucket** : `str`
- "input" or "output" for the Ganymede cloud storage bucket to sync from
- "input" or "output" for the Ganymede cloud storage bucket to sync from
- **src_object_prefix** : `str`
- Prefix of data lake object(s) to write
- Prefix of data lake object(s) to write
- **src_all_or_current_run** : `str`
- "all" or "current" - whether to sync all files or the files in the input or output
- bucket from the current run
- "all" or "current" - whether to sync all files or the files in the input or output
- bucket from the current run
- **dest_node_name_in_path** : `bool, optional`
- "true" or "false" - whether to prepend the flow name and node name for specified file in the S3 bucket path
- "true" or "false" - whether to prepend the flow name and node name for specified file in the S3 bucket path
- **dest_replace_or_append** : `str`
- "replace" or "append" - whether to replace existing files or only add new files to the destination S3 bucket when a file in the S3 bucket has the same name as the source file being synced
- "replace" or "append" - whether to replace existing files or only add new files to the destination S3 bucket when a file in the S3 bucket has the same name as the source file being synced
- **dest_s3_key** : `str`
- Destination S3 key to write to. If this string ends with a '/', it will be treated as a prefix (i.e. - S3 folder), and the file will be written with the same name as the source file
- Destination S3 key to write to. If this string ends with a '/', it will be treated as a prefix (i.e. - S3 folder), and the file will be written with the same name as the source file
- **glob_pattern**: `str`
- Glob pattern to match files that need to be synced. Specify "*" to avoid filtering by glob pattern.