question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

0.51.2 envoy_override is not applied

See original GitHub issue

Describe the bug envoy_override does not add idle_timeout to a route config In my service mapping:

      apiVersion: ambassador/v1
      kind: Mapping
      name: grpc_service_mapping
      grpc: True
      prefix: "/dei.grpc.(.+)/(.*)"
      prefix_regex: True
      rewrite: ""
      auto_host_rewrite: True
      service: {{ $appName }}
      timeout_ms: 86400000
      ambassador_id: dei-staging-ambassador
      envoy_override:
        idle_timeout: 86400s

Here is envoy route config generated:

    "match": {
        "case_sensitive": true,
        "regex": "/dei.grpc.(.+)/(.*)"
    },
    "route": {
        "auto_host_rewrite": true,
        "priority": null,
        "timeout": "86400.000s",
        "weighted_clusters": {
            "clusters": [
                {
                    "name": "cluster_grpc_staging_server_dei_9429_dei_grpc_server",
                    "weight": 100.0
                }
            ]
        }
    }
},

Expected behavior idle_timeout should be appended to Envoy route

Versions (please complete the following information):

  • Ambassador: 0.51.2
  • Amazon EKS
  • Version ?

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:5 (1 by maintainers)

github_iconTop GitHub Comments

2reactions
simenbwcommented, Mar 21, 2019

Okay. Found it by looking at old MR. Not in any documentation.

Is there another way to set the idle_timeout config for envoy?

0reactions
variantfcommented, Apr 12, 2019

@simenbw I just disabled keep alive since it’s serving static file/pic.

Read more comments on GitHub >

github_iconTop Results From Across the Web

0.51.2 envoy_override is not applied · Issue #1348 - GitHub
Describe the bug envoy_override does not add idle_timeout to a route config. In my service mapping: ; Expected behavior idle_timeout should be ...
Read more >
Override host — envoy 1.25.0-dev-9b42ac documentation
In summary, override host provides a mechanism by which L4/L7 extensions can influence the final results of upstream load balancing. This mechanism can...
Read more >
Override Envoy's local app request timeout - Hashicorp Support
This disables the timeout for the local app in Envoy. Your service router will now override the local app request timeout now that...
Read more >
Spring: overriding one application.property from command line
If not working with comma, to override some custom properties or spring boot properties in multiple mode, use whitespace instead of comma, like...
Read more >
Envoy Filter - Istio
NOTE 3: To apply an EnvoyFilter resource to all workloads (sidecars and ... if overriding is not desired, then the name should be...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found