1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
//! BigQuery sink configuration.
use faucet_core::DEFAULT_BATCH_SIZE;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
// Re-export the shared credentials type so end-user imports remain stable
// (`use faucet_sink_bigquery::BigQueryCredentials;` keeps working).
pub use faucet_common_bigquery::BigQueryCredentials;
/// Configuration for the BigQuery streaming insert sink.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct BigQuerySinkConfig {
/// GCP project ID.
pub project_id: String,
/// BigQuery dataset ID.
pub dataset_id: String,
/// BigQuery table ID.
pub table_id: String,
/// Authentication credentials. YAML/JSON key is `auth` for consistency with
/// every other connector's auth block.
pub auth: BigQueryCredentials,
/// Maximum rows per `tabledata.insertAll` request. Defaults to
/// [`DEFAULT_BATCH_SIZE`].
///
/// When the upstream `StreamPage` carries more records than `batch_size`,
/// the sink slices the page into `batch_size`-row chunks and issues one
/// `insertAll` HTTP call per chunk. When `batch_size = 0`, the page is
/// sent as a single request — useful when the source already chunks to
/// BigQuery's preferred size (e.g. ~500 rows for streaming inserts).
///
/// `batch_size = 0` is the "no batching" sentinel: the entire upstream
/// page is forwarded in one `insertAll` call, subject to BigQuery's
/// natural per-request limits (~10MB body, ~500 rows recommended).
/// Larger pages may exceed those limits — keep the default unless the
/// upstream `StreamPage` size is already tuned for BigQuery.
#[serde(default = "default_batch_size")]
pub batch_size: usize,
/// Optional record field whose value is sent as the BigQuery streaming
/// `insertId` for each row. BigQuery uses `insertId` for best-effort
/// de-duplication over a short window, so a stable per-row key here makes
/// streaming inserts resilient to transport retries (which are otherwise
/// at-least-once and can produce duplicate rows) (#78/#31). When `None`
/// (the default) no `insertId` is sent. A row missing the field is
/// inserted without an `insertId` (no dedup for that row).
#[serde(default, skip_serializing_if = "Option::is_none")]
pub insert_id_field: Option<String>,
/// Write mode (append / upsert / delete) plus the `key` columns and optional
/// `delete_marker`. Flattened, so `write_mode` / `key` / `delete_marker`
/// appear at the config top level. Defaults to append (every existing
/// config keeps working). Upsert/delete merge by `key` in place via a
/// BigQuery `MERGE` over the page (no staging table); `key` must be real
/// column(s) of the target table.
#[serde(flatten)]
pub write: faucet_core::WriteSpec,
/// Scoped/windowed overwrite (#518): with `write_mode: overwrite`, replace
/// only the rows matching this scope (e.g. a partition/date window) instead
/// of the whole table — the out-of-scope rows are preserved.
#[serde(default, skip_serializing_if = "Option::is_none")]
pub scope: Option<faucet_core::OverwriteScope>,
/// Arrow columnar **load-job** mode (#380): buffer Arrow `RecordBatch`es to
/// Parquet, stage them on a GCS bucket, then run a BigQuery `PARQUET` load
/// job (`jobs.insert`) instead of the per-row `insertAll` path. Only
/// present in `arrow` builds; drives the columnar fast path the pipeline
/// negotiates when the source and sink are both columnar. Load jobs are
/// append/truncate only, so the sink advertises columnar support **only**
/// when the write mode is `append` — upsert/delete stay on the MERGE path.
#[cfg(feature = "arrow")]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub bulk_load: Option<BigQueryLoadConfig>,
}
/// GCS-staged Parquet load-job configuration for the Arrow columnar path.
#[cfg(feature = "arrow")]
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct BigQueryLoadConfig {
/// GCS bucket used to stage Parquet files before the load job. Files are
/// written as `gs://<bucket>/<staging_prefix><uuid>.parquet`.
pub staging_bucket: String,
/// Object-key prefix within the bucket. Default `faucet-bq-load/`. A
/// trailing `/` is added if missing.
#[serde(default = "default_staging_prefix")]
pub staging_prefix: String,
/// Credentials for the GCS staging upload (independent of the BigQuery
/// `auth` used for the load job). Defaults to Application Default
/// Credentials.
#[serde(default)]
pub gcs_auth: faucet_common_gcs::GcsCredentials,
/// BigQuery load `writeDisposition` — `WRITE_APPEND` (default),
/// `WRITE_TRUNCATE`, or `WRITE_EMPTY`.
#[serde(default = "default_write_disposition")]
pub write_disposition: String,
/// Optional GCS storage endpoint override (e.g. a fake-gcs-server host for
/// tests). `None` uses the real Google endpoint.
#[serde(default, skip_serializing_if = "Option::is_none")]
pub storage_host: Option<String>,
}
#[cfg(feature = "arrow")]
fn default_staging_prefix() -> String {
"faucet-bq-load/".to_string()
}
#[cfg(feature = "arrow")]
fn default_write_disposition() -> String {
"WRITE_APPEND".to_string()
}
fn default_batch_size() -> usize {
DEFAULT_BATCH_SIZE
}
impl BigQuerySinkConfig {
/// Create a new config with the required fields and sensible defaults.
pub fn new(
project_id: impl Into<String>,
dataset_id: impl Into<String>,
table_id: impl Into<String>,
credentials: BigQueryCredentials,
) -> Self {
Self {
project_id: project_id.into(),
dataset_id: dataset_id.into(),
table_id: table_id.into(),
auth: credentials,
batch_size: DEFAULT_BATCH_SIZE,
insert_id_field: None,
write: faucet_core::WriteSpec::default(),
scope: None,
#[cfg(feature = "arrow")]
bulk_load: None,
}
}
/// Enable Arrow columnar bulk-load via a GCS-staged Parquet load job (#380).
#[cfg(feature = "arrow")]
pub fn with_bulk_load(mut self, load: BigQueryLoadConfig) -> Self {
self.bulk_load = Some(load);
self
}
/// Set the record field used as the per-row BigQuery streaming `insertId`
/// for best-effort de-duplication on retry.
pub fn with_insert_id_field(mut self, field: impl Into<String>) -> Self {
self.insert_id_field = Some(field.into());
self
}
/// Set the per-request row count for `tabledata.insertAll`.
///
/// Pass `0` to opt out of re-chunking — the sink forwards each upstream
/// [`StreamPage`](faucet_core::StreamPage) as a single `insertAll` call.
/// BigQuery's streaming-insert sweet spot is ~500 rows per request.
pub fn with_batch_size(mut self, batch_size: usize) -> Self {
self.batch_size = batch_size;
self
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn batch_size_defaults_to_default_batch_size() {
let config = BigQuerySinkConfig::new(
"my-project",
"my_dataset",
"my_table",
BigQueryCredentials::ApplicationDefault,
);
assert_eq!(config.batch_size, faucet_core::DEFAULT_BATCH_SIZE);
}
#[test]
fn with_batch_size_overrides_default() {
let config =
BigQuerySinkConfig::new("proj", "ds", "tbl", BigQueryCredentials::ApplicationDefault)
.with_batch_size(500);
assert_eq!(config.batch_size, 500);
}
#[test]
fn config_stores_all_fields() {
let config = BigQuerySinkConfig::new(
"my-project",
"my_dataset",
"my_table",
BigQueryCredentials::ServiceAccountKeyPath {
path: "/path/to/key.json".into(),
},
);
assert_eq!(config.project_id, "my-project");
assert_eq!(config.dataset_id, "my_dataset");
assert_eq!(config.table_id, "my_table");
assert!(matches!(
config.auth,
BigQueryCredentials::ServiceAccountKeyPath { .. }
));
}
#[test]
fn config_with_inline_key() {
let config = BigQuerySinkConfig::new(
"proj",
"ds",
"tbl",
BigQueryCredentials::ServiceAccountKey {
json: r#"{"type":"service_account"}"#.into(),
},
);
if let BigQueryCredentials::ServiceAccountKey { json } = &config.auth {
assert!(json.contains("service_account"));
} else {
panic!("expected ServiceAccountKey");
}
}
#[test]
fn config_builder_chaining() {
let config =
BigQuerySinkConfig::new("p", "d", "t", BigQueryCredentials::ApplicationDefault)
.with_batch_size(100)
.with_batch_size(250);
assert_eq!(config.batch_size, 250);
}
#[test]
fn config_clone() {
let config =
BigQuerySinkConfig::new("proj", "ds", "tbl", BigQueryCredentials::ApplicationDefault)
.with_batch_size(42);
let cloned = config.clone();
assert_eq!(cloned.project_id, "proj");
assert_eq!(cloned.batch_size, 42);
}
#[test]
fn batch_size_zero_is_accepted_as_no_batching_sentinel() {
let config =
BigQuerySinkConfig::new("p", "d", "t", BigQueryCredentials::ApplicationDefault)
.with_batch_size(0);
assert_eq!(config.batch_size, 0);
assert!(faucet_core::validate_batch_size(config.batch_size).is_ok());
}
#[test]
fn batch_size_above_max_is_rejected_by_validate_batch_size() {
let config =
BigQuerySinkConfig::new("p", "d", "t", BigQueryCredentials::ApplicationDefault)
.with_batch_size(faucet_core::MAX_BATCH_SIZE + 1);
assert!(faucet_core::validate_batch_size(config.batch_size).is_err());
}
#[test]
fn insert_id_field_defaults_none_and_builder_sets_it() {
let config =
BigQuerySinkConfig::new("p", "d", "t", BigQueryCredentials::ApplicationDefault);
assert!(config.insert_id_field.is_none());
let config = config.with_insert_id_field("event_id");
assert_eq!(config.insert_id_field.as_deref(), Some("event_id"));
}
#[test]
fn insert_id_field_deserializes_from_json() {
let json = r#"{
"project_id": "p",
"dataset_id": "d",
"table_id": "t",
"auth": {"type": "application_default"},
"insert_id_field": "id"
}"#;
let config: BigQuerySinkConfig = serde_json::from_str(json).unwrap();
assert_eq!(config.insert_id_field.as_deref(), Some("id"));
}
#[test]
fn batch_size_deserializes_from_json() {
let json = r#"{
"project_id": "p",
"dataset_id": "d",
"table_id": "t",
"auth": {"type": "application_default"},
"batch_size": 250
}"#;
let config: BigQuerySinkConfig = serde_json::from_str(json).unwrap();
assert_eq!(config.batch_size, 250);
}
#[test]
fn batch_size_defaults_when_absent_in_json() {
let json = r#"{
"project_id": "p",
"dataset_id": "d",
"table_id": "t",
"auth": {"type": "application_default"}
}"#;
let config: BigQuerySinkConfig = serde_json::from_str(json).unwrap();
assert_eq!(config.batch_size, faucet_core::DEFAULT_BATCH_SIZE);
}
#[cfg(feature = "arrow")]
#[test]
fn bulk_load_builder_and_defaults() {
let cfg = BigQuerySinkConfig::new("p", "d", "t", BigQueryCredentials::ApplicationDefault)
.with_bulk_load(BigQueryLoadConfig {
staging_bucket: "b".into(),
staging_prefix: default_staging_prefix(),
gcs_auth: Default::default(),
write_disposition: default_write_disposition(),
storage_host: None,
});
let load = cfg.bulk_load.expect("bulk_load set");
assert_eq!(load.staging_bucket, "b");
assert_eq!(load.staging_prefix, "faucet-bq-load/");
assert_eq!(load.write_disposition, "WRITE_APPEND");
// JSON: staging_prefix + write_disposition default when omitted.
let json = r#"{ "staging_bucket": "bk" }"#;
let l: BigQueryLoadConfig = serde_json::from_str(json).unwrap();
assert_eq!(l.staging_prefix, "faucet-bq-load/");
assert_eq!(l.write_disposition, "WRITE_APPEND");
assert!(l.storage_host.is_none());
}
#[test]
fn write_mode_defaults_to_append() {
let config =
BigQuerySinkConfig::new("p", "d", "t", BigQueryCredentials::ApplicationDefault);
assert_eq!(config.write.write_mode, faucet_core::WriteMode::Append);
assert!(config.write.key.is_empty());
}
#[test]
fn write_spec_deserializes_flattened() {
let json = r#"{
"project_id": "p",
"dataset_id": "d",
"table_id": "t",
"auth": {"type": "application_default"},
"write_mode": "upsert",
"key": ["id"],
"delete_marker": {"field": "__op", "values": ["d"]}
}"#;
let config: BigQuerySinkConfig = serde_json::from_str(json).unwrap();
assert_eq!(config.write.write_mode, faucet_core::WriteMode::Upsert);
assert_eq!(config.write.key, vec!["id".to_string()]);
let dm = config.write.delete_marker.expect("delete_marker");
assert_eq!(dm.field, "__op");
assert_eq!(dm.values, vec!["d".to_string()]);
}
}