Incoming Traffic

How mirrord handles incoming network traffic from the cluster

mirrord lets your local process receive network traffic that would normally go to a pod in the cluster. There are two modes:

Mirroring (default)

In the default configuration, mirrord mirrors incoming TCP traffic - your local process receives a copy of the traffic while the remote pod continues to handle it normally. Responses from your local process are dropped. This is a safe, read-only way to observe how your code handles real requests.

Stealing

In steal mode, mirrord intercepts incoming traffic and redirects it to your local process instead of the remote pod. Your local process becomes the one responding to real requests. This is useful when you need to test how your code handles and responds to live traffic.

Steal mode can be configured in your mirrord config:

{
  "feature": {
    "network": {
      "incoming": "steal"
    }
  }
}

What's in this section

Last updated

Was this helpful?