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: airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeDestination.java
+2-10Lines changed: 2 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,6 @@ public class SnowflakeDestination extends SwitchingDestination<SnowflakeDestinat
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/destination-snowflake/src/main/resources/spec.json
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -81,28 +81,28 @@
81
81
"order": 8,
82
82
"oneOf": [
83
83
{
84
-
"title": "[Recommended] Internal Staging",
84
+
"title": "Select another option",
85
85
"additionalProperties": false,
86
-
"description": "Writes large batches of records to a file, uploads the file to Snowflake, then uses <pre>COPY INTO table</pre> to upload the file. Recommended for large production workloads for better speed and scalability.",
86
+
"description": "Select another option",
87
87
"required": ["method"],
88
88
"properties": {
89
89
"method": {
90
90
"type": "string",
91
-
"enum": ["Internal Staging"],
92
-
"default": "Internal Staging"
91
+
"enum": ["Standard"],
92
+
"default": "Standard"
93
93
}
94
94
}
95
95
},
96
96
{
97
-
"title": "Standard Inserts",
97
+
"title": "[Recommended] Internal Staging",
98
98
"additionalProperties": false,
99
-
"description": "Uses <pre>INSERT</pre> statements to send batches of records to Snowflake. Easiest (no setup) but not recommended for large production workloads due to slow speed.",
99
+
"description": "Writes large batches of records to a file, uploads the file to Snowflake, then uses <pre>COPY INTO table</pre> to upload the file. Recommended for large production workloads for better speed and scalability.",
0 commit comments