You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just received the following error while starting the docker image (as part of docker compose up -d, so the MariaDB and Redis containers were starting at about the same time, which should explain the two intermediate warnings):
2024-03-21T09:46:35.219Z DEBUG entrypoint/main.go:42 translating env vars to YAML config
2024-03-21T09:46:35.219Z DEBUG entrypoint/main.go:108 checking SQL database
2024-03-21T09:46:35.224Z DEBUG entrypoint/main.go:102 starting actual daemon via exec(3)
2024-03-21T09:46:35.227Z INFO icingadb Starting Icinga DB daemon (1.1.1-g16d43cb)
2024-03-21T09:46:35.227Z INFO icingadb Connecting to database at 'db-icingadb:3306'
2024-03-21T09:46:35.232Z INFO icingadb Connecting to Redis at 'redis-1:6379'
2024-03-21T09:46:35.233Z INFO icingadb Starting history sync
2024-03-21T09:46:35.321Z WARN redis Can't connect to Redis. Retrying {"error": "dial tcp: lookup redis-1: operation was canceled"}
2024-03-21T09:46:35.321Z WARN database Can't connect to database. Retrying {"error": "read tcp 172.18.0.38:54866->172.18.0.3:3306: use of closed network connection"}
2024-03-21T09:46:35.325Z FATAL icingadb ERR wrong number of arguments for 'xdel' command
can't perform "[xdel icinga:history:stream:state]"
github.com/icinga/icingadb/pkg/icingaredis.WrapCmdErr
/icingadb-src/pkg/icingaredis/utils.go:121
github.com/icinga/icingadb/pkg/icingadb/history.Sync.deleteFromRedis
/icingadb-src/pkg/icingadb/history/sync.go:155
github.com/icinga/icingadb/pkg/icingadb/history.Sync.Sync.func3
/icingadb-src/pkg/icingadb/history/sync.go:96
golang.org/x/sync/errgroup.(*Group).Go.func1
/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:78
runtime.goexit
/usr/local/go/src/runtime/asm_amd64.s:1695
The version used (16d43cb) is from #699, but that PR should have no effect on this.
I guess this might happen due to the following not handling a closed channel:
I just received the following error while starting the docker image (as part of
docker compose up -d
, so the MariaDB and Redis containers were starting at about the same time, which should explain the two intermediate warnings):The version used (16d43cb) is from #699, but that PR should have no effect on this.
I guess this might happen due to the following not handling a closed channel:
icingadb/pkg/icingadb/history/sync.go
Lines 147 to 153 in c19795a
The text was updated successfully, but these errors were encountered: