Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ Here is the list of packages and their extras:
Package Extras
========================== ===========================
airbyte http
amazon apache.hive,cncf.kubernetes,exasol,ftp,google,imap,mongo,mysql,salesforce,ssh
amazon apache.hive,cncf.kubernetes,exasol,ftp,google,imap,mongo,salesforce,ssh
apache.beam google
apache.druid apache.hive
apache.hive amazon,microsoft.mssql,mysql,presto,samba,vertica
Expand Down
160 changes: 27 additions & 133 deletions airflow/providers/amazon/aws/transfers/mysql_to_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,164 +16,58 @@
# specific language governing permissions and limitations
# under the License.

import os
import warnings
from collections import namedtuple
from enum import Enum
from tempfile import NamedTemporaryFile
from typing import TYPE_CHECKING, Optional, Sequence, Union

import numpy as np
import pandas as pd
from typing_extensions import Literal
from typing import Optional

from airflow.exceptions import AirflowException
from airflow.models import BaseOperator
from airflow.providers.amazon.aws.hooks.s3 import S3Hook
from airflow.providers.mysql.hooks.mysql import MySqlHook

if TYPE_CHECKING:
from airflow.utils.context import Context
from airflow.providers.amazon.aws.transfers.sql_to_s3 import SqlToS3Operator


FILE_FORMAT = Enum(
"FILE_FORMAT",
"CSV, PARQUET",
warnings.warn(
"This module is deprecated. Please use airflow.providers.amazon.aws.transfers.sql_to_s3`.",
DeprecationWarning,
stacklevel=2,
)

FileOptions = namedtuple('FileOptions', ['mode', 'suffix'])

FILE_OPTIONS_MAP = {
FILE_FORMAT.CSV: FileOptions('r+', '.csv'),
FILE_FORMAT.PARQUET: FileOptions('rb+', '.parquet'),
}


class MySQLToS3Operator(BaseOperator):
class MySQLToS3Operator(SqlToS3Operator):
"""
Saves data from an specific MySQL query into a file in S3.

:param query: the sql query to be executed. If you want to execute a file, place the absolute path of it,
ending with .sql extension. (templated)
:param s3_bucket: bucket where the data will be stored. (templated)
:param s3_key: desired key for the file. It includes the name of the file. (templated)
:param replace: whether or not to replace the file in S3 if it previously existed
:param mysql_conn_id: Reference to :ref:`mysql connection id <howto/connection:mysql>`.
:param aws_conn_id: reference to a specific S3 connection
:param verify: Whether or not to verify SSL certificates for S3 connection.
By default SSL certificates are verified.
You can provide the following values:

- ``False``: do not validate SSL certificates. SSL will still be used
(unless use_ssl is False), but SSL certificates will not be verified.
- ``path/to/cert/bundle.pem``: A filename of the CA cert bundle to uses.
You can specify this argument if you want to use a different
CA cert bundle than the one used by botocore.
:param pd_csv_kwargs: arguments to include in pd.to_csv (header, index, columns...)
:param index: whether to have the index or not in the dataframe
:param header: whether to include header or not into the S3 file
:param file_format: the destination file format, only string 'csv' or 'parquet' is accepted.
:param pd_kwargs: arguments to include in ``DataFrame.to_parquet()`` or
``DataFrame.to_csv()``. This is preferred than ``pd_csv_kwargs``.
This class is deprecated.
Please use `airflow.providers.amazon.aws.transfers.sql_to_s3.SqlToS3Operator`.
"""

template_fields: Sequence[str] = (
's3_bucket',
's3_key',
'query',
)
template_ext: Sequence[str] = ('.sql',)
template_fields_renderers = {
"query": "sql",
"pd_csv_kwargs": "json",
"pd_kwargs": "json",
}

def __init__(
self,
*,
query: str,
s3_bucket: str,
s3_key: str,
replace: bool = False,
mysql_conn_id: str = 'mysql_default',
aws_conn_id: str = 'aws_default',
verify: Optional[Union[bool, str]] = None,
pd_csv_kwargs: Optional[dict] = None,
index: bool = False,
header: bool = False,
file_format: Literal['csv', 'parquet'] = 'csv',
pd_kwargs: Optional[dict] = None,
**kwargs,
) -> None:
super().__init__(**kwargs)
self.query = query
self.s3_bucket = s3_bucket
self.s3_key = s3_key
self.mysql_conn_id = mysql_conn_id
self.aws_conn_id = aws_conn_id
self.verify = verify
self.replace = replace

if file_format == "csv":
self.file_format = FILE_FORMAT.CSV
else:
self.file_format = FILE_FORMAT.PARQUET

if pd_csv_kwargs:
warnings.warn(
"pd_csv_kwargs is deprecated. Please use pd_kwargs.",
DeprecationWarning,
stacklevel=2,
)
if index or header:
warnings.warn(
"index and header are deprecated. Please pass them via pd_kwargs.",
DeprecationWarning,
stacklevel=2,
)

self.pd_kwargs = pd_kwargs or pd_csv_kwargs or {}
if self.file_format == FILE_FORMAT.CSV:
if "path_or_buf" in self.pd_kwargs:
warnings.warn(
"""
MySQLToS3Operator is deprecated.
Please use `airflow.providers.amazon.aws.transfers.sql_to_s3.SqlToS3Operator`.
""",
DeprecationWarning,
stacklevel=2,
)

pd_kwargs = kwargs.get('pd_kwargs', {})
if kwargs.get('file_format', "csv") == "csv":
if "path_or_buf" in pd_kwargs:
raise AirflowException('The argument path_or_buf is not allowed, please remove it')
if "index" not in self.pd_kwargs:
self.pd_kwargs["index"] = index
if "header" not in self.pd_kwargs:
self.pd_kwargs["header"] = header
if "index" not in pd_kwargs:
pd_kwargs["index"] = index
if "header" not in pd_kwargs:
pd_kwargs["header"] = header
kwargs["pd_kwargs"] = {**kwargs.get('pd_kwargs', {}), **pd_kwargs}
else:
if pd_csv_kwargs is not None:
raise TypeError("pd_csv_kwargs may not be specified when file_format='parquet'")

@staticmethod
def _fix_int_dtypes(df: pd.DataFrame) -> None:
"""Mutate DataFrame to set dtypes for int columns containing NaN values."""
for col in df:
if "float" in df[col].dtype.name and df[col].hasnans:
# inspect values to determine if dtype of non-null values is int or float
notna_series = df[col].dropna().values
if np.isclose(notna_series, notna_series.astype(int)).all():
# set to dtype that retains integers and supports NaNs
df[col] = np.where(df[col].isnull(), None, df[col])
df[col] = df[col].astype(pd.Int64Dtype())

def execute(self, context: 'Context') -> None:
mysql_hook = MySqlHook(mysql_conn_id=self.mysql_conn_id)
s3_conn = S3Hook(aws_conn_id=self.aws_conn_id, verify=self.verify)
data_df = mysql_hook.get_pandas_df(self.query)
self.log.info("Data from MySQL obtained")

self._fix_int_dtypes(data_df)
file_options = FILE_OPTIONS_MAP[self.file_format]
with NamedTemporaryFile(mode=file_options.mode, suffix=file_options.suffix) as tmp_file:
if self.file_format == FILE_FORMAT.CSV:
data_df.to_csv(tmp_file.name, **self.pd_kwargs)
else:
data_df.to_parquet(tmp_file.name, **self.pd_kwargs)
s3_conn.load_file(
filename=tmp_file.name, key=self.s3_key, bucket_name=self.s3_bucket, replace=self.replace
)

if s3_conn.check_for_key(self.s3_key, bucket_name=self.s3_bucket):
file_location = os.path.join(self.s3_bucket, self.s3_key)
self.log.info("File saved correctly in %s", file_location)
super().__init__(sql_conn_id=mysql_conn_id, **kwargs)
173 changes: 173 additions & 0 deletions airflow/providers/amazon/aws/transfers/sql_to_s3.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
#
# 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.

from collections import namedtuple
from enum import Enum
from tempfile import NamedTemporaryFile
from typing import TYPE_CHECKING, Iterable, Mapping, Optional, Sequence, Union

import numpy as np
import pandas as pd
from typing_extensions import Literal

from airflow.exceptions import AirflowException
from airflow.hooks.base import BaseHook
from airflow.hooks.dbapi import DbApiHook
from airflow.models import BaseOperator
from airflow.providers.amazon.aws.hooks.s3 import S3Hook

if TYPE_CHECKING:
from airflow.utils.context import Context


FILE_FORMAT = Enum(
"FILE_FORMAT",
"CSV, PARQUET",
)

FileOptions = namedtuple('FileOptions', ['mode', 'suffix'])

FILE_OPTIONS_MAP = {
FILE_FORMAT.CSV: FileOptions('r+', '.csv'),
FILE_FORMAT.PARQUET: FileOptions('rb+', '.parquet'),
}


class SqlToS3Operator(BaseOperator):
"""
Saves data from an specific SQL query into a file in S3.

:param query: the sql query to be executed. If you want to execute a file, place the absolute path of it,
ending with .sql extension. (templated)
:type query: str
:param s3_bucket: bucket where the data will be stored. (templated)
:type s3_bucket: str
:param s3_key: desired key for the file. It includes the name of the file. (templated)
:type s3_key: str
:param replace: whether or not to replace the file in S3 if it previously existed
:type replace: bool
:param sql_conn_id: reference to a specific database.
:type sql_conn_id: str
:param parameters: (optional) the parameters to render the SQL query with.
:type parameters: dict or iterable
:param aws_conn_id: reference to a specific S3 connection
:type aws_conn_id: str
:param verify: Whether or not to verify SSL certificates for S3 connection.
By default SSL certificates are verified.
You can provide the following values:

- ``False``: do not validate SSL certificates. SSL will still be used
(unless use_ssl is False), but SSL certificates will not be verified.
- ``path/to/cert/bundle.pem``: A filename of the CA cert bundle to uses.
You can specify this argument if you want to use a different
CA cert bundle than the one used by botocore.
:type verify: bool or str
:param file_format: the destination file format, only string 'csv' or 'parquet' is accepted.
:type file_format: str
:param pd_kwargs: arguments to include in ``DataFrame.to_parquet()`` or ``DataFrame.to_csv()``.
:type pd_kwargs: dict
"""

template_fields: Sequence[str] = (
's3_bucket',
's3_key',
'query',
)
template_ext: Sequence[str] = ('.sql',)
template_fields_renderers = {
"query": "sql",
"pd_csv_kwargs": "json",
"pd_kwargs": "json",
}

def __init__(
self,
*,
query: str,
s3_bucket: str,
s3_key: str,
sql_conn_id: str,
parameters: Union[None, Mapping, Iterable] = None,
replace: bool = False,
aws_conn_id: str = 'aws_default',
verify: Optional[Union[bool, str]] = None,
file_format: Literal['csv', 'parquet'] = 'csv',
pd_kwargs: Optional[dict] = None,
Comment thread
mariotaddeucci marked this conversation as resolved.
**kwargs,
) -> None:
super().__init__(**kwargs)
self.query = query
self.s3_bucket = s3_bucket
self.s3_key = s3_key
self.sql_conn_id = sql_conn_id
self.aws_conn_id = aws_conn_id
self.verify = verify
self.replace = replace
self.pd_kwargs = pd_kwargs or {}
self.parameters = parameters

if file_format == "csv":
self.file_format = FILE_FORMAT.CSV
if "path_or_buf" in self.pd_kwargs:
raise AirflowException('The argument path_or_buf is not allowed, please remove it')
elif file_format == "parquet":
self.file_format = FILE_FORMAT.PARQUET
else:
raise AirflowException(f"The argument file_format doesn't support {file_format} value.")

@staticmethod
def _fix_int_dtypes(df: pd.DataFrame) -> None:
"""Mutate DataFrame to set dtypes for int columns containing NaN values."""
for col in df:
if "float" in df[col].dtype.name and df[col].hasnans:
# inspect values to determine if dtype of non-null values is int or float
notna_series = df[col].dropna().values
if np.isclose(notna_series, notna_series.astype(int)).all():
# set to dtype that retains integers and supports NaNs
df[col] = np.where(df[col].isnull(), None, df[col])
df[col] = df[col].astype(pd.Int64Dtype())

def execute(self, context: 'Context') -> None:
sql_hook = self._get_hook()
s3_conn = S3Hook(aws_conn_id=self.aws_conn_id, verify=self.verify)
data_df = sql_hook.get_pandas_df(sql=self.query, parameters=self.parameters)
self.log.info("Data from SQL obtained")

self._fix_int_dtypes(data_df)
file_options = FILE_OPTIONS_MAP[self.file_format]

with NamedTemporaryFile(mode=file_options.mode, suffix=file_options.suffix) as tmp_file:

if self.file_format == FILE_FORMAT.CSV:
data_df.to_csv(tmp_file.name, **self.pd_kwargs)
else:
data_df.to_parquet(tmp_file.name, **self.pd_kwargs)

s3_conn.load_file(
filename=tmp_file.name, key=self.s3_key, bucket_name=self.s3_bucket, replace=self.replace
)

def _get_hook(self) -> DbApiHook:
self.log.debug("Get connection for %s", self.sql_conn_id)
conn = BaseHook.get_connection(self.sql_conn_id)
hook = conn.get_hook()
if not callable(getattr(hook, 'get_pandas_df', None)):
raise AirflowException(
"This hook is not supported. The hook class must have get_pandas_df method."
)
return hook
3 changes: 3 additions & 0 deletions airflow/providers/amazon/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,9 @@ transfers:
- source-integration-name: Local
target-integration-name: Amazon Simple Storage Service (S3)
python-module: airflow.providers.amazon.aws.transfers.local_to_s3
- source-integration-name: SQL
target-integration-name: Amazon Simple Storage Service (S3)
python-module: airflow.providers.amazon.aws.transfers.sql_to_s3

hook-class-names: # deprecated - to be removed after providers add dependency on Airflow 2.2.0+
- airflow.providers.amazon.aws.hooks.s3.S3Hook
Expand Down
1 change: 0 additions & 1 deletion airflow/providers/dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"google",
"imap",
"mongo",
"mysql",
"salesforce",
"ssh"
],
Expand Down
Loading