SYSTEM Cited by 1 source
Odyssey¶
What it is¶
Odyssey (github.com/yandex/odyssey) is a multi-threaded Postgres connection pooler developed by Yandex. It aims to be more performance-optimised and scalable than the venerable PgBouncer by using a multi-threaded architecture and native TLS termination.
Seen in¶
- sources/2020-06-23-zalando-pgbouncer-on-kubernetes-minimal-latency โ Zalando considered Odyssey as an alternative pooler; Kukushkin: "Odyssey and pgagroal are much newer and try to be more performance optimized and scalable than the alternatives." Zalando still chose PgBouncer as the default but designed the operator so any pooler conforming to a basic common standard can be swapped in.
Related¶
- systems/pgbouncer โ the incumbent.
- systems/pgpool-ii / systems/pgagroal โ other alternatives evaluated alongside.
- systems/postgresql