You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,8 @@ Snowflake output plugin for Embulk loads records to Snowflake.
23
23
-**retry_limit**: max retry count for database operations (integer, default: 12). When intermediate table to create already created by another process, this plugin will retry with another table name to avoid collision.
24
24
-**retry_wait**: initial retry wait time in milliseconds (integer, default: 1000 (1 second))
25
25
-**max_retry_wait**: upper limit of retry wait, which will be doubled at every retry (integer, default: 1800000 (30 minutes))
26
+
-**max_upload_retries**: maximum number of retries for file upload to Snowflake (integer, default: 3).
27
+
-**max_copy_retries**: maximum number of retries for COPY operations in Snowflake (integer, default: 3). Retries occur when transient errors such as communication failures happen during the COPY process.
26
28
-**mode**: "insert", "insert_direct", "truncate_insert", "replace" or "merge". See below. (string, required)
27
29
-**merge_keys**: key column names for merging records in merge mode (string array, required in merge mode if table doesn't have primary key)
28
30
-**merge_rule**: list of column assignments for updating existing records used in merge mode, for example `"foo" = T."foo" + S."foo"` (`T` means target table and `S` means source table). (string array, default: always overwrites with new values)
0 commit comments