diff --git a/docker-compose.yml b/docker-compose.yml index 50d7d30f..0f8e8577 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: web: - image: ostis/sc-web:0.8.0-Fusion + image: ostis/sc-web:0.8.1-Unlock build: context: ./sc-web restart: unless-stopped @@ -15,7 +15,7 @@ services: condition: service_healthy machine: - image: ostis/sc-machine:0.8.0-Fusion + image: ostis/sc-machine:0.9.0-Unlock build: context: ./sc-machine restart: unless-stopped diff --git a/docs/changelog.md b/docs/changelog.md index 8414f45d..34cf2ca6 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,10 +4,11 @@ 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). -## [Unreleased] +## [0.9.0-Unlock] - 22.01.2024 ### Changes +- Update config by sc-machine config 0.9.0 - Update license year ### Removed diff --git a/ims.ostis.kb b/ims.ostis.kb index bb7296cd..b4fd1e21 160000 --- a/ims.ostis.kb +++ b/ims.ostis.kb @@ -1 +1 @@ -Subproject commit bb7296cd4248977319329c6897460c00327ac3c4 +Subproject commit b4fd1e2124c3589bc295564d337f7c99035dd3f8 diff --git a/ostis-web-platform.ini b/ostis-web-platform.ini index 8cd2c15e..0b3b6988 100644 --- a/ostis-web-platform.ini +++ b/ostis-web-platform.ini @@ -1,15 +1,18 @@ [sc-memory] max_loaded_segments = 1000 -max_threads = 32 + +limit_max_threads_by_max_physical_cores = true max_events_and_agents_threads = 32 -save_period = 3600 -update_period = 1800 +dump_memory = false +dump_memory_period = 3600 +dump_memory_statistics = false +dump_memory_statistics_period = 1200 repo_path = kb.bin extensions_path = sc-machine/bin/extensions -log_type = File +log_type = Console log_file = sc-machine/sc-memory.log log_level = Info @@ -25,7 +28,7 @@ term_separators = " _" host = 127.0.0.1 port = 8090 -sync_actions = 0 +parallel_actions = true log_type = File log_file = sc-machine/sc-server.log diff --git a/scripts/set_vars.sh b/scripts/set_vars.sh index 9aee3990..8dc63937 100755 --- a/scripts/set_vars.sh +++ b/scripts/set_vars.sh @@ -10,12 +10,12 @@ export CONFIG_PATH="${CONFIG_PATH:-${PLATFORM_PATH}/ostis-web-platform.ini}" export REPO_PATH="${REPO_PATH:-${PLATFORM_PATH}/repo.path}" export SC_MACHINE_REPO="${SC_MACHINE_REPO:-https://github.com/ostis-ai/sc-machine.git}" -export SC_MACHINE_BRANCH="${SC_MACHINE_BRANCH:-release/0.9.0}" +export SC_MACHINE_BRANCH="${SC_MACHINE_BRANCH:-0.9.0-Unlock}" export SC_MACHINE_COMMIT="${SC_MACHINE_COMMIT:-""}" export SC_MACHINE_PATH="${SC_MACHINE_PATH:-${PLATFORM_PATH}/sc-machine}" export SC_WEB_REPO="${SC_WEB_REPO:-https://github.com/ostis-ai/sc-web.git}" -export SC_WEB_BRANCH="${SC_WEB_BRANCH:-release/0.8.1}" +export SC_WEB_BRANCH="${SC_WEB_BRANCH:-0.8.1-Unlock}" export SC_WEB_COMMIT="${SC_WEB_COMMIT:-""}" export SC_WEB_PATH="${SC_WEB_PATH:-${PLATFORM_PATH}/sc-web}"