Skip to content

Releases: RelationalAI/rai-workflow-manager

RAI Workflow Manager v0.0.21

10 Oct 10:35
100d48d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.20...v0.0.21

RAI Workflow Manager v0.0.20

09 Oct 10:46
93d8d5a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.19...v0.0.20

RAI Workflow Manager v0.0.19

05 Oct 15:11
af1eeb4
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.18...v0.0.19

RAI Workflow Manager v0.0.18

03 Oct 14:03
3114bde
Compare
Choose a tag to compare

What's Changed

  • Added chunk partitioning support for non date partitioned sources by @AndrewNepogoda in #30

Full Changelog: v0.0.17...v0.0.18

RAI Workflow Manager v0.0.17

29 Sep 12:46
89b98ae
Compare
Choose a tag to compare

What's Changed

PRs:

Full Changelog: v0.0.16...v0.0.17

RAI Workflow Manager v0.0.16

28 Sep 21:07
8ba7faf
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.15...v0.0.16

RAI Workflow Manager v0.0.15

28 Sep 20:21
3aa955e
Compare
Choose a tag to compare

What's Changed

PRs:

Full Changelog: v0.0.14...v0.0.15

RAI Workflow Manager v0.0.14

28 Sep 10:35
535bb1f
Compare
Choose a tag to compare

What's Changed

PR: Snowflake as datasource by @AndrewNepogoda in #24

We added Snowflake support as a new data source.
Snowflake container is supported only for data ingestion.
Reference: Snowflake Integration

Full Changelog: v0.0.13...v0.0.14

RAI Workflow Manager v0.0.13

22 Sep 18:06
f3eb75e
Compare
Choose a tag to compare

What's Changed

PRs:

1. Deleted CLI arguments:

  • --run-mode
  • --dev-data-dir
  • --output-root

2. CLI Arguments replacement with loader.toml:

CLI arguments --run-mode local, --dev-data-dir, --output-root now replaced with local containers in loader.toml:

Arguments

python main.py --run-mode local --dev-data-dir ./data --output-root ./output ...

loader.toml

[[container]]
name="input"
type="local"
data_path="./data"

[[container]]
name="export"
type="local"
data_path="./output"

3. Renamed properties in loader.toml:

  • RAI_PROFILE -> rai_profile
  • RAI_PROFILE_PATH -> rai_profile_path
  • RAI_SDK_HTTP_RETRIES ->rai_sdk_http_retries

4. Azure container configuration in loader.toml

### Azure blob ###
AZURE_EXPORT_ACCOUNT="account"
AZURE_EXPORT_CONTAINER="dev"
AZURE_EXPORT_DATA_PATH="output"
AZURE_EXPORT_SAS="token"

### Azure IMPORT blob ###
AZURE_IMPORT_ACCOUNT="account"
AZURE_IMPORT_CONTAINER="dev"
AZURE_IMPORT_DATA_PATH="data"
AZURE_IMPORT_SAS="token"

Replaced by:

[[container]]
name="export"
type="azure"
account="account"
container="dev"
data_path="output"
sas="token"

[[container]]
name="input"
type="azure"
account="account"
container="dev"
data_path="data"
sas="token"

5. defaultContainer parameter for ConfigureSources and Export steps in batch config

A new defaultContainer is required for ConfigureSources and Export steps and name a container which will be used as default container for import/export.

6. container parameter for sources and exports

container for sources in ConfigureSources and exports in Export steps allow user specify the name of the container which will be used for the source for import/export. This feature allow user specify multiple datasources (local, azure, snowflake(upcoming), s3(in road map)) as inputs and outputs and mix different types of datasources.

Full Changelog: v0.0.12...v0.0.13

RAI Workflow Manager v0.0.12

19 Sep 10:06
54cca40
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.11...v0.0.12