Skip to content

0.3.0a7

Pre-release
Pre-release
Compare
Choose a tag to compare
@tatiana tatiana released this 27 Nov 10:11
· 17 commits to issue-81-mess since this release

Breaking changes

  • Simplify the project structure and debugging by @tatiana in #93

    In order to improve the development and troubleshooting DAGs created with this provider, we introduced breaking changes
    to the folder structure. It was flattened and the import paths to existing decorators, hooks, operators and trigger
    changed, as documented in the table below:

    Type Previous import path Current import path
    Decorator ray_provider.decorators.ray.ray ray_provider.decorators.ray
    Hook ray_provider.hooks.ray.RayHook ray_provider.hooks.RayHook
    Operator ray_provider.operators.ray.DeleteRayCluster ray_provider.operators.DeleteRayCluster
    Operator ray_provider.operators.ray.SetupRayCluster ray_provider.operators.SetupRayCluster
    Operator ray_provider.operators.ray.SubmitRayJob ray_provider.operators.SubmitRayJob
    Trigger ray_provider.triggers.ray.RayJobTrigger ray_provider.triggers.RayJobTrigger

Features

Bug fixes

Docs

Others