bizon 0.1.2__py3-none-any.whl → 0.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. bizon/alerting/alerts.py +0 -1
  2. bizon/common/models.py +182 -4
  3. bizon/connectors/destinations/bigquery/config/bigquery_incremental.example.yml +34 -0
  4. bizon/connectors/destinations/bigquery/src/config.py +0 -1
  5. bizon/connectors/destinations/bigquery/src/destination.py +16 -9
  6. bizon/connectors/destinations/bigquery_streaming/config/bigquery_streaming.example.yml +74 -0
  7. bizon/connectors/destinations/bigquery_streaming/src/destination.py +5 -43
  8. bizon/connectors/destinations/bigquery_streaming_v2/config/bigquery_streaming_v2.example.yml +79 -0
  9. bizon/connectors/destinations/bigquery_streaming_v2/src/destination.py +54 -50
  10. bizon/connectors/destinations/file/config/file.example.yml +40 -0
  11. bizon/connectors/destinations/file/config/file_incremental.example.yml +22 -0
  12. bizon/connectors/destinations/file/src/config.py +1 -1
  13. bizon/connectors/destinations/file/src/destination.py +59 -7
  14. bizon/connectors/destinations/logger/config/logger.example.yml +30 -0
  15. bizon/connectors/destinations/logger/config/logger_incremental.example.yml +21 -0
  16. bizon/connectors/destinations/logger/src/config.py +0 -2
  17. bizon/connectors/destinations/logger/src/destination.py +14 -3
  18. bizon/connectors/sources/cycle/src/source.py +2 -6
  19. bizon/connectors/sources/dummy/src/source.py +0 -4
  20. bizon/connectors/sources/gsheets/config/service_account_incremental.example.yml +51 -0
  21. bizon/connectors/sources/gsheets/src/source.py +2 -3
  22. bizon/connectors/sources/hubspot/config/api_key_incremental.example.yml +40 -0
  23. bizon/connectors/sources/hubspot/src/hubspot_base.py +0 -1
  24. bizon/connectors/sources/hubspot/src/hubspot_objects.py +3 -4
  25. bizon/connectors/sources/hubspot/src/models/hs_object.py +0 -1
  26. bizon/connectors/sources/kafka/config/kafka_streams.example.yml +124 -0
  27. bizon/connectors/sources/kafka/src/config.py +10 -6
  28. bizon/connectors/sources/kafka/src/decode.py +2 -2
  29. bizon/connectors/sources/kafka/src/source.py +147 -46
  30. bizon/connectors/sources/notion/config/api_key.example.yml +35 -0
  31. bizon/connectors/sources/notion/config/api_key_incremental.example.yml +48 -0
  32. bizon/connectors/sources/notion/src/__init__.py +0 -0
  33. bizon/connectors/sources/notion/src/config.py +59 -0
  34. bizon/connectors/sources/notion/src/source.py +1501 -0
  35. bizon/connectors/sources/notion/tests/notion_pipeline.py +7 -0
  36. bizon/connectors/sources/notion/tests/test_notion.py +113 -0
  37. bizon/connectors/sources/periscope/src/source.py +0 -6
  38. bizon/connectors/sources/pokeapi/src/source.py +0 -1
  39. bizon/connectors/sources/sana_ai/config/sana.example.yml +25 -0
  40. bizon/connectors/sources/sana_ai/src/source.py +85 -0
  41. bizon/destination/buffer.py +0 -1
  42. bizon/destination/config.py +0 -1
  43. bizon/destination/destination.py +1 -4
  44. bizon/engine/backend/adapters/sqlalchemy/backend.py +2 -5
  45. bizon/engine/backend/adapters/sqlalchemy/config.py +0 -1
  46. bizon/engine/config.py +0 -1
  47. bizon/engine/engine.py +0 -1
  48. bizon/engine/pipeline/consumer.py +0 -1
  49. bizon/engine/pipeline/producer.py +43 -6
  50. bizon/engine/queue/adapters/kafka/config.py +1 -1
  51. bizon/engine/queue/adapters/kafka/queue.py +0 -1
  52. bizon/engine/queue/adapters/python_queue/consumer.py +0 -1
  53. bizon/engine/queue/adapters/python_queue/queue.py +0 -2
  54. bizon/engine/queue/adapters/rabbitmq/consumer.py +0 -1
  55. bizon/engine/queue/adapters/rabbitmq/queue.py +0 -1
  56. bizon/engine/queue/config.py +0 -2
  57. bizon/engine/runner/adapters/process.py +0 -2
  58. bizon/engine/runner/adapters/streaming.py +55 -1
  59. bizon/engine/runner/adapters/thread.py +0 -2
  60. bizon/engine/runner/config.py +0 -1
  61. bizon/engine/runner/runner.py +0 -2
  62. bizon/monitoring/datadog/monitor.py +5 -3
  63. bizon/monitoring/noop/monitor.py +1 -1
  64. bizon/source/auth/authenticators/abstract_oauth.py +11 -3
  65. bizon/source/auth/authenticators/abstract_token.py +2 -1
  66. bizon/source/auth/authenticators/basic.py +1 -1
  67. bizon/source/auth/authenticators/cookies.py +2 -1
  68. bizon/source/auth/authenticators/oauth.py +8 -3
  69. bizon/source/config.py +6 -2
  70. bizon/source/cursor.py +8 -16
  71. bizon/source/discover.py +3 -6
  72. bizon/source/models.py +2 -2
  73. bizon/source/session.py +0 -1
  74. bizon/source/source.py +17 -2
  75. bizon/transform/config.py +0 -2
  76. bizon/transform/transform.py +0 -3
  77. bizon-0.3.0.dist-info/METADATA +323 -0
  78. bizon-0.3.0.dist-info/RECORD +142 -0
  79. {bizon-0.1.2.dist-info → bizon-0.3.0.dist-info}/WHEEL +1 -1
  80. bizon-0.3.0.dist-info/entry_points.txt +2 -0
  81. bizon-0.1.2.dist-info/METADATA +0 -179
  82. bizon-0.1.2.dist-info/RECORD +0 -123
  83. bizon-0.1.2.dist-info/entry_points.txt +0 -3
  84. {bizon-0.1.2.dist-info → bizon-0.3.0.dist-info/licenses}/LICENSE +0 -0
bizon/alerting/alerts.py CHANGED
@@ -7,7 +7,6 @@ from bizon.alerting.models import AlertingConfig, AlertMethod, LogLevel
7
7
 
8
8
 
9
9
  class AbstractAlert(ABC):
10
-
11
10
  def __init__(self, type: AlertMethod, config: AlertingConfig, log_levels: List[LogLevel] = [LogLevel.ERROR]):
12
11
  self.type = type
13
12
  self.config = config
bizon/common/models.py CHANGED
@@ -1,9 +1,12 @@
1
- from typing import Optional, Union
1
+ from typing import Any, Optional, Union
2
2
 
3
- from pydantic import BaseModel, ConfigDict, Field
3
+ from pydantic import BaseModel, ConfigDict, Field, field_validator, model_validator
4
4
 
5
5
  from bizon.alerting.models import AlertingConfig
6
- from bizon.connectors.destinations.bigquery.src.config import BigQueryConfig
6
+ from bizon.connectors.destinations.bigquery.src.config import (
7
+ BigQueryColumn,
8
+ BigQueryConfig,
9
+ )
7
10
  from bizon.connectors.destinations.bigquery_streaming.src.config import (
8
11
  BigQueryStreamingConfig,
9
12
  )
@@ -18,8 +21,74 @@ from bizon.source.config import SourceConfig, SourceSyncModes
18
21
  from bizon.transform.config import TransformModel
19
22
 
20
23
 
21
- class BizonConfig(BaseModel):
24
+ class StreamSourceConfig(BaseModel):
25
+ """Source-specific stream routing configuration.
26
+
27
+ Uses extra='allow' to support source-specific fields like:
28
+ - topic (Kafka)
29
+ - endpoint (API sources)
30
+ - channel (other streaming sources)
31
+ """
32
+
33
+ model_config = ConfigDict(extra="allow")
34
+
35
+ # Common field for stream identifier
36
+ name: Optional[str] = Field(None, description="Stream identifier within the source")
37
+
38
+ # Kafka-specific
39
+ topic: Optional[str] = Field(None, description="Kafka topic name")
40
+
41
+ # API-specific
42
+ endpoint: Optional[str] = Field(None, description="API endpoint path")
43
+
44
+
45
+ class StreamDestinationConfig(BaseModel):
46
+ """Destination configuration for a stream.
47
+
48
+ Supports destination-specific schema definitions and options.
49
+ Uses extra='allow' to support destination-specific overrides.
50
+ """
22
51
 
52
+ model_config = ConfigDict(extra="allow")
53
+
54
+ # Universal destination identifier
55
+ table_id: str = Field(..., description="Full destination identifier (e.g., project.dataset.table)")
56
+
57
+ # BigQuery-specific schema (can be extended for other destinations)
58
+ record_schema: Optional[list[BigQueryColumn]] = Field(None, description="Schema for the destination records")
59
+ clustering_keys: Optional[list[str]] = Field(None, description="Clustering keys for the destination table")
60
+
61
+
62
+ class StreamConfig(BaseModel):
63
+ """Configuration for a single stream.
64
+
65
+ Consolidates source stream routing and destination configuration in one place,
66
+ eliminating duplication of destination_id between source and destination configs.
67
+ """
68
+
69
+ model_config = ConfigDict(extra="forbid")
70
+
71
+ name: str = Field(..., description="Logical name for this stream")
72
+ source: StreamSourceConfig = Field(..., description="Source-specific routing configuration")
73
+ destination: StreamDestinationConfig = Field(
74
+ ..., description="Destination configuration including table and schema"
75
+ )
76
+
77
+ @field_validator("destination")
78
+ @classmethod
79
+ def validate_table_id_format(cls, v: StreamDestinationConfig) -> StreamDestinationConfig:
80
+ """Ensure table_id follows expected format for BigQuery-like destinations."""
81
+ if v.table_id:
82
+ parts = v.table_id.split(".")
83
+ if len(parts) != 3:
84
+ raise ValueError(
85
+ f"table_id must be in format 'project.dataset.table', got: {v.table_id}. "
86
+ f"Found {len(parts)} parts instead of 3."
87
+ )
88
+ return v
89
+
90
+
91
+ class BizonConfig(BaseModel):
23
92
  # Forbid extra keys in the model
24
93
  model_config = ConfigDict(extra="forbid")
25
94
 
@@ -63,6 +132,115 @@ class BizonConfig(BaseModel):
63
132
  default=None,
64
133
  )
65
134
 
135
+ streams: Optional[list[StreamConfig]] = Field(
136
+ None,
137
+ description="Stream routing configuration (opt-in for multi-table streaming). "
138
+ "Consolidates source stream definitions with destination tables and schemas.",
139
+ )
140
+
141
+ @field_validator("streams")
142
+ @classmethod
143
+ def validate_streams_config(cls, v: Optional[list[StreamConfig]], info) -> Optional[list[StreamConfig]]:
144
+ """Validate streams configuration consistency."""
145
+ if not v:
146
+ return v
147
+
148
+ # Check for duplicate stream names
149
+ names = [s.name for s in v]
150
+ if len(names) != len(set(names)):
151
+ duplicates = [name for name in names if names.count(name) > 1]
152
+ raise ValueError(f"Duplicate stream names found in streams configuration: {set(duplicates)}")
153
+
154
+ # Check for duplicate table_ids
155
+ table_ids = [s.destination.table_id for s in v]
156
+ if len(table_ids) != len(set(table_ids)):
157
+ duplicates = [tid for tid in table_ids if table_ids.count(tid) > 1]
158
+ raise ValueError(f"Duplicate table_ids found in streams configuration: {set(duplicates)}")
159
+
160
+ # Validate that source sync_mode is 'stream' if streams config is used
161
+ source_config = info.data.get("source") if info.data else None
162
+ if source_config and source_config.sync_mode != SourceSyncModes.STREAM:
163
+ raise ValueError(
164
+ f"Configuration Error: 'streams' configuration requires source.sync_mode='stream'. "
165
+ f"Current sync_mode: {source_config.sync_mode}. "
166
+ f"Please update your config to use:\n"
167
+ f" source:\n"
168
+ f" sync_mode: stream"
169
+ )
170
+
171
+ return v
172
+
173
+ @model_validator(mode="before")
174
+ @classmethod
175
+ def inject_config_from_streams(cls, data: Any) -> Any:
176
+ """Inject source and destination config from streams.
177
+
178
+ This runs BEFORE field validation, enriching both source and destination
179
+ configs from the streams configuration. This allows:
180
+ 1. Sources (like Kafka) to omit topics - they're extracted from streams
181
+ 2. Destinations with unnest=true to work without duplicate record_schemas
182
+
183
+ This is source-agnostic: each source type can extract what it needs from streams.
184
+ """
185
+ if not isinstance(data, dict):
186
+ return data
187
+
188
+ streams = data.get("streams")
189
+ if not streams:
190
+ return data
191
+
192
+ source = data.get("source")
193
+ if source and isinstance(source, dict):
194
+ source_name = source.get("name")
195
+
196
+ # Kafka: inject topics from streams
197
+ if source_name == "kafka":
198
+ # Check if topics is missing, None, or empty list
199
+ if not source.get("topics") or source.get("topics") == []:
200
+ topics = []
201
+ for stream in streams:
202
+ if isinstance(stream, dict):
203
+ stream_src = stream.get("source", {})
204
+ stream_dest = stream.get("destination", {})
205
+ if stream_src.get("topic"):
206
+ topics.append(
207
+ {
208
+ "name": stream_src.get("topic"),
209
+ "destination_id": stream_dest.get("table_id", ""),
210
+ }
211
+ )
212
+ if topics:
213
+ source["topics"] = topics
214
+
215
+ destination = data.get("destination")
216
+ if not destination or not isinstance(destination, dict):
217
+ return data
218
+
219
+ destination_config = destination.get("config")
220
+ if not destination_config or not isinstance(destination_config, dict):
221
+ return data
222
+
223
+ # Only inject if record_schemas is not already set or is empty
224
+ if not destination_config.get("record_schemas"):
225
+ # Build record_schemas from streams
226
+ record_schemas = []
227
+ for stream in streams:
228
+ if isinstance(stream, dict):
229
+ stream_dest = stream.get("destination", {})
230
+ if stream_dest.get("record_schema"):
231
+ record_schema_config = {
232
+ "destination_id": stream_dest.get("table_id"),
233
+ "record_schema": stream_dest.get("record_schema"),
234
+ "clustering_keys": stream_dest.get("clustering_keys"),
235
+ }
236
+ record_schemas.append(record_schema_config)
237
+
238
+ # Inject into destination config
239
+ if record_schemas:
240
+ destination_config["record_schemas"] = record_schemas
241
+
242
+ return data
243
+
66
244
 
67
245
  class SyncMetadata(BaseModel):
68
246
  """Model which stores general metadata around a sync.
@@ -0,0 +1,34 @@
1
+ name: hubspot contacts to bigquery (incremental)
2
+
3
+ source:
4
+ name: hubspot
5
+ stream: contacts
6
+ sync_mode: incremental
7
+ cursor_field: updatedAt # HubSpot's timestamp field for filtering
8
+ properties:
9
+ strategy: all
10
+ authentication:
11
+ type: api_key
12
+ api_key: <MY_API_KEY>
13
+
14
+ destination:
15
+ # Authentication: If empty it will be infered.
16
+ # Must have the bigquery.jobUser
17
+ # Must have the bigquery.dataEditor and storage.objectUser on the supplied dataset and bucket
18
+ name: bigquery
19
+ config:
20
+ buffer_size: 10 # in Mb
21
+ buffer_flush_timeout: 300 # in seconds
22
+ dataset_id: bizon_test
23
+ dataset_location: US
24
+ project_id: my-gcp-project-id
25
+ gcs_buffer_bucket: bizon-buffer
26
+ gcs_buffer_format: parquet
27
+ # Optional: service_account_key for explicit authentication
28
+ # service_account_key: >-
29
+ # { ... }
30
+
31
+ # How incremental sync works:
32
+ # 1. First run: Behaves like full_refresh (fetches all data)
33
+ # 2. Subsequent runs: Only fetches records where cursor_field > last_run
34
+ # 3. Uses append-only strategy - new records are appended to existing data
@@ -98,7 +98,6 @@ class BigQueryRecordSchemaConfig(BaseModel):
98
98
 
99
99
 
100
100
  class BigQueryConfigDetails(AbstractDestinationDetailsConfig):
101
-
102
101
  # Table details
103
102
  project_id: str = Field(..., description="BigQuery Project ID")
104
103
  dataset_id: str = Field(..., description="BigQuery Dataset ID")
@@ -22,7 +22,6 @@ from .config import BigQueryColumn, BigQueryConfigDetails
22
22
 
23
23
 
24
24
  class BigQueryDestination(AbstractDestination):
25
-
26
25
  def __init__(
27
26
  self,
28
27
  sync_metadata: SyncMetadata,
@@ -56,7 +55,6 @@ class BigQueryDestination(AbstractDestination):
56
55
 
57
56
  @property
58
57
  def temp_table_id(self) -> str:
59
-
60
58
  if self.sync_metadata.sync_mode == SourceSyncModes.FULL_REFRESH:
61
59
  return f"{self.table_id}_temp"
62
60
 
@@ -67,7 +65,6 @@ class BigQueryDestination(AbstractDestination):
67
65
  return f"{self.table_id}"
68
66
 
69
67
  def get_bigquery_schema(self, df_destination_records: pl.DataFrame) -> List[bigquery.SchemaField]:
70
-
71
68
  # Case we unnest the data
72
69
  if self.config.unnest:
73
70
  return [
@@ -113,9 +110,7 @@ class BigQueryDestination(AbstractDestination):
113
110
  # https://cloud.google.com/python/docs/reference/bigquery/latest/google.cloud.bigquery.dbapi.DataError
114
111
 
115
112
  def convert_and_upload_to_buffer(self, df_destination_records: pl.DataFrame) -> str:
116
-
117
113
  if self.buffer_format == "parquet":
118
-
119
114
  # Upload the Parquet file to GCS
120
115
  file_name = f"{self.sync_metadata.source_name}/{self.sync_metadata.stream_name}/{str(uuid4())}.parquet"
121
116
 
@@ -153,7 +148,6 @@ class BigQueryDestination(AbstractDestination):
153
148
  )
154
149
 
155
150
  def load_to_bigquery(self, gcs_file: str, df_destination_records: pl.DataFrame):
156
-
157
151
  # We always partition by the loaded_at field
158
152
  time_partitioning = TimePartitioning(field="_bizon_loaded_at", type_=self.config.time_partitioning)
159
153
 
@@ -171,7 +165,6 @@ class BigQueryDestination(AbstractDestination):
171
165
  assert result.state == "DONE", f"Job failed with state {result.state} with error {result.error_result}"
172
166
 
173
167
  def write_records(self, df_destination_records: pl.DataFrame) -> Tuple[bool, str]:
174
-
175
168
  # Rename fields to match BigQuery schema
176
169
  df_destination_records = df_destination_records.rename(
177
170
  {
@@ -201,13 +194,27 @@ class BigQueryDestination(AbstractDestination):
201
194
  def finalize(self):
202
195
  if self.sync_metadata.sync_mode == SourceSyncModes.FULL_REFRESH:
203
196
  logger.info(f"Loading temp table {self.temp_table_id} data into {self.table_id} ...")
204
- self.bq_client.query(f"CREATE OR REPLACE TABLE {self.table_id} AS SELECT * FROM {self.temp_table_id}")
197
+ query = f"CREATE OR REPLACE TABLE {self.table_id} AS SELECT * FROM {self.temp_table_id}"
198
+ result = self.bq_client.query(query)
199
+ bq_result = result.result() # Waits for the job to completew
200
+ logger.info(f"BigQuery CREATE OR REPLACE query result: {bq_result}")
201
+ # Check if the destination table exists by fetching it; raise if it doesn't exist
202
+ try:
203
+ self.bq_client.get_table(self.table_id)
204
+ except NotFound:
205
+ logger.error(f"Table {self.table_id} not found")
206
+ raise Exception(f"Table {self.table_id} not found")
207
+ # Cleanup
205
208
  logger.info(f"Deleting temp table {self.temp_table_id} ...")
206
209
  self.bq_client.delete_table(self.temp_table_id, not_found_ok=True)
207
210
  return True
208
211
 
209
212
  elif self.sync_metadata.sync_mode == SourceSyncModes.INCREMENTAL:
210
- # TO DO: Implement incremental sync
213
+ # Append data from incremental temp table to main table
214
+ logger.info(f"Appending data from {self.temp_table_id} to {self.table_id} ...")
215
+ self.bq_client.query(f"INSERT INTO {self.table_id} SELECT * FROM {self.temp_table_id}").result()
216
+ logger.info(f"Deleting incremental temp table {self.temp_table_id} ...")
217
+ self.bq_client.delete_table(self.temp_table_id, not_found_ok=True)
211
218
  return True
212
219
 
213
220
  elif self.sync_metadata.sync_mode == SourceSyncModes.STREAM:
@@ -0,0 +1,74 @@
1
+ # BigQuery Streaming Destination Configuration
2
+ # Uses the BigQuery Storage Write API for low-latency inserts
3
+ #
4
+ # Use this destination when:
5
+ # - You need near real-time data loading
6
+ # - Low latency is more important than cost optimization
7
+ # - Working with streaming/continuous data sources
8
+ #
9
+ # Requirements:
10
+ # - Service account with bigquery.dataEditor role
11
+ # - Dataset must already exist
12
+
13
+ name: source_to_bigquery_streaming
14
+
15
+ source:
16
+ name: <YOUR_SOURCE>
17
+ stream: <YOUR_STREAM>
18
+ authentication:
19
+ type: api_key
20
+ params:
21
+ token: <YOUR_API_KEY>
22
+
23
+ destination:
24
+ name: bigquery_streaming
25
+ config:
26
+ # GCP Project ID
27
+ project_id: <YOUR_GCP_PROJECT>
28
+
29
+ # BigQuery dataset (must exist)
30
+ dataset_id: <YOUR_DATASET>
31
+
32
+ # Dataset location (US, EU, etc.)
33
+ dataset_location: US
34
+
35
+ # Time partitioning (optional)
36
+ time_partitioning:
37
+ type: DAY # Options: DAY, HOUR, MONTH, YEAR
38
+ field: _bizon_loaded_at
39
+
40
+ # Max rows per streaming request (max 10000)
41
+ bq_max_rows_per_request: 5000
42
+
43
+ # Buffer settings
44
+ buffer_size: 50 # MB before flushing
45
+ buffer_flush_timeout: 300 # Seconds before forcing flush
46
+
47
+ # Authentication (optional - uses ADC if not provided)
48
+ # authentication:
49
+ # service_account_key: |
50
+ # {
51
+ # "type": "service_account",
52
+ # "project_id": "<YOUR_GCP_PROJECT>",
53
+ # ...
54
+ # }
55
+
56
+ # Schema definition for unnesting (optional)
57
+ # Required if unnest: true
58
+ # unnest: true
59
+ # record_schemas:
60
+ # - destination_id: my_table
61
+ # record_schema:
62
+ # - name: id
63
+ # type: STRING
64
+ # mode: REQUIRED
65
+ # - name: created_at
66
+ # type: TIMESTAMP
67
+ # mode: NULLABLE
68
+
69
+ engine:
70
+ backend:
71
+ type: bigquery
72
+ database: <YOUR_GCP_PROJECT>
73
+ schema: bizon_state
74
+ syncCursorInDBEvery: 10
@@ -1,6 +1,5 @@
1
1
  import os
2
2
  import tempfile
3
- from datetime import datetime
4
3
  from typing import List, Tuple
5
4
 
6
5
  import orjson
@@ -43,7 +42,6 @@ from .config import BigQueryStreamingConfigDetails
43
42
 
44
43
 
45
44
  class BigQueryStreamingDestination(AbstractDestination):
46
-
47
45
  # Add constants for limits
48
46
  MAX_REQUEST_SIZE_BYTES = 5 * 1024 * 1024 # 5 MB (max is 10MB)
49
47
  MAX_ROW_SIZE_BYTES = 0.9 * 1024 * 1024 # 1 MB
@@ -78,7 +76,6 @@ class BigQueryStreamingDestination(AbstractDestination):
78
76
  return self.destination_id or f"{self.project_id}.{self.dataset_id}.{tabled_id}"
79
77
 
80
78
  def get_bigquery_schema(self) -> List[bigquery.SchemaField]:
81
-
82
79
  if self.config.unnest:
83
80
  if len(list(self.record_schemas.keys())) == 1:
84
81
  self.destination_id = list(self.record_schemas.keys())[0]
@@ -164,40 +161,6 @@ class BigQueryStreamingDestination(AbstractDestination):
164
161
  response = write_client.append_rows(iter([request]))
165
162
  return response.code().name
166
163
 
167
- def safe_cast_record_values(self, row: dict):
168
- """
169
- Safe cast record values to the correct type for BigQuery.
170
- """
171
- for col in self.record_schemas[self.destination_id]:
172
-
173
- # Handle dicts as strings
174
- if col.type in [BigQueryColumnType.STRING, BigQueryColumnType.JSON]:
175
- if isinstance(row[col.name], dict) or isinstance(row[col.name], list):
176
- row[col.name] = orjson.dumps(row[col.name]).decode("utf-8")
177
-
178
- # Handle timestamps
179
- if (
180
- col.type in [BigQueryColumnType.TIMESTAMP, BigQueryColumnType.DATETIME]
181
- and col.default_value_expression is None
182
- ):
183
- if isinstance(row[col.name], int):
184
- if row[col.name] > datetime(9999, 12, 31).timestamp():
185
- row[col.name] = datetime.fromtimestamp(row[col.name] / 1_000_000).strftime(
186
- "%Y-%m-%d %H:%M:%S.%f"
187
- )
188
- else:
189
- try:
190
- row[col.name] = datetime.fromtimestamp(row[col.name]).strftime("%Y-%m-%d %H:%M:%S.%f")
191
- except ValueError:
192
- error_message = (
193
- f"Error casting timestamp for destination '{self.destination_id}' column '{col.name}'. "
194
- f"Invalid timestamp value: {row[col.name]} ({type(row[col.name])}). "
195
- "Consider using a transformation."
196
- )
197
- logger.error(error_message)
198
- raise ValueError(error_message)
199
- return row
200
-
201
164
  @retry(
202
165
  retry=retry_if_exception_type(
203
166
  (
@@ -284,10 +247,7 @@ class BigQueryStreamingDestination(AbstractDestination):
284
247
 
285
248
  if self.config.unnest:
286
249
  # We cannot use the `json_decode` method here because of the issue: https://github.com/pola-rs/polars/issues/22371
287
- rows_to_insert = [
288
- self.safe_cast_record_values(orjson.loads(row))
289
- for row in df_destination_records["source_data"].to_list()
290
- ]
250
+ rows_to_insert = [orjson.loads(row) for row in df_destination_records["source_data"].to_list()]
291
251
  else:
292
252
  df_destination_records = df_destination_records.with_columns(
293
253
  pl.col("bizon_extracted_at").dt.strftime("%Y-%m-%d %H:%M:%S").alias("bizon_extracted_at"),
@@ -355,7 +315,9 @@ class BigQueryStreamingDestination(AbstractDestination):
355
315
  len(current_batch) >= self.bq_max_rows_per_request
356
316
  or current_batch_size + item_size > self.MAX_REQUEST_SIZE_BYTES
357
317
  ):
358
- logger.debug(f"Yielding batch of {len(current_batch)} rows, size: {current_batch_size/1024/1024:.2f}MB")
318
+ logger.debug(
319
+ f"Yielding batch of {len(current_batch)} rows, size: {current_batch_size / 1024 / 1024:.2f}MB"
320
+ )
359
321
  yield {"stream_batch": current_batch, "json_batch": large_rows}
360
322
  current_batch = []
361
323
  current_batch_size = 0
@@ -371,7 +333,7 @@ class BigQueryStreamingDestination(AbstractDestination):
371
333
  # Yield the last batch
372
334
  if current_batch:
373
335
  logger.debug(
374
- f"Yielding streaming batch of {len(current_batch)} rows, size: {current_batch_size/1024/1024:.2f}MB"
336
+ f"Yielding streaming batch of {len(current_batch)} rows, size: {current_batch_size / 1024 / 1024:.2f}MB"
375
337
  )
376
338
  logger.debug(f"Yielding large rows batch of {len(large_rows)} rows")
377
339
  yield {"stream_batch": current_batch, "json_batch": large_rows}
@@ -0,0 +1,79 @@
1
+ # BigQuery Streaming V2 Destination Configuration
2
+ # Uses the BigQuery Storage Write API (v2) for improved streaming performance
3
+ #
4
+ # Use this destination when:
5
+ # - You need the latest BigQuery streaming features
6
+ # - Working with high-volume streaming data
7
+ # - Require better error handling and retry logic
8
+ #
9
+ # Differences from v1:
10
+ # - Improved batching and retry logic
11
+ # - Better handling of schema evolution
12
+ # - Enhanced error reporting
13
+ #
14
+ # Requirements:
15
+ # - Service account with bigquery.dataEditor role
16
+ # - Dataset must already exist
17
+
18
+ name: source_to_bigquery_streaming_v2
19
+
20
+ source:
21
+ name: <YOUR_SOURCE>
22
+ stream: <YOUR_STREAM>
23
+ authentication:
24
+ type: api_key
25
+ params:
26
+ token: <YOUR_API_KEY>
27
+
28
+ destination:
29
+ name: bigquery_streaming_v2
30
+ config:
31
+ # GCP Project ID
32
+ project_id: <YOUR_GCP_PROJECT>
33
+
34
+ # BigQuery dataset (must exist)
35
+ dataset_id: <YOUR_DATASET>
36
+
37
+ # Dataset location (US, EU, etc.)
38
+ dataset_location: US
39
+
40
+ # Time partitioning (optional)
41
+ time_partitioning:
42
+ type: DAY # Options: DAY, HOUR, MONTH, YEAR
43
+ field: _bizon_loaded_at
44
+
45
+ # Max rows per streaming request (max 10000)
46
+ bq_max_rows_per_request: 5000
47
+
48
+ # Buffer settings
49
+ buffer_size: 50 # MB before flushing
50
+ buffer_flush_timeout: 300 # Seconds before forcing flush
51
+
52
+ # Authentication (optional - uses ADC if not provided)
53
+ # authentication:
54
+ # service_account_key: |
55
+ # {
56
+ # "type": "service_account",
57
+ # "project_id": "<YOUR_GCP_PROJECT>",
58
+ # ...
59
+ # }
60
+
61
+ # Schema definition for unnesting (optional)
62
+ # Required if unnest: true
63
+ # unnest: true
64
+ # record_schemas:
65
+ # - destination_id: my_table
66
+ # record_schema:
67
+ # - name: id
68
+ # type: STRING
69
+ # mode: REQUIRED
70
+ # - name: created_at
71
+ # type: TIMESTAMP
72
+ # mode: NULLABLE
73
+
74
+ engine:
75
+ backend:
76
+ type: bigquery
77
+ database: <YOUR_GCP_PROJECT>
78
+ schema: bizon_state
79
+ syncCursorInDBEvery: 10