forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Destination) - Couchbase connector 🎉 #2
Open
teetangh
wants to merge
448
commits into
master
Choose a base branch
from
DA-547-airbyte-couchbase-destination
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Comment on lines
23
to
56
name: Connector Pre-Release Checks | ||
runs-on: linux-20.04-large # Custom runner, defined in GitHub org settings | ||
if: github.event.pull_request.head.repo.fork != true | ||
if: > | ||
github.event.pull_request.head.repo.fork != true && | ||
github.event.pull_request.draft == false | ||
timeout-minutes: 22 | ||
steps: | ||
- name: Checkout Airbyte | ||
uses: actions/checkout@v4 | ||
- name: Check PAT rate limits | ||
run: | | ||
./tools/bin/find_non_rate_limited_PAT \ | ||
${{ secrets.GH_PAT_BUILD_RUNNER_OSS }} \ | ||
${{ secrets.GH_PAT_BUILD_RUNNER_BACKUP }} | ||
- name: Fetch last commit id from remote branch [PULL REQUESTS] | ||
if: github.event_name == 'pull_request' | ||
id: fetch_last_commit_id_pr | ||
run: echo "commit_id=$(git ls-remote --heads origin refs/heads/${{ github.head_ref }} | cut -f 1)" >> $GITHUB_OUTPUT | ||
- name: Test connectors [PULL REQUESTS] | ||
if: github.event_name == 'pull_request' | ||
uses: ./.github/actions/run-airbyte-ci | ||
with: | ||
context: "pull_request" | ||
dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_2 }} | ||
docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} | ||
docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} | ||
sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} | ||
git_branch: ${{ github.head_ref }} | ||
git_revision: ${{ steps.fetch_last_commit_id_pr.outputs.commit_id }} | ||
github_token: ${{ env.PAT }} | ||
s3_build_cache_access_key_id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }} | ||
s3_build_cache_secret_key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }} | ||
subcommand: "connectors --modified test --only-step=version_inc_check --global-status-check-context='Version increment check for Java connectors' --global-status-check-description='Checking if java connectors modified in this PR got their version bumped'" | ||
subcommand: "connectors --modified test --only-step=version_inc_check --only-step=qa_checks --global-status-check-context='Connectors Pre-Release Check' --global-status-check-description='Checking if connectors modified in this PR are ready for release'" |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
Actions Job or Workflow does not set permissions
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What
Implementation of a Couchbase destination connector that enables Airbyte to write data to Couchbase databases. This connector:
How
The implementation achieves its goals through several key mechanisms:
Connection Management:
Data Handling:
Sync Modes:
Error Handling:
Review guide
destination.py
:check()
: Connection testing and validationwrite()
: Main data writing implementation_prepare_record()
: Record validation and document preparation_flush_buffer()
: Batch writing with retry logic_setup_collection()
: Collection managementUser Impact
Users gain the ability to:
Side effects to consider:
Can this PR be safely reverted and rolled back?
The implementation is self-contained within the destination-couchbase connector and doesn't modify any shared infrastructure. Rolling back would only affect this specific connector's functionality.