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
Describe the bug
After running the example docker-compose.yml, the tempo can't connect to Memcached: 2024-11-19 17:29:33 level=warn ts=2024-11-19T16:29:33.631013695Z caller=memcached_client.go:259 msg="error updating memcache servers" err="lookup _._tcp.memcached:11211: no such host"
To Reproduce
Steps to reproduce the behavior:
Start Tempo using docker-compose.yml from the examples
Check the logs
Expected behavior
I'd expect Tempo to connect to Memcached and properly store the traces.
Environment:
Infrastructure: docker-compose, Windows, PC
Deployment tool: docker-compose
Additional Context
I've tried connecting to Memcached from the tempo docker container and this worked.
The text was updated successfully, but these errors were encountered:
This doesn't work when Memcached runs in docker-compose because, as far as I know, Docker’s DNS does not create SRV service records. Instead, it only creates basic A records (IP address mappings).
We have a workaround by setting addresses instead of host in the tempo.yaml when configuring memcached
Describe the bug
After running the example docker-compose.yml, the tempo can't connect to Memcached:
2024-11-19 17:29:33 level=warn ts=2024-11-19T16:29:33.631013695Z caller=memcached_client.go:259 msg="error updating memcache servers" err="lookup _._tcp.memcached:11211: no such host"
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I'd expect Tempo to connect to Memcached and properly store the traces.
Environment:
Additional Context
I've tried connecting to Memcached from the tempo docker container and this worked.
The text was updated successfully, but these errors were encountered: