Skip to content
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

WIP: resolve bigquery cache datetime format issue #331

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions examples/run_salesforce_to_bigquery_cache.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
"""
Usage:
poetry run python examples/run_salesforce_to_bigquery_cache.py
"""

from __future__ import annotations

import tempfile
import warnings
from typing import cast

import airbyte as ab
from airbyte.caches.bigquery import BigQueryCache
from airbyte.secrets.base import SecretString
from airbyte.secrets.google_gsm import GoogleGSMSecretManager

warnings.filterwarnings("ignore", message="Cannot create BigQuery Storage client")


AIRBYTE_INTERNAL_GCP_PROJECT = "dataline-integration-testing"
BIGQUERY_SECRET_NAME = "SECRET_DESTINATION-BIGQUERY_CREDENTIALS__CREDS"

secret_mgr = GoogleGSMSecretManager(
project=AIRBYTE_INTERNAL_GCP_PROJECT,
credentials_json=ab.get_secret("GCP_GSM_CREDENTIALS"),
)

source_salesforce_config: dict = cast(
SecretString,
secret_mgr.fetch_connector_secret("source-salesforce"),
).parse_json()
bigquery_destination_config: dict = cast(
SecretString,
secret_mgr.get_secret(BIGQUERY_SECRET_NAME),
).parse_json()


def main() -> None:
source = ab.get_source(
"source-salesforce",
config=source_salesforce_config,
install_if_missing=True,
)
source.check()
source.select_all_streams()

with tempfile.NamedTemporaryFile(mode="w+", delete=False, encoding="utf-8") as temp:
# Write credentials to the temp file
temp.write(bigquery_destination_config["credentials_json"])
temp.flush()
temp.close()

cache = BigQueryCache(
project_name=bigquery_destination_config["project_id"],
dataset_name=bigquery_destination_config.get(
"dataset_id", "pyairbyte_integtest"
),
credentials_path=temp.name,
)

result = source.read(cache)

# Read a second time to make sure table swaps and incremental are working.
result = source.read(cache)

for name, records in result.streams.items():
print(f"Stream {name}: {len(records)} records")


if __name__ == "__main__":
main()
66 changes: 66 additions & 0 deletions examples/run_salesforce_to_bigquery_destination.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
"""
Usage:
poetry run python examples/run_salesforce_to_bigquery_cache.py
"""

from __future__ import annotations

import tempfile
import warnings
from typing import cast

import airbyte as ab
from airbyte.secrets.base import SecretString
from airbyte.secrets.google_gsm import GoogleGSMSecretManager

warnings.filterwarnings("ignore", message="Cannot create BigQuery Storage client")


AIRBYTE_INTERNAL_GCP_PROJECT = "dataline-integration-testing"
BIGQUERY_SECRET_NAME = "SECRET_DESTINATION-BIGQUERY_CREDENTIALS__CREDS"

secret_mgr = GoogleGSMSecretManager(
project=AIRBYTE_INTERNAL_GCP_PROJECT,
credentials_json=ab.get_secret("GCP_GSM_CREDENTIALS"),
)

source_salesforce_config: dict = cast(
SecretString,
secret_mgr.fetch_connector_secret("source-salesforce"),
).parse_json()
bigquery_destination_config: dict = cast(
SecretString,
secret_mgr.get_secret(BIGQUERY_SECRET_NAME),
).parse_json()


def main() -> None:
source = ab.get_source(
"source-salesforce",
config=source_salesforce_config,
install_if_missing=True,
)
source.check()
source.select_all_streams()

with tempfile.NamedTemporaryFile(mode="w+", delete=False, encoding="utf-8") as temp:
# Write credentials to the temp file
temp.write(bigquery_destination_config["credentials_json"])
temp.flush()
temp.close()

destination = ab.get_destination(
"destination-bigquery",
config={**bigquery_destination_config, "dataset_id": "pyairbyte_tests"},
)

destination.write(
source,
cache=ab.get_default_cache(),
# cache=False, # Toggle comment to test with/without caching
)


if __name__ == "__main__":
main()
Loading