Source code for airflow.providers.google.cloud.operators.spanner
## 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."""This module contains Google Spanner operators."""from__future__importannotationsfromtypingimportTYPE_CHECKING,Sequencefromairflow.exceptionsimportAirflowExceptionfromairflow.modelsimportBaseOperatorfromairflow.providers.google.cloud.hooks.spannerimportSpannerHookfromairflow.providers.google.cloud.links.spannerimportSpannerDatabaseLink,SpannerInstanceLinkifTYPE_CHECKING:fromairflow.utils.contextimportContext
[docs]classSpannerDeployInstanceOperator(BaseOperator):""" 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. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:SpannerDeployInstanceOperator` :param instance_id: Cloud Spanner instance ID. :param configuration_name: The name of the Cloud Spanner instance configuration defining how the instance will be created. Required for instances that do not yet exist. :param node_count: (Optional) The number of nodes allocated to the Cloud Spanner instance. :param display_name: (Optional) The display name for the Cloud Spanner instance in the Google Cloud Console. (Must be between 4 and 30 characters.) If this value is not set in the constructor, the name is the same as the instance ID. :param project_id: Optional, the ID of the project which owns the Cloud Spanner Database. If set to None or missing, the default project_id from the Google Cloud connection is used. :param gcp_conn_id: The connection ID used to connect to Google Cloud. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """# [START gcp_spanner_deploy_template_fields]
def__init__(self,*,instance_id:str,configuration_name:str,node_count:int,display_name:str,project_id:str|None=None,gcp_conn_id:str='google_cloud_default',impersonation_chain:str|Sequence[str]|None=None,**kwargs,)->None:self.instance_id=instance_idself.project_id=project_idself.configuration_name=configuration_nameself.node_count=node_countself.display_name=display_nameself.gcp_conn_id=gcp_conn_idself._validate_inputs()self.impersonation_chain=impersonation_chainsuper().__init__(**kwargs)def_validate_inputs(self)->None:ifself.project_id=='':raiseAirflowException("The required parameter 'project_id' is empty")ifnotself.instance_id:raiseAirflowException("The required parameter 'instance_id' is empty or None")
[docs]classSpannerDeleteInstanceOperator(BaseOperator):""" Deletes a Cloud Spanner instance. If an instance does not exist, no action is taken and the operator succeeds. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:SpannerDeleteInstanceOperator` :param instance_id: The Cloud Spanner instance ID. :param project_id: Optional, the ID of the project that owns the Cloud Spanner Database. If set to None or missing, the default project_id from the Google Cloud connection is used. :param gcp_conn_id: The connection ID used to connect to Google Cloud. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """# [START gcp_spanner_delete_template_fields]
)# [END gcp_spanner_delete_template_fields]def__init__(self,*,instance_id:str,project_id:str|None=None,gcp_conn_id:str='google_cloud_default',impersonation_chain:str|Sequence[str]|None=None,**kwargs,)->None:self.instance_id=instance_idself.project_id=project_idself.gcp_conn_id=gcp_conn_idself._validate_inputs()self.impersonation_chain=impersonation_chainsuper().__init__(**kwargs)def_validate_inputs(self)->None:ifself.project_id=='':raiseAirflowException("The required parameter 'project_id' is empty")ifnotself.instance_id:raiseAirflowException("The required parameter 'instance_id' is empty or None")
[docs]defexecute(self,context:Context)->bool|None:hook=SpannerHook(gcp_conn_id=self.gcp_conn_id,impersonation_chain=self.impersonation_chain,)ifhook.get_instance(project_id=self.project_id,instance_id=self.instance_id):returnhook.delete_instance(project_id=self.project_id,instance_id=self.instance_id)else:self.log.info("Instance '%s' does not exist in project '%s'. Aborting delete.",self.instance_id,self.project_id,)returnTrue
[docs]classSpannerQueryDatabaseInstanceOperator(BaseOperator):""" Executes an arbitrary DML query (INSERT, UPDATE, DELETE). .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:SpannerQueryDatabaseInstanceOperator` :param instance_id: The Cloud Spanner instance ID. :param database_id: The Cloud Spanner database ID. :param query: The query or list of queries to be executed. Can be a path to a SQL file. :param project_id: Optional, the ID of the project that owns the Cloud Spanner Database. If set to None or missing, the default project_id from the Google Cloud connection is used. :param gcp_conn_id: The connection ID used to connect to Google Cloud. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """# [START gcp_spanner_query_template_fields]
def__init__(self,*,instance_id:str,database_id:str,query:str|list[str],project_id:str|None=None,gcp_conn_id:str='google_cloud_default',impersonation_chain:str|Sequence[str]|None=None,**kwargs,)->None:self.instance_id=instance_idself.project_id=project_idself.database_id=database_idself.query=queryself.gcp_conn_id=gcp_conn_idself._validate_inputs()self.impersonation_chain=impersonation_chainsuper().__init__(**kwargs)def_validate_inputs(self)->None:ifself.project_id=='':raiseAirflowException("The required parameter 'project_id' is empty")ifnotself.instance_id:raiseAirflowException("The required parameter 'instance_id' is empty or None")ifnotself.database_id:raiseAirflowException("The required parameter 'database_id' is empty or None")ifnotself.query:raiseAirflowException("The required parameter 'query' is empty")
[docs]defexecute(self,context:Context):hook=SpannerHook(gcp_conn_id=self.gcp_conn_id,impersonation_chain=self.impersonation_chain,)ifisinstance(self.query,str):queries=[x.strip()forxinself.query.split(';')]self.sanitize_queries(queries)else:queries=self.queryself.log.info("Executing DML query(-ies) on projects/%s/instances/%s/databases/%s",self.project_id,self.instance_id,self.database_id,)self.log.info(queries)hook.execute_dml(project_id=self.project_id,instance_id=self.instance_id,database_id=self.database_id,queries=queries,)SpannerDatabaseLink.persist(context=context,task_instance=self,instance_id=self.instance_id,database_id=self.database_id,project_id=self.project_idorhook.project_id,
[docs]classSpannerDeployDatabaseInstanceOperator(BaseOperator):""" Creates a new Cloud Spanner database, or if database exists, the operator does nothing. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:SpannerDeployDatabaseInstanceOperator` :param instance_id: The Cloud Spanner instance ID. :param database_id: The Cloud Spanner database ID. :param ddl_statements: The string list containing DDL for the new database. :param project_id: Optional, the ID of the project that owns the Cloud Spanner Database. If set to None or missing, the default project_id from the Google Cloud connection is used. :param gcp_conn_id: The connection ID used to connect to Google Cloud. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """# [START gcp_spanner_database_deploy_template_fields]
def__init__(self,*,instance_id:str,database_id:str,ddl_statements:list[str],project_id:str|None=None,gcp_conn_id:str='google_cloud_default',impersonation_chain:str|Sequence[str]|None=None,**kwargs,)->None:self.instance_id=instance_idself.project_id=project_idself.database_id=database_idself.ddl_statements=ddl_statementsself.gcp_conn_id=gcp_conn_idself._validate_inputs()self.impersonation_chain=impersonation_chainsuper().__init__(**kwargs)def_validate_inputs(self)->None:ifself.project_id=='':raiseAirflowException("The required parameter 'project_id' is empty")ifnotself.instance_id:raiseAirflowException("The required parameter 'instance_id' is empty or None")ifnotself.database_id:raiseAirflowException("The required parameter 'database_id' is empty or None")
[docs]defexecute(self,context:Context)->bool|None:hook=SpannerHook(gcp_conn_id=self.gcp_conn_id,impersonation_chain=self.impersonation_chain,)SpannerDatabaseLink.persist(context=context,task_instance=self,instance_id=self.instance_id,database_id=self.database_id,project_id=self.project_idorhook.project_id,)ifnothook.get_database(project_id=self.project_id,instance_id=self.instance_id,database_id=self.database_id):self.log.info("Creating Cloud Spanner database '%s' in project '%s' and instance '%s'",self.database_id,self.project_id,self.instance_id,)returnhook.create_database(project_id=self.project_id,instance_id=self.instance_id,database_id=self.database_id,ddl_statements=self.ddl_statements,)else:self.log.info("The database '%s' in project '%s' and instance '%s'"" already exists. Nothing to do. Exiting.",self.database_id,self.project_id,self.instance_id,)returnTrue
[docs]classSpannerUpdateDatabaseInstanceOperator(BaseOperator):""" Updates a Cloud Spanner database with the specified DDL statement. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:SpannerUpdateDatabaseInstanceOperator` :param instance_id: The Cloud Spanner instance ID. :param database_id: The Cloud Spanner database ID. :param ddl_statements: The string list containing DDL to apply to the database. :param project_id: Optional, the ID of the project that owns the Cloud Spanner Database. If set to None or missing, the default project_id from the Google Cloud connection is used. :param operation_id: (Optional) Unique per database operation id that can be specified to implement idempotency check. :param gcp_conn_id: The connection ID used to connect to Google Cloud. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """# [START gcp_spanner_database_update_template_fields]
def__init__(self,*,instance_id:str,database_id:str,ddl_statements:list[str],project_id:str|None=None,operation_id:str|None=None,gcp_conn_id:str='google_cloud_default',impersonation_chain:str|Sequence[str]|None=None,**kwargs,)->None:self.instance_id=instance_idself.project_id=project_idself.database_id=database_idself.ddl_statements=ddl_statementsself.operation_id=operation_idself.gcp_conn_id=gcp_conn_idself._validate_inputs()self.impersonation_chain=impersonation_chainsuper().__init__(**kwargs)def_validate_inputs(self)->None:ifself.project_id=='':raiseAirflowException("The required parameter 'project_id' is empty")ifnotself.instance_id:raiseAirflowException("The required parameter 'instance_id' is empty or None")ifnotself.database_id:raiseAirflowException("The required parameter 'database_id' is empty or None")ifnotself.ddl_statements:raiseAirflowException("The required parameter 'ddl_statements' is empty or None")
[docs]defexecute(self,context:Context)->None:hook=SpannerHook(gcp_conn_id=self.gcp_conn_id,impersonation_chain=self.impersonation_chain,)ifnothook.get_database(project_id=self.project_id,instance_id=self.instance_id,database_id=self.database_id):raiseAirflowException(f"The Cloud Spanner database '{self.database_id}' in project '{self.project_id}' "f"and instance '{self.instance_id}' is missing. "f"Create the database first before you can update it.")else:SpannerDatabaseLink.persist(context=context,task_instance=self,instance_id=self.instance_id,database_id=self.database_id,project_id=self.project_idorhook.project_id,)returnhook.update_database(project_id=self.project_id,instance_id=self.instance_id,database_id=self.database_id,ddl_statements=self.ddl_statements,operation_id=self.operation_id,
)
[docs]classSpannerDeleteDatabaseInstanceOperator(BaseOperator):""" Deletes a Cloud Spanner database. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:SpannerDeleteDatabaseInstanceOperator` :param instance_id: Cloud Spanner instance ID. :param database_id: Cloud Spanner database ID. :param project_id: Optional, the ID of the project that owns the Cloud Spanner Database. If set to None or missing, the default project_id from the Google Cloud connection is used. :param gcp_conn_id: The connection ID used to connect to Google Cloud. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """# [START gcp_spanner_database_delete_template_fields]
)# [END gcp_spanner_database_delete_template_fields]def__init__(self,*,instance_id:str,database_id:str,project_id:str|None=None,gcp_conn_id:str='google_cloud_default',impersonation_chain:str|Sequence[str]|None=None,**kwargs,)->None:self.instance_id=instance_idself.project_id=project_idself.database_id=database_idself.gcp_conn_id=gcp_conn_idself._validate_inputs()self.impersonation_chain=impersonation_chainsuper().__init__(**kwargs)def_validate_inputs(self)->None:ifself.project_id=='':raiseAirflowException("The required parameter 'project_id' is empty")ifnotself.instance_id:raiseAirflowException("The required parameter 'instance_id' is empty or None")ifnotself.database_id:raiseAirflowException("The required parameter 'database_id' is empty or None")
[docs]defexecute(self,context:Context)->bool:hook=SpannerHook(gcp_conn_id=self.gcp_conn_id,impersonation_chain=self.impersonation_chain,)database=hook.get_database(project_id=self.project_id,instance_id=self.instance_id,database_id=self.database_id)ifnotdatabase:self.log.info("The Cloud Spanner database was missing: ""'%s' in project '%s' and instance '%s'. Assuming success.",self.database_id,self.project_id,self.instance_id,)returnTrueelse:returnhook.delete_database(project_id=self.project_id,instance_id=self.instance_id,database_id=self.database_id