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
Refine Airbyte-Couchbase integration tutorial by clarifying sync interval details and updating timestamp fields in examples. Adjusted terminology for consistency and improved accuracy in data extraction references.
Copy file name to clipboardExpand all lines: tutorial/markdown/connectors/airbyte/airbyte-couchbase-integration.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Airbyte is an open-source data integration platform that enables you to move dat
30
30
-**Data ingestion**: Load data from SaaS applications, databases, or APIs into Couchbase
31
31
-**Change data capture**: Track and replicate document changes with periodic syncs
32
32
33
-
> **Note**: Airbyte is designed for batch/periodic data synchronization (typically 5-60 minute intervals), not sub-second real-time change tracking. For true real-time CDC, consider Couchbase's built-in XDCR or Eventing services.
33
+
> **Note**: Airbyte is designed for batch/periodic data synchronization, not sub-second real-time change tracking. Airbyte Cloud supports minimum 60-minute intervals (hourly syncs); self-hosted deployments may support more frequent syncs with configuration. For true real-time CDC, consider Couchbase's built-in XDCR or Eventing services.
34
34
35
35
This tutorial will guide you through setting up Airbyte with Couchbase Capella (cloud-hosted) as both source and destination, covering configuration, sync modes, common patterns, and best practices.
36
36
@@ -367,7 +367,7 @@ All documents written to Couchbase by Airbyte follow this structure:
367
367
"id": "stream_name::key_value",
368
368
"type": "airbyte_record",
369
369
"stream": "source_stream_name",
370
-
"emitted_at": 1642526400000,
370
+
"_airbyte_extracted_at": 1642526400000,
371
371
"data": {
372
372
// Original record data from source
373
373
},
@@ -380,7 +380,7 @@ All documents written to Couchbase by Airbyte follow this structure:
380
380
-`id`: Composite document ID (based on sync mode and primary key)
381
381
-`type`: Always "airbyte_record"
382
382
-`stream`: Name of the source stream
383
-
-`emitted_at`: Unix timestamp (milliseconds) when record was synced
383
+
-`_airbyte_extracted_at`: Unix timestamp (milliseconds) when Airbyte extracted the record from source
0 commit comments