Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

92: Update orchestrator to 1.0.0 and SDK to 3.0.0 #93

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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [mvp.4.RC2] - 2024-0x-xx

### Omotes-system
* 47: Add README.md and ci scripts for system_tests and example_sdk_client providing easy info and access to using them locally. Also add Legal considerations in root README.md and alter reconnect.py example to fully show reconnect. by @lfse-slafleur in https://github.com/Project-OMOTES/omotes-system/pull/68
* 71: Only load .env if it exists on setup.sh and exit with error if any env variables from .env-template are missing. by @lfse-slafleur in https://github.com/Project-OMOTES/omotes-system/pull/72
* 74: Reference .env.template from _load_dot_env.sh relative to the root of the repository instead of relative to current working directory. by @lfse-slafleur in https://github.com/Project-OMOTES/omotes-system/pull/75
* 77: Update optimizer worker to 2.0.0 to include mesido 0.1.5.2 which also includes influxdb schema changes. by @lfse-slafleur in https://github.com/Project-OMOTES/omotes-system/pull/78
* 66: Workflow definitions are now shared by orchestrator with the SDK and are updated on any changes. by @MarkTNO in https://github.com/Project-OMOTES/omotes-system/pull/67
* 92: Update to SDK 3.0.0 and orchestrator 1.0.0 to integrate single job submission queue and multi-sdk support for sharing workflow definitions from the orchestrator to any SDK. by @lfse-slafleur in https://github.com/Project-OMOTES/omotes-system/pull/93
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ services:
- manual_dev

orchestrator:
image: ghcr.io/project-omotes/omotes_orchestrator:0.1.0
image: ghcr.io/project-omotes/omotes_orchestrator:1.0.0
restart: unless-stopped
networks:
- omotes
Expand Down
2 changes: 1 addition & 1 deletion example_sdk_client/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
omotes_sdk_python==2.0.2
omotes_sdk_python==3.0.0
2 changes: 1 addition & 1 deletion system_tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
omotes_sdk_python==2.0.2
omotes_sdk_python==3.0.0
pytest ~= 8.1.2
pytest-timeout
xmltodict ~= 0.13.0
Expand Down
6 changes: 0 additions & 6 deletions system_tests/src/test_workflows_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import os
import re
import threading
import time
import unittest
from datetime import timedelta
from pathlib import Path
Expand All @@ -21,11 +20,6 @@
from deepdiff import DeepDiff
from omotes_sdk.types import ParamsDict

# TODO Now the SQL setup is moved to orchestrator, it takes a while for orchestrator to boot up.
# Therefore, the queues may not yet have been declared. We should fix this in SDK by declaring
# all the expected queues on orchestrators side on start up to ensure they are up.
# See https://github.com/Project-OMOTES/omotes-system/issues/51
time.sleep(5)

RABBITMQ_CONFIG = RabbitMQConfig(
username=os.environ.get("RABBITMQ_USERNAME", "omotes"),
Expand Down
Loading