-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
samples: export data to BigQuery (#45)
- Loading branch information
Showing
5 changed files
with
134 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Copyright 2021 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# [START contactcenterinsights_export_to_bigquery] | ||
from google.cloud import contact_center_insights_v1 | ||
|
||
|
||
def export_to_bigquery( | ||
project_id: str, | ||
bigquery_project_id: str, | ||
bigquery_dataset_id: str, | ||
bigquery_table_id: str, | ||
) -> None: | ||
# Construct an export request. | ||
request = contact_center_insights_v1.ExportInsightsDataRequest() | ||
request.parent = contact_center_insights_v1.ContactCenterInsightsClient.common_location_path( | ||
project_id, "us-central1" | ||
) | ||
request.big_query_destination.project_id = bigquery_project_id | ||
request.big_query_destination.dataset = bigquery_dataset_id | ||
request.big_query_destination.table = bigquery_table_id | ||
request.filter = 'agent_id="007"' | ||
|
||
# Call the Insights client to export data to BigQuery. | ||
insights_client = contact_center_insights_v1.ContactCenterInsightsClient() | ||
export_operation = insights_client.export_insights_data(request=request) | ||
export_operation.result(timeout=600000) | ||
print("Exported data to BigQuery") | ||
|
||
|
||
# [END contactcenterinsights_export_to_bigquery] |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
google-api-core==2.0.1 | ||
google-cloud-bigquery==2.26.0 | ||
google-cloud-contact-center-insights==0.2.0 |
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
65 changes: 65 additions & 0 deletions
65
contact-center-insights/snippets/test_export_to_bigquery.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Copyright 2021 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
import uuid | ||
|
||
import google.auth | ||
|
||
from google.cloud import bigquery | ||
|
||
import pytest | ||
|
||
import export_to_bigquery | ||
|
||
GCLOUD_TESTS_PREFIX = "python_samples_tests" | ||
|
||
|
||
@pytest.fixture | ||
def project_id(): | ||
_, project_id = google.auth.default() | ||
return project_id | ||
|
||
|
||
@pytest.fixture | ||
def unique_id(): | ||
uuid_hex = uuid.uuid4().hex[:8] | ||
return f"{GCLOUD_TESTS_PREFIX}_{uuid_hex}" | ||
|
||
|
||
@pytest.fixture | ||
def bigquery_resources(project_id, unique_id): | ||
# Create a BigQuery dataset. | ||
bigquery_client = bigquery.Client() | ||
dataset_id = unique_id | ||
table_id = unique_id | ||
|
||
dataset = bigquery.Dataset(f"{project_id}.{dataset_id}") | ||
dataset.location = "US" | ||
bigquery_client.create_dataset(dataset, timeout=30) | ||
|
||
# Create a BigQuery table under the created dataset. | ||
table = bigquery.Table(f"{project_id}.{dataset_id}.{table_id}") | ||
bigquery_client.create_table(table) | ||
|
||
yield dataset_id, table_id | ||
|
||
# Delete the BigQuery dataset and table. | ||
bigquery_client.delete_dataset(dataset_id, delete_contents=True) | ||
|
||
|
||
def test_export_data_to_bigquery(capsys, project_id, bigquery_resources): | ||
dataset_id, table_id = bigquery_resources | ||
export_to_bigquery.export_to_bigquery(project_id, project_id, dataset_id, table_id) | ||
out, err = capsys.readouterr() | ||
assert "Exported data to BigQuery" in out |