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
{{ message }}
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
Currently, we check all connections each time the load balancer is polled. This is inefficient, especially as the number of active connections increases. As the docs explain, we can be much more efficient about checking only relevant updates.
The text was updated successfully, but these errors were encountered:
linkerd-tcp 0.1.0 constitues a major rewrite.
Previously, linkerd-tcp did not properly utilize tokio's task model, which lead
to a number of performance and correctness problems. Furthermore, linkerd-tcp's
configuration interface was substantially different from linkerd's, which
caused some confusion.
Now, linkerd-tcp has been redesigned:
- to better-leverage tokio's reactor;
- to support connection and stream timeouts;
- to provide much richer metrics insight;
- to be structured like a linkerd-style router;
- general correctness improvements.
Fixes#26#40#49#50
Depends on linkerd/tacho#20
linkerd-tcp 0.1.0 constitutes a major rewrite.
Previously, linkerd-tcp did not properly utilize tokio's task model, which lead
to a number of performance and correctness problems. Furthermore, linkerd-tcp's
configuration interface was substantially different from linkerd's, which
caused some confusion.
Now, linkerd-tcp has been redesigned:
- to better-leverage tokio's reactor;
- to support connection and stream timeouts;
- to provide much richer metrics insight;
- to be structured like a linkerd-style router;
- general correctness improvements.
Fixes#26#40#49#50
Depends on linkerd/tacho#20
Currently, we check all connections each time the load balancer is polled. This is inefficient, especially as the number of active connections increases. As the docs explain, we can be much more efficient about checking only relevant updates.
The text was updated successfully, but these errors were encountered: