-
Notifications
You must be signed in to change notification settings - Fork 18
Description
After VM went offline and required a reset I found that the Sample Server memory use grows over time. Here's overall VM memory consumption:

And this is memory (in MiB) used by Sample Server container after fresh restart:

The container also uses 25-30% of the VM CPU.
Could not reproduce locally, memory use for the Linux binary increased by <2% in an hour, local container looks similar. Can this be related to the number of client requests?
Image used: latest develop, sha256:fe03be93684d641e2abe22342f7b25c7ca03fd8b2ead490ca3f1935f6b063ef7
Compose config:
server-cpp:
container_name: server-cpp
image: ghcr.io/umati/sample-server:develop
ports:
- 4840:4840
volumes:
- ./config/server_config.json:/configuration.json
- ./config/server_cert.der:/server_cert.der
- ./config/server_key.der:/server_key.der
restart: always
healthcheck:
test: netstat -ltn | grep -c 4840@ccvca, @Kantiran91 any ideas?