airflow.providers.amazon.aws.transfers.exasol_to_s3
¶
Transfers data from Exasol database into a S3 Bucket.
Module Contents¶
-
class
airflow.providers.amazon.aws.transfers.exasol_to_s3.
ExasolToS3Operator
(*, query_or_table: str, key: str, bucket_name: Optional[str] = None, replace: bool = False, encrypt: bool = False, gzip: bool = False, acl_policy: Optional[str] = None, query_params: Optional[Dict] = None, export_params: Optional[Dict] = None, exasol_conn_id: str = 'exasol_default', aws_conn_id: str = 'aws_default', **kwargs)[source]¶ Bases:
airflow.models.BaseOperator
Export data from Exasol database to AWS S3 bucket.
- Parameters
query_or_table (str) -- the sql statement to be executed or table name to export
key (str) -- S3 key that will point to the file
bucket_name (str) -- Name of the bucket in which to store the file
replace (bool) -- A flag to decide whether or not to overwrite the key if it already exists. If replace is False and the key exists, an error will be raised.
encrypt (bool) -- If True, the file will be encrypted on the server-side by S3 and will be stored in an encrypted form while at rest in S3.
gzip (bool) -- If True, the file will be compressed locally
acl_policy (str) -- String specifying the canned ACL policy for the file being uploaded to the S3 bucket.
query_params (dict) -- Query parameters passed to underlying
export_to_file
method ofExaConnection
.export_params (dict) -- Extra parameters passed to underlying
export_to_file
method ofExaConnection
.