-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
395 additions
and
8 deletions.
There are no files selected for viewing
83 changes: 83 additions & 0 deletions
83
components/gcp/bigquery/query/bigquery_query_to_gcs_op.yaml
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,83 @@ | ||
# Export to bucket in gcs | ||
|
||
# Copyright 2018 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. | ||
|
||
name: Bigquery - Query | ||
description: | | ||
A Kubeflow Pipeline component to submit a query to Google Cloud Bigquery | ||
service and dump outputs to a Google Cloud Storage blob. | ||
metadata: | ||
labels: | ||
add-pod-env: 'true' | ||
inputs: | ||
- name: query | ||
description: 'The query used by Bigquery service to fetch the results.' | ||
type: String | ||
- name: project_id | ||
description: 'The project to execute the query job.' | ||
type: GCPProjectID | ||
- name: dataset_id | ||
description: 'The ID of the persistent dataset to keep the results of the query.' | ||
default: '' | ||
type: String | ||
- name: table_id | ||
description: >- | ||
The ID of the table to keep the results of the query. If absent, the operation | ||
will generate a random id for the table. | ||
default: '' | ||
type: String | ||
- name: output_gcs_path | ||
description: 'The path to the Cloud Storage bucket to store the query output.' | ||
default: '' | ||
type: GCSPath | ||
- name: dataset_location | ||
description: 'The location to create the dataset. Defaults to `US`.' | ||
default: 'US' | ||
type: String | ||
- name: job_config | ||
description: >- | ||
The full config spec for the query job.See | ||
[QueryJobConfig](https://googleapis.github.io/google-cloud-python/latest/bigquery/generated/google.cloud.bigquery.job.QueryJobConfig.html#google.cloud.bigquery.job.QueryJobConfig) | ||
for details. | ||
default: '' | ||
type: Dict | ||
- name: output_kfp_path | ||
description: 'The path to where the file should be stored.' | ||
default: '' | ||
type: String | ||
outputs: | ||
- name: output_gcs_path | ||
description: 'The path to the Cloud Storage bucket containing the query output in CSV format.' | ||
type: GCSPath | ||
- name: MLPipeline UI metadata | ||
type: UI metadata | ||
implementation: | ||
container: | ||
image: gcr.io/ds-production-259110/ml-pipeline-gcp | ||
args: [ | ||
--ui_metadata_path, {outputPath: MLPipeline UI metadata}, | ||
kfp_component.google.bigquery, query, | ||
--query, {inputValue: query}, | ||
--project_id, {inputValue: project_id}, | ||
--dataset_id, {inputValue: dataset_id}, | ||
--table_id, {inputValue: table_id}, | ||
--dataset_location, {inputValue: dataset_location}, | ||
--output_gcs_path, {inputValue: output_gcs_path}, | ||
--job_config, {inputValue: job_config}, | ||
] | ||
env: | ||
KFP_POD_NAME: "{{pod.name}}" | ||
fileOutputs: | ||
output_gcs_path: /tmp/kfp/output/bigquery/query-output-path.txt |
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,61 @@ | ||
# Export to file for next processing step in pipeline | ||
|
||
# Copyright 2018 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. | ||
|
||
name: Bigquery - Query | ||
description: | | ||
A Kubeflow Pipeline component to submit a query to Google Cloud Bigquery | ||
service. | ||
metadata: | ||
labels: | ||
add-pod-env: 'true' | ||
inputs: | ||
- name: query | ||
description: 'The query used by Bigquery service to fetch the results.' | ||
type: String | ||
- name: project_id | ||
description: 'The project to execute the query job.' | ||
type: GCPProjectID | ||
- name: output_kfp_path | ||
description: 'The path to where the file should be stored.' | ||
default: '' | ||
type: String | ||
- name: dataset_location | ||
description: 'The location to create the dataset. Defaults to `US`.' | ||
default: 'US' | ||
type: String | ||
- name: job_config | ||
description: >- | ||
The full config spec for the query job.See | ||
[QueryJobConfig](https://googleapis.github.io/google-cloud-python/latest/bigquery/generated/google.cloud.bigquery.job.QueryJobConfig.html#google.cloud.bigquery.job.QueryJobConfig) | ||
for details. | ||
default: '' | ||
type: Dict | ||
outputs: | ||
- name: MLPipeline UI metadata | ||
type: UI metadata | ||
implementation: | ||
container: | ||
image: gcr.io/ds-production-259110/ml-pipeline-gcp | ||
args: [ | ||
--ui_metadata_path, {outputPath: MLPipeline UI metadata}, | ||
kfp_component.google.bigquery, query_only, | ||
--query, {inputValue: query}, | ||
--project_id, {inputValue: project_id}, | ||
--dataset_location, {inputValue: dataset_location}, | ||
--job_config, {inputValue: job_config}, | ||
] | ||
env: | ||
KFP_POD_NAME: "{{pod.name}}" |
69 changes: 69 additions & 0 deletions
69
components/gcp/bigquery/query/biqquery_query_to_table.yaml
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,69 @@ | ||
# export to new table. | ||
|
||
# Copyright 2018 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. | ||
|
||
name: Bigquery - Query | ||
description: | | ||
A Kubeflow Pipeline component to submit a query to Google Cloud Bigquery | ||
service and dump outputs to new table. | ||
metadata: | ||
labels: | ||
add-pod-env: 'true' | ||
inputs: | ||
- name: query | ||
description: 'The query used by Bigquery service to fetch the results.' | ||
type: String | ||
- name: project_id | ||
description: 'The project to execute the query job.' | ||
type: GCPProjectID | ||
- name: dataset_id | ||
description: 'The ID of the persistent dataset to keep the results of the query.' | ||
default: '' | ||
type: String | ||
- name: table_id | ||
description: >- | ||
The ID of the table to keep the results of the query. If absent, the operation | ||
will generate a random id for the table. | ||
default: '' | ||
type: String | ||
- name: dataset_location | ||
description: 'The location to create the dataset. Defaults to `US`.' | ||
default: 'US' | ||
type: String | ||
- name: job_config | ||
description: >- | ||
The full config spec for the query job.See | ||
[QueryJobConfig](https://googleapis.github.io/google-cloud-python/latest/bigquery/generated/google.cloud.bigquery.job.QueryJobConfig.html#google.cloud.bigquery.job.QueryJobConfig) | ||
for details. | ||
default: '' | ||
type: Dict | ||
outputs: | ||
- name: MLPipeline UI metadata | ||
type: UI metadata | ||
implementation: | ||
container: | ||
image: gcr.io/ds-production-259110/ml-pipeline-gcp | ||
args: [ | ||
--ui_metadata_path, {outputPath: MLPipeline UI metadata}, | ||
kfp_component.google.bigquery, query, | ||
--query, {inputValue: query}, | ||
--project_id, {inputValue: project_id}, | ||
--dataset_id, {inputValue: dataset_id}, | ||
--table_id, {inputValue: table_id}, | ||
--dataset_location, {inputValue: dataset_location}, | ||
--job_config, {inputValue: job_config}, | ||
] | ||
env: | ||
KFP_POD_NAME: "{{pod.name}}" |
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
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
Oops, something went wrong.