blob: ca43fbd1e4e1d98bf108c3ce57067d43c67193e6 [file] [log] [blame]
.. Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.
Google Cloud Spanner Operators
==============================
.. contents::
:depth: 1
:local:
Prerequisite Tasks
------------------
.. include::/operators/_partials/prerequisite_tasks.rst
.. _howto/operator:SpannerDeployInstanceOperator:
SpannerDeployInstanceOperator
-----------------------------
Creates a new Cloud Spanner instance, or if an instance with the same instance id
exists in the specified project, updates the Cloud Spanner instance.
For parameter definition, take a look at
:class:`~airflow.providers.google.cloud.operators.spanner.SpannerDeployInstanceOperator`.
Using the operator
""""""""""""""""""
You can create the operator with or without project id. If project id is missing
it will be retrieved from the Google Cloud connection used. Both variants are shown:
.. exampleinclude:: /../../airflow/providers/google/cloud/example_dags/example_spanner.py
:language: python
:dedent: 4
:start-after: [START howto_operator_spanner_deploy]
:end-before: [END howto_operator_spanner_deploy]
Templating
""""""""""
.. literalinclude:: /../../airflow/providers/google/cloud/operators/spanner.py
:language: python
:dedent: 4
:start-after: [START gcp_spanner_deploy_template_fields]
:end-before: [END gcp_spanner_deploy_template_fields]
More information
""""""""""""""""
See Google Cloud Spanner API documentation `to create a new instance
<https://cloud.google.com/spanner/docs/reference/rest/v1/projects.instances/create>`_.
.. _howto/operator:SpannerDeleteDatabaseInstanceOperator:
SpannerDeleteDatabaseInstanceOperator
-------------------------------------
Deletes a database from the specified Cloud Spanner instance. If the database does not
exist, no action is taken, and the operator succeeds.
For parameter definition, take a look at
:class:`~airflow.providers.google.cloud.operators.spanner.SpannerDeleteDatabaseInstanceOperator`.
Using the operator
""""""""""""""""""
You can create the operator with or without project id. If project id is missing
it will be retrieved from the Google Cloud connection used. Both variants are shown:
.. exampleinclude:: /../../airflow/providers/google/cloud/example_dags/example_spanner.py
:language: python
:dedent: 4
:start-after: [START howto_operator_spanner_database_delete]
:end-before: [END howto_operator_spanner_database_delete]
Templating
""""""""""
.. literalinclude:: /../../airflow/providers/google/cloud/operators/spanner.py
:language: python
:dedent: 4
:start-after: [START gcp_spanner_delete_template_fields]
:end-before: [END gcp_spanner_delete_template_fields]
More information
""""""""""""""""
See `Google Cloud Spanner API documentation to drop an instance of a database
<https://cloud.google.com/spanner/docs/reference/rest/v1/projects.instances.databases/dropDatabase>`_.
.. _howto/operator:SpannerDeployDatabaseInstanceOperator:
SpannerDeployDatabaseInstanceOperator
-------------------------------------
Creates a new Cloud Spanner database in the specified instance, or if the
desired database exists, assumes success with no changes applied to database
configuration. No structure of the database is verified - it's enough if the database exists
with the same name.
For parameter definition, take a look at
:class:`~airflow.providers.google.cloud.operators.spanner.SpannerDeployDatabaseInstanceOperator`.
Using the operator
""""""""""""""""""
You can create the operator with or without project id. If project id is missing
it will be retrieved from the Google Cloud connection used. Both variants are shown:
.. exampleinclude:: /../../airflow/providers/google/cloud/example_dags/example_spanner.py
:language: python
:dedent: 4
:start-after: [START howto_operator_spanner_database_deploy]
:end-before: [END howto_operator_spanner_database_deploy]
Templating
""""""""""
.. literalinclude:: /../../airflow/providers/google/cloud/operators/spanner.py
:language: python
:dedent: 4
:start-after: [START gcp_spanner_database_deploy_template_fields]
:end-before: [END gcp_spanner_database_deploy_template_fields]
More information
""""""""""""""""
See Google Cloud Spanner API documentation `to create a new database
<https://cloud.google.com/spanner/docs/reference/rest/v1/projects.instances.databases/create>`_.
.. _howto/operator:SpannerUpdateDatabaseInstanceOperator:
SpannerUpdateDatabaseInstanceOperator
-------------------------------------
Runs a DDL query in a Cloud Spanner database and allows you to modify the structure of an
existing database.
You can optionally specify an operation_id parameter which simplifies determining whether
the statements were executed in case the update_database call is replayed
(idempotency check). The operation_id should be unique within the database, and must be
a valid identifier: ``[a-z][a-z0-9_]*``. More information can be found in
`the documentation of updateDdl API <https://cloud.google.com/spanner/docs/reference/rest/v1/projects.instances.databases/updateDdl>`_
For parameter definition take a look at
:class:`~airflow.providers.google.cloud.operators.spanner.SpannerUpdateDatabaseInstanceOperator`.
Using the operator
""""""""""""""""""
You can create the operator with or without project id. If project id is missing
it will be retrieved from the Google Cloud connection used. Both variants are shown:
.. exampleinclude:: /../../airflow/providers/google/cloud/example_dags/example_spanner.py
:language: python
:dedent: 4
:start-after: [START howto_operator_spanner_database_update]
:end-before: [END howto_operator_spanner_database_update]
.. exampleinclude:: /../../airflow/providers/google/cloud/example_dags/example_spanner.py
:language: python
:dedent: 4
:start-after: [START howto_operator_spanner_database_update_idempotent]
:end-before: [END howto_operator_spanner_database_update_idempotent]
Templating
""""""""""
.. literalinclude:: /../../airflow/providers/google/cloud/operators/spanner.py
:language: python
:dedent: 4
:start-after: [START gcp_spanner_database_update_template_fields]
:end-before: [END gcp_spanner_database_update_template_fields]
More information
""""""""""""""""
See Google Cloud Spanner API documentation for `database update_ddl
<https://cloud.google.com/spanner/docs/reference/rest/v1/projects.instances.databases/updateDdl>`_.
.. _howto/operator:SpannerQueryDatabaseInstanceOperator:
SpannerQueryDatabaseInstanceOperator
------------------------------------
Executes an arbitrary DML query (INSERT, UPDATE, DELETE).
For parameter definition take a look at
:class:`~airflow.providers.google.cloud.operators.spanner.SpannerQueryDatabaseInstanceOperator`.
Using the operator
""""""""""""""""""
You can create the operator with or without project id. If project id is missing
it will be retrieved from the Google Cloud connection used. Both variants are shown:
.. exampleinclude:: /../../airflow/providers/google/cloud/example_dags/example_spanner.py
:language: python
:dedent: 4
:start-after: [START howto_operator_spanner_query]
:end-before: [END howto_operator_spanner_query]
Templating
""""""""""
.. literalinclude:: /../../airflow/providers/google/cloud/operators/spanner.py
:language: python
:dedent: 4
:start-after: [START gcp_spanner_query_template_fields]
:end-before: [END gcp_spanner_query_template_fields]
More information
""""""""""""""""
See Google Cloud Spanner API documentation for more information about `DML syntax
<https://cloud.google.com/spanner/docs/dml-syntax>`_.
.. _howto/operator:SpannerDeleteInstanceOperator:
SpannerDeleteInstanceOperator
-----------------------------
Deletes a Cloud Spanner instance. If an instance does not exist, no action is taken,
and the operator succeeds.
For parameter definition take a look at
:class:`~airflow.providers.google.cloud.operators.spanner.SpannerDeleteInstanceOperator`.
Using the operator
""""""""""""""""""
You can create the operator with or without project id. If project id is missing
it will be retrieved from the Google Cloud connection used. Both variants are shown:
.. exampleinclude:: /../../airflow/providers/google/cloud/example_dags/example_spanner.py
:language: python
:dedent: 4
:start-after: [START howto_operator_spanner_delete]
:end-before: [END howto_operator_spanner_delete]
Templating
""""""""""
.. literalinclude:: /../../airflow/providers/google/cloud/operators/spanner.py
:language: python
:dedent: 4
:start-after: [START gcp_spanner_delete_template_fields]
:end-before: [END gcp_spanner_delete_template_fields]
More information
""""""""""""""""
See Google Cloud Spanner API documentation to `delete an instance
<https://cloud.google.com/spanner/docs/reference/rest/v1/projects.instances/delete>`_.
Reference
---------
For further information, look at:
* `Client Library Documentation <https://googleapis.github.io/google-cloud-python/latest/spanner/index.html>`__
* `Product Documentation <https://cloud.google.com/spanner/docs/>`__