-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
566 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .schema import ModinPandasDataFrameTransformer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
import os | ||
import typing | ||
from typing import Type | ||
|
||
import modin | ||
from modin import pandas | ||
|
||
from flytekit import FlyteContext | ||
from flytekit.extend import T, TypeEngine, TypeTransformer | ||
from flytekit.models.literals import Literal, Scalar, Schema | ||
from flytekit.models.types import LiteralType, SchemaType | ||
from flytekit.types.schema import LocalIOSchemaReader, LocalIOSchemaWriter, SchemaEngine, SchemaFormat, SchemaHandler | ||
from flytekit.types.schema.types import FlyteSchemaTransformer | ||
|
||
|
||
class ModinPandasSchemaReader(LocalIOSchemaReader[modin.pandas.DataFrame]): | ||
""" | ||
Implements how ModinPandasDataFrame should be read using the ``open`` method of FlyteSchema | ||
""" | ||
|
||
def __init__( | ||
self, | ||
from_path: str, | ||
cols: typing.Optional[typing.Dict[str, type]], | ||
fmt: SchemaFormat, | ||
): | ||
super().__init__(from_path, cols, fmt) | ||
|
||
def all(self, **kwargs) -> modin.pandas.DataFrame: | ||
if self._fmt == SchemaFormat.PARQUET: | ||
return modin.pandas.read_parquet(self.from_path + "/00000") | ||
raise AssertionError("Only Parquet type files are supported for modin pandas dataframe currently") | ||
|
||
|
||
class ModinPandasSchemaWriter(LocalIOSchemaWriter[modin.pandas.DataFrame]): | ||
""" | ||
Implements how ModinPandasDataFrame should be written to using ``open`` method of FlyteSchema | ||
""" | ||
|
||
def __init__( | ||
self, | ||
to_path: os.PathLike, | ||
cols: typing.Optional[typing.Dict[str, type]], | ||
fmt: SchemaFormat, | ||
): | ||
super().__init__(str(to_path), cols, fmt) | ||
|
||
def write(self, *dfs: modin.pandas.DataFrame, **kwargs): | ||
if dfs is None or len(dfs) == 0: | ||
return | ||
if len(dfs) > 1: | ||
raise AssertionError("Only a single modin.pandas.DataFrame can be written per variable currently") | ||
if self._fmt == SchemaFormat.PARQUET: | ||
dfs[0].to_parquet(self.to_path + "/00000") | ||
return | ||
raise AssertionError("Only Parquet type files are supported for modin.pandas dataframe currently") | ||
|
||
|
||
class ModinPandasDataFrameTransformer(TypeTransformer[modin.pandas.DataFrame]): | ||
""" | ||
Transforms ModinPandas DataFrame's to and from a Schema (typed/untyped) | ||
""" | ||
|
||
_SUPPORTED_TYPES: typing.Dict[ | ||
type, SchemaType.SchemaColumn.SchemaColumnType | ||
] = FlyteSchemaTransformer._SUPPORTED_TYPES | ||
|
||
def __init__(self): | ||
super().__init__("modin.pandas-df-transformer", pandas.DataFrame) | ||
|
||
@staticmethod | ||
def _get_schema_type() -> SchemaType: | ||
return SchemaType(columns=[]) | ||
|
||
def get_literal_type(self, t: Type[modin.pandas.DataFrame]) -> LiteralType: | ||
return LiteralType(schema=self._get_schema_type()) | ||
|
||
def to_literal( | ||
self, | ||
ctx: FlyteContext, | ||
python_val: modin.pandas.DataFrame, | ||
python_type: Type[modin.pandas.DataFrame], | ||
expected: LiteralType, | ||
) -> Literal: | ||
local_dir = ctx.file_access.get_random_local_directory() | ||
w = ModinPandasSchemaWriter(to_path=local_dir, cols=None, fmt=SchemaFormat.PARQUET) | ||
w.write(python_val) | ||
remote_path = ctx.file_access.get_random_remote_directory() | ||
ctx.file_access.put_data(local_dir, remote_path, is_multipart=True) | ||
return Literal(scalar=Scalar(schema=Schema(remote_path, self._get_schema_type()))) | ||
|
||
def to_python_value( | ||
self, | ||
ctx: FlyteContext, | ||
lv: Literal, | ||
expected_python_type: Type[modin.pandas.DataFrame], | ||
) -> T: | ||
if not (lv and lv.scalar and lv.scalar.schema): | ||
return modin.pandas.DataFrame() | ||
local_dir = ctx.file_access.get_random_local_directory() | ||
ctx.file_access.download_directory(lv.scalar.schema.uri, local_dir) | ||
r = ModinPandasSchemaReader(from_path=local_dir, cols=None, fmt=SchemaFormat.PARQUET) | ||
return r.all() | ||
|
||
|
||
SchemaEngine.register_handler( | ||
SchemaHandler( | ||
"modin.pandas.Dataframe-Schema", | ||
modin.pandas.DataFrame, | ||
ModinPandasSchemaReader, | ||
ModinPandasSchemaWriter, | ||
) | ||
) | ||
|
||
TypeEngine.register(ModinPandasDataFrameTransformer()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
. | ||
-e file:.#egg=flytekitplugins-modin |
Oops, something went wrong.