Conversation
There was a problem hiding this comment.
Replace container id with service name?
Maybe we can limit logs to no more than a certain number of lines (e.g. 5000)?
tail -n 5000 container_mem.log > container_mem.tmp && mv container_mem.tmp container_mem.log
Move this file into ./scripts?
| - influxdb_data:/var/lib/influxdb | ||
|
|
||
| orchestrator_postgres_db: &orchestrator_postgres_db | ||
| omotes_postgres: &omotes_postgres |
There was a problem hiding this comment.
&omotes_postgres needed?
There was a problem hiding this comment.
Simple and elegant, like it!
Aware that it is still WIP. Just writing it down so we don't forget these sections
- Workflow configuration and updates
- Gurobi license management
- Postgres data backup
There was a problem hiding this comment.
Meanwhile
start, start-dev, and stop scripts have been simplified a lot which is great, but they are not being used at the moment. I think we can keep and mention these scripts here as they may be handy for some users.
| @@ -1,4 +1,4 @@ | |||
| #!/bin/bash | |||
| . scripts/_select_docker_compose.sh | |||
There was a problem hiding this comment.
Has been removed in this PR.
| @@ -2,5 +2,5 @@ | |||
|
|
|||
| . scripts/_select_docker_compose.sh | |||
There was a problem hiding this comment.
Has been removed in this PR.
| { | ||
| "parameter_type": "duration", | ||
| "key_name": "timestep", | ||
| "prefect_flow_name": "omotes-optimizer", |
| { | ||
| "parameter_type": "duration", | ||
| "key_name": "timestep", | ||
| "prefect_flow_name": "omotes-optimizer", |
| MINIO_ROOT_USER: ${MINIO_ACCESS_KEY} | ||
| MINIO_ROOT_PASSWORD: ${MINIO_SECRET} | ||
| MINIO_BUCKETS: prefect-cache,prefect-artifacts | ||
| entrypoint: > |
There was a problem hiding this comment.
init-buckets.sh is defined but not being used.
| condition: service_healthy | ||
| deploy_optimizer: | ||
| image: ghcr.io/project-omotes/omotes-optimizer:${OPTIMIZER_WORKER_VERSION} | ||
| profiles: |
| deploy: | ||
| <<: *grow_worker_deploy | ||
| replicas: 1 # only 1 WLS available with a baseline of 1 active session | ||
| orchestrator: |
There was a problem hiding this comment.
NICE TO HAVE: rename to omotes_orchestrator as mentioned in the email
No description provided.