-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: adds snippet for creating table with external data config (#1420)
* docs: add samples for creating table with external data configuration and creating an external table definition Co-authored-by: Anthonios Partheniou <[email protected]>
- Loading branch information
Showing
4 changed files
with
124 additions
and
1 deletion.
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
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,66 @@ | ||
# Copyright 2022 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 | ||
# | ||
# https://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. | ||
|
||
|
||
def create_table_external_data_configuration( | ||
table_id: str, | ||
) -> None: | ||
"""Create a table using an external data source""" | ||
orig_table_id = table_id | ||
# [START bigquery_create_table_external_data_configuration] | ||
# [START bigquery_create_external_table_definition] | ||
from google.cloud import bigquery | ||
|
||
# Construct a BigQuery client object. | ||
client = bigquery.Client() | ||
|
||
# TODO(developer): Set table_id to the ID of the table to create. | ||
table_id = "your-project.your_dataset.your_table_name" | ||
# [END bigquery_create_table_external_data_configuration] | ||
table_id = orig_table_id | ||
# [START bigquery_create_table_external_data_configuration] | ||
|
||
# TODO(developer): Set the external source format of your table. | ||
# Note that the set of allowed values for external data sources is | ||
# different than the set used for loading data (see :class:`~google.cloud.bigquery.job.SourceFormat`). | ||
external_source_format = "AVRO" | ||
|
||
# TODO(developer): Set the source_uris to point to your data in Google Cloud | ||
source_uris = [ | ||
"gs://cloud-samples-data/bigquery/federated-formats-reference-file-schema/a-twitter.avro", | ||
"gs://cloud-samples-data/bigquery/federated-formats-reference-file-schema/b-twitter.avro", | ||
"gs://cloud-samples-data/bigquery/federated-formats-reference-file-schema/c-twitter.avro", | ||
] | ||
|
||
# Create ExternalConfig object with external source format | ||
external_config = bigquery.ExternalConfig(external_source_format) | ||
# Set source_uris that point to your data in Google Cloud | ||
external_config.source_uris = source_uris | ||
|
||
# TODO(developer) You have the option to set a reference_file_schema_uri, which points to | ||
# a reference file for the table schema | ||
reference_file_schema_uri = "gs://cloud-samples-data/bigquery/federated-formats-reference-file-schema/b-twitter.avro" | ||
|
||
external_config.reference_file_schema_uri = reference_file_schema_uri | ||
# [END bigquery_create_external_table_definition] | ||
|
||
table = bigquery.Table(table_id) | ||
# Set the external data configuration of the table | ||
table.external_data_configuration = external_config | ||
table = client.create_table(table) # Make an API request. | ||
|
||
print( | ||
f"Created table with external source format {table.external_data_configuration.source_format}" | ||
) | ||
# [END bigquery_create_table_external_data_configuration] |
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
32 changes: 32 additions & 0 deletions
32
samples/tests/test_create_table_external_data_configuration.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,32 @@ | ||
# Copyright 2022 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 | ||
# | ||
# https://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 typing | ||
|
||
from .. import create_table_external_data_configuration | ||
|
||
if typing.TYPE_CHECKING: | ||
import pytest | ||
|
||
|
||
def test_create_table_external_data_configuration( | ||
capsys: "pytest.CaptureFixture[str]", | ||
random_table_id: str, | ||
) -> None: | ||
|
||
create_table_external_data_configuration.create_table_external_data_configuration( | ||
random_table_id | ||
) | ||
out, _ = capsys.readouterr() | ||
assert "Created table with external source format AVRO" in out |