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-cdk/bulk/toolkits/load-gcs/src/main/kotlin/io/airbyte/cdk/load/command/gcs/GcsAuthSpecification.kt
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/destination-bigquery/src/main/kotlin/io/airbyte/integrations/destination/bigquery/BigQueryDestination.kt
+2-1
Original file line number
Diff line number
Diff line change
@@ -563,6 +563,7 @@ class BigQueryDestination : BaseConnector(), Destination {
563
563
val additionalMicronautEnvs =listOf(AwsToolkitConstants.MICRONAUT_ENVIRONMENT)
564
564
565
565
funmain(args:Array<String>) {
566
+
val additionalMicronautEnvs =listOf(AwsToolkitConstants.MICRONAUT_ENVIRONMENT)
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/destination-bigquery/src/main/kotlin/io/airbyte/integrations/destination/bigquery/formatter/BigQueryRecordFormatter.kt
+15
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,7 @@ class BigQueryRecordFormatter {
82
82
}
83
83
84
84
companionobject {
85
+
// This is the schema used to represent the final raw table
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/destination-bigquery/src/main/kotlin/io/airbyte/integrations/destination/bigquery/spec/BigquerySpecification.kt
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/destination-bigquery/src/main/kotlin/io/airbyte/integrations/destination/bigquery/write/bulk_loader/BigQueryBulkLoader.kt
+41-15
Original file line number
Diff line number
Diff line change
@@ -2,40 +2,51 @@
2
2
* Copyright (c) 2025 Airbyte, Inc., all rights reserved.
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/destination-bigquery/src/test-integration/kotlin/io/airbyte/integrations/destination/bigquery/BigqueryWriteTest.kt
+1
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ class StandardInsertRawOverrideDisableTd :
62
62
}
63
63
}
64
64
65
+
// @Disabled("Disabling until we have the full flow")
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/destination-bigquery/src/test-integration/resources/expected-spec-cloud.json
+10-10
Original file line number
Diff line number
Diff line change
@@ -61,8 +61,8 @@
61
61
"properties" : {
62
62
"credential_type" : {
63
63
"type" : "string",
64
-
"enum" : [ "HMAC key" ],
65
-
"default" : "HMAC key"
64
+
"enum" : [ "HMAC_KEY" ],
65
+
"default" : "HMAC_KEY"
66
66
},
67
67
"hmac_key_access_id" : {
68
68
"type" : "string",
@@ -96,22 +96,22 @@
96
96
"title" : "GCS Tmp Files Post-Processing",
97
97
"order" : 3
98
98
},
99
-
"gcs_bucket_path" : {
100
-
"type" : "string",
101
-
"description" : "Directory under the GCS bucket where data will be written.",
102
-
"title" : "GCS Bucket Path",
103
-
"examples" : [ "data_sync/test" ],
104
-
"order" : 2
105
-
},
106
99
"gcs_bucket_name" : {
107
100
"type" : "string",
108
101
"description" : "The name of the GCS bucket. Read more <a href=\"https://cloud.google.com/storage/docs/naming-buckets\">here</a>.",
109
102
"title" : "GCS Bucket Name",
110
103
"examples" : [ "airbyte_sync" ],
111
104
"order" : 1
105
+
},
106
+
"gcs_bucket_path" : {
107
+
"type" : "string",
108
+
"description" : "Directory under the GCS bucket where data will be written.",
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/destination-bigquery/src/test-integration/resources/expected-spec-oss.json
+10-10
Original file line number
Diff line number
Diff line change
@@ -61,8 +61,8 @@
61
61
"properties" : {
62
62
"credential_type" : {
63
63
"type" : "string",
64
-
"enum" : [ "HMAC key" ],
65
-
"default" : "HMAC key"
64
+
"enum" : [ "HMAC_KEY" ],
65
+
"default" : "HMAC_KEY"
66
66
},
67
67
"hmac_key_access_id" : {
68
68
"type" : "string",
@@ -96,22 +96,22 @@
96
96
"title" : "GCS Tmp Files Post-Processing",
97
97
"order" : 3
98
98
},
99
-
"gcs_bucket_path" : {
100
-
"type" : "string",
101
-
"description" : "Directory under the GCS bucket where data will be written.",
102
-
"title" : "GCS Bucket Path",
103
-
"examples" : [ "data_sync/test" ],
104
-
"order" : 2
105
-
},
106
99
"gcs_bucket_name" : {
107
100
"type" : "string",
108
101
"description" : "The name of the GCS bucket. Read more <a href=\"https://cloud.google.com/storage/docs/naming-buckets\">here</a>.",
109
102
"title" : "GCS Bucket Name",
110
103
"examples" : [ "airbyte_sync" ],
111
104
"order" : 1
105
+
},
106
+
"gcs_bucket_path" : {
107
+
"type" : "string",
108
+
"description" : "Directory under the GCS bucket where data will be written.",
0 commit comments