Skip to content

Commit 172349c

Browse files
author
Ravi Sankar Penta
committed
Router: Changed default resource resync interval from 10mins to 30mins
Rationale: - Resyncs are mainly intended for robustness. Mainly to handle the case where the resource handler failed to process the item and we hope this will be fixed if we process the item again after sometime(resync interval). Yes, this may fix some transient errors but if we resync frequently then there could be big penalities. - Currently router watches these resources: routes, endpoints, nodes, namespaces, ingresses and secrets. When we have many routes (like several thousand in online case), processing these items takes long time, router reload itself takes few seconds (not milliseconds). Due to short resync interval there will be constant churn of reprocessing of all the items for all these resources. - Earlier we needed shorter resync interval because sharded router was depending on this interval but with #16039 that limitation is removed. 10 mins seems aggressive for some rare transient errors, changed defaults to 30 mins. Admin can edit router deployment config if they need custom resync interval.
1 parent 8a20264 commit 172349c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pkg/cmd/infra/router/router.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ type RouterSelection struct {
5959

6060
// Bind sets the appropriate labels
6161
func (o *RouterSelection) Bind(flag *pflag.FlagSet) {
62-
flag.DurationVar(&o.ResyncInterval, "resync-interval", 10*time.Minute, "The interval at which the route list should be fully refreshed")
62+
flag.DurationVar(&o.ResyncInterval, "resync-interval", controllerfactory.DefaultResyncInterval, "The interval at which the route list should be fully refreshed")
6363
flag.StringVar(&o.HostnameTemplate, "hostname-template", cmdutil.Env("ROUTER_SUBDOMAIN", ""), "If specified, a template that should be used to generate the hostname for a route without spec.host (e.g. '${name}-${namespace}.myapps.mycompany.com')")
6464
flag.BoolVar(&o.OverrideHostname, "override-hostname", cmdutil.Env("ROUTER_OVERRIDE_HOSTNAME", "") == "true", "Override the spec.host value for a route with --hostname-template")
6565
flag.StringVar(&o.LabelSelector, "labels", cmdutil.Env("ROUTE_LABELS", ""), "A label selector to apply to the routes to watch")

pkg/router/controller/factory/factory.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ import (
2828
informerfactory "k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion"
2929
)
3030

31+
const (
32+
DefaultResyncInterval = 30 * time.Minute
33+
)
34+
3135
// RouterControllerFactory initializes and manages the watches that drive a router
3236
// controller. It supports optional scoping on Namespace, Labels, and Fields of routes.
3337
// If Namespace is empty, it means "all namespaces".
@@ -52,7 +56,7 @@ func NewDefaultRouterControllerFactory(rc routeclientset.Interface, pc projectcl
5256
KClient: kc,
5357
RClient: rc,
5458
ProjectClient: pc,
55-
ResyncInterval: 10 * time.Minute,
59+
ResyncInterval: DefaultResyncInterval,
5660

5761
Namespace: v1.NamespaceAll,
5862
informers: map[reflect.Type]kcache.SharedIndexInformer{},

0 commit comments

Comments
 (0)