airflow.providers.google.cloud.transfers.gcs_to_gcs
¶
This module contains a Google Cloud Storage operator.
Module Contents¶
-
class
airflow.providers.google.cloud.transfers.gcs_to_gcs.
GCSToGCSOperator
(*, source_bucket, source_object=None, source_objects=None, destination_bucket=None, destination_object=None, delimiter=None, move_object=False, replace=True, gcp_conn_id='google_cloud_default', google_cloud_storage_conn_id=None, delegate_to=None, last_modified_time=None, maximum_modified_time=None, is_older_than=None, impersonation_chain: Optional[Union[str, Sequence[str]]] = None, **kwargs)[source]¶ Bases:
airflow.models.BaseOperator
Copies objects from a bucket to another, with renaming if requested.
See also
For more information on how to use this operator, take a look at the guide: GCSToGCSOperator
- Parameters
source_bucket (str) – The source Google Cloud Storage bucket where the object is. (templated)
source_object (str) – The source name of the object to copy in the Google cloud storage bucket. (templated) You can use only one wildcard for objects (filenames) within your bucket. The wildcard can appear inside the object name or at the end of the object name. Appending a wildcard to the bucket name is unsupported.
source_objects (List[str]) – A list of source name of the objects to copy in the Google cloud storage bucket. (templated)
destination_bucket (str) – The destination Google Cloud Storage bucket where the object should be. If the destination_bucket is None, it defaults to source_bucket. (templated)
destination_object (str) – The destination name of the object in the destination Google Cloud Storage bucket. (templated) If a wildcard is supplied in the source_object argument, this is the prefix that will be prepended to the final destination objects’ paths. Note that the source path’s part before the wildcard will be removed; if it needs to be retained it should be appended to destination_object. For example, with prefix
foo/*
and destination_objectblah/
, the filefoo/baz
will be copied toblah/baz
; to retain the prefix write the destination_object as e.g.blah/foo
, in which case the copied file will be namedblah/foo/baz
. The same thing applies to source objects inside source_objects.move_object (bool) – When move object is True, the object is moved instead of copied to the new location. This is the equivalent of a mv command as opposed to a cp command.
replace (bool) – Whether you want to replace existing destination files or not.
delimiter (str) – This is used to restrict the result to only the ‘files’ in a given ‘folder’. If source_objects = [‘foo/bah/’] and delimiter = ‘.avro’, then only the ‘files’ in the folder ‘foo/bah/’ with ‘.avro’ delimiter will be copied to the destination object.
gcp_conn_id (str) – (Optional) The connection ID used to connect to Google Cloud.
google_cloud_storage_conn_id (str) – (Deprecated) The connection ID used to connect to Google Cloud. This parameter has been deprecated. You should pass the gcp_conn_id parameter instead.
delegate_to (str) – The account to impersonate using domain-wide delegation of authority, if any. For this to work, the service account making the request must have domain-wide delegation enabled.
last_modified_time (datetime.datetime) – When specified, the objects will be copied or moved, only if they were modified after last_modified_time. If tzinfo has not been set, UTC will be assumed.
maximum_modified_time (datetime.datetime) – When specified, the objects will be copied or moved, only if they were modified before maximum_modified_time. If tzinfo has not been set, UTC will be assumed.
is_older_than (int) – When specified, the objects will be copied if they are older than the specified time in seconds.
impersonation_chain (Union[str, Sequence[str]]) – 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).
- Example
The following Operator would copy a single file named
sales/sales-2017/january.avro
in thedata
bucket to the file namedcopied_sales/2017/january-backup.avro
in thedata_backup
bucketcopy_single_file = GCSToGCSOperator( task_id='copy_single_file', source_bucket='data', source_objects=['sales/sales-2017/january.avro'], destination_bucket='data_backup', destination_object='copied_sales/2017/january-backup.avro', gcp_conn_id=google_cloud_conn_id )
The following Operator would copy all the Avro files from
sales/sales-2017
folder (i.e. with names starting with that prefix) indata
bucket to thecopied_sales/2017
folder in thedata_backup
bucket.copy_files = GCSToGCSOperator( task_id='copy_files', source_bucket='data', source_objects=['sales/sales-2017'], destination_bucket='data_backup', destination_object='copied_sales/2017/', delimiter='.avro' gcp_conn_id=google_cloud_conn_id ) Or :: copy_files = GCSToGCSOperator( task_id='copy_files', source_bucket='data', source_object='sales/sales-2017/*.avro', destination_bucket='data_backup', destination_object='copied_sales/2017/', gcp_conn_id=google_cloud_conn_id )
The following Operator would move all the Avro files from
sales/sales-2017
folder (i.e. with names starting with that prefix) indata
bucket to the same folder in thedata_backup
bucket, deleting the original files in the process.move_files = GCSToGCSOperator( task_id='move_files', source_bucket='data', source_object='sales/sales-2017/*.avro', destination_bucket='data_backup', move_object=True, gcp_conn_id=google_cloud_conn_id )
- The following Operator would move all the Avro files from
sales/sales-2019
and
sales/sales-2020` folder in ``data
bucket to the same folder in thedata_backup
bucket, deleting the original files in the process.move_files = GCSToGCSOperator( task_id='move_files', source_bucket='data', source_objects=['sales/sales-2019/*.avro', 'sales/sales-2020'], destination_bucket='data_backup', delimiter='.avro', move_object=True, gcp_conn_id=google_cloud_conn_id )