-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from daw3rd/dev
rename launch package to runtime
- Loading branch information
Showing
78 changed files
with
193 additions
and
159 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 was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
data-processing-lib/src/data_processing/launch/pure_python/__init__.py
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
data-processing-lib/src/data_processing/launch/ray/__init__.py
This file was deleted.
Oops, something went wrong.
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 @@ | ||
from data_processing.runtime.execution_configuration import TransformExecutionConfiguration | ||
from data_processing.runtime.transform_launcher import AbstractTransformLauncher |
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
data-processing-lib/src/data_processing/runtime/pure_python/__init__.py
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,4 @@ | ||
from data_processing.runtime.pure_python.python_launcher_configuration import PythonLauncherConfiguration | ||
from data_processing.runtime.pure_python.transform_table_processor import TransformTableProcessor | ||
from data_processing.runtime.pure_python.transform_orchestrator import orchestrate | ||
from data_processing.runtime.pure_python.transform_launcher import PythonTransformLauncher |
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
8 changes: 8 additions & 0 deletions
8
data-processing-lib/src/data_processing/runtime/ray/__init__.py
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,8 @@ | ||
from data_processing.runtime.ray.ray_utils import RayUtils | ||
from data_processing.runtime.ray.transform_statistics import TransformStatisticsRay | ||
from data_processing.runtime.ray.transform_table_processor import TransformTableProcessorRay | ||
from data_processing.runtime.ray.transform_runtime import DefaultTableTransformRuntimeRay | ||
from data_processing.runtime.ray.transform_launch_configuration import RayLauncherConfiguration | ||
from data_processing.runtime.ray.transform_orchestrator_configuration import TransformOrchestratorConfiguration | ||
from data_processing.runtime.ray.transform_orchestrator import orchestrate | ||
from data_processing.runtime.ray.transform_launcher import RayTransformLauncher |
File renamed without changes.
Oops, something went wrong.