Merge pull request #115754 from linxiulei/sched

Start informers after leader election
This commit is contained in:
Kubernetes Prow Robot 2023-05-15 15:41:36 -07:00 committed by GitHub
commit ffb4172ff1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 107 additions and 23 deletions

View File

@ -398,7 +398,8 @@ profiles:
TypeMeta: metav1.TypeMeta{ TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(), APIVersion: v1.SchemeGroupVersion.String(),
}, },
Parallelism: 16, Parallelism: 16,
DelayCacheUntilActive: false,
DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{ DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
EnableProfiling: true, EnableProfiling: true,
EnableContentionProfiling: true, EnableContentionProfiling: true,
@ -469,7 +470,8 @@ profiles:
TypeMeta: metav1.TypeMeta{ TypeMeta: metav1.TypeMeta{
APIVersion: v1beta3.SchemeGroupVersion.String(), APIVersion: v1beta3.SchemeGroupVersion.String(),
}, },
Parallelism: 16, Parallelism: 16,
DelayCacheUntilActive: false,
DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{ DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
EnableProfiling: true, EnableProfiling: true,
EnableContentionProfiling: true, EnableContentionProfiling: true,
@ -571,7 +573,8 @@ profiles:
TypeMeta: metav1.TypeMeta{ TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(), APIVersion: v1.SchemeGroupVersion.String(),
}, },
Parallelism: 16, Parallelism: 16,
DelayCacheUntilActive: false,
DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{ DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
EnableProfiling: true, EnableProfiling: true,
EnableContentionProfiling: true, EnableContentionProfiling: true,
@ -641,7 +644,8 @@ profiles:
TypeMeta: metav1.TypeMeta{ TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(), APIVersion: v1.SchemeGroupVersion.String(),
}, },
Parallelism: 16, Parallelism: 16,
DelayCacheUntilActive: false,
DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{ DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
EnableProfiling: true, EnableProfiling: true,
EnableContentionProfiling: true, EnableContentionProfiling: true,
@ -685,7 +689,8 @@ profiles:
TypeMeta: metav1.TypeMeta{ TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(), APIVersion: v1.SchemeGroupVersion.String(),
}, },
Parallelism: 16, Parallelism: 16,
DelayCacheUntilActive: false,
DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{ DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
EnableProfiling: true, EnableProfiling: true,
EnableContentionProfiling: true, EnableContentionProfiling: true,
@ -804,7 +809,8 @@ profiles:
TypeMeta: metav1.TypeMeta{ TypeMeta: metav1.TypeMeta{
APIVersion: v1beta3.SchemeGroupVersion.String(), APIVersion: v1beta3.SchemeGroupVersion.String(),
}, },
Parallelism: 16, Parallelism: 16,
DelayCacheUntilActive: false,
DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{ DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
EnableProfiling: true, EnableProfiling: true,
EnableContentionProfiling: true, EnableContentionProfiling: true,
@ -926,7 +932,8 @@ profiles:
TypeMeta: metav1.TypeMeta{ TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(), APIVersion: v1.SchemeGroupVersion.String(),
}, },
Parallelism: 16, Parallelism: 16,
DelayCacheUntilActive: false,
DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{ DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
EnableProfiling: true, EnableProfiling: true,
EnableContentionProfiling: true, EnableContentionProfiling: true,
@ -1040,7 +1047,8 @@ profiles:
TypeMeta: metav1.TypeMeta{ TypeMeta: metav1.TypeMeta{
APIVersion: v1beta3.SchemeGroupVersion.String(), APIVersion: v1beta3.SchemeGroupVersion.String(),
}, },
Parallelism: 16, Parallelism: 16,
DelayCacheUntilActive: false,
DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{ DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
EnableProfiling: true, EnableProfiling: true,
EnableContentionProfiling: true, EnableContentionProfiling: true,
@ -1179,7 +1187,8 @@ profiles:
TypeMeta: metav1.TypeMeta{ TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(), APIVersion: v1.SchemeGroupVersion.String(),
}, },
Parallelism: 16, Parallelism: 16,
DelayCacheUntilActive: false,
DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{ DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
EnableProfiling: true, EnableProfiling: true,
EnableContentionProfiling: true, EnableContentionProfiling: true,

View File

@ -194,18 +194,23 @@ func Run(ctx context.Context, cc *schedulerserverconfig.CompletedConfig, sched *
} }
} }
// Start all informers. startInformersAndWaitForSync := func(ctx context.Context) {
cc.InformerFactory.Start(ctx.Done()) // Start all informers.
// DynInformerFactory can be nil in tests. cc.InformerFactory.Start(ctx.Done())
if cc.DynInformerFactory != nil { // DynInformerFactory can be nil in tests.
cc.DynInformerFactory.Start(ctx.Done()) if cc.DynInformerFactory != nil {
} cc.DynInformerFactory.Start(ctx.Done())
}
// Wait for all caches to sync before scheduling. // Wait for all caches to sync before scheduling.
cc.InformerFactory.WaitForCacheSync(ctx.Done()) cc.InformerFactory.WaitForCacheSync(ctx.Done())
// DynInformerFactory can be nil in tests. // DynInformerFactory can be nil in tests.
if cc.DynInformerFactory != nil { if cc.DynInformerFactory != nil {
cc.DynInformerFactory.WaitForCacheSync(ctx.Done()) cc.DynInformerFactory.WaitForCacheSync(ctx.Done())
}
}
if !cc.ComponentConfig.DelayCacheUntilActive || cc.LeaderElection == nil {
startInformersAndWaitForSync(ctx)
} }
// If leader election is enabled, runCommand via LeaderElector until done and exit. // If leader election is enabled, runCommand via LeaderElector until done and exit.
@ -213,6 +218,11 @@ func Run(ctx context.Context, cc *schedulerserverconfig.CompletedConfig, sched *
cc.LeaderElection.Callbacks = leaderelection.LeaderCallbacks{ cc.LeaderElection.Callbacks = leaderelection.LeaderCallbacks{
OnStartedLeading: func(ctx context.Context) { OnStartedLeading: func(ctx context.Context) {
close(waitingForLeader) close(waitingForLeader)
if cc.ComponentConfig.DelayCacheUntilActive {
logger.Info("Starting informers and waiting for sync...")
startInformersAndWaitForSync(ctx)
logger.Info("Sync completed")
}
sched.Run(ctx) sched.Run(ctx)
}, },
OnStoppedLeading: func() { OnStoppedLeading: func() {

View File

@ -54521,6 +54521,13 @@ func schema_k8sio_kube_scheduler_config_v1_KubeSchedulerConfiguration(ref common
}, },
}, },
}, },
"delayCacheUntilActive": {
SchemaProps: spec.SchemaProps{
Description: "DelayCacheUntilActive specifies when to start caching. If this is true and leader election is enabled, the scheduler will wait to fill informer caches until it is the leader. Doing so will have slower failover with the benefit of lower memory overhead while waiting to become leader. Defaults to false.",
Type: []string{"boolean"},
Format: "",
},
},
}, },
Required: []string{"leaderElection", "clientConnection"}, Required: []string{"leaderElection", "clientConnection"},
}, },

View File

@ -999,7 +999,8 @@ profiles:
name: "v1beta3 in-tree and out-of-tree plugins from internal", name: "v1beta3 in-tree and out-of-tree plugins from internal",
version: v1beta3.SchemeGroupVersion, version: v1beta3.SchemeGroupVersion,
obj: &config.KubeSchedulerConfiguration{ obj: &config.KubeSchedulerConfiguration{
Parallelism: 8, Parallelism: 8,
DelayCacheUntilActive: true,
Profiles: []config.KubeSchedulerProfile{ Profiles: []config.KubeSchedulerProfile{
{ {
PluginConfig: []config.PluginConfig{ PluginConfig: []config.PluginConfig{
@ -1219,7 +1220,8 @@ profiles:
name: "v1 in-tree and out-of-tree plugins from internal", name: "v1 in-tree and out-of-tree plugins from internal",
version: v1.SchemeGroupVersion, version: v1.SchemeGroupVersion,
obj: &config.KubeSchedulerConfiguration{ obj: &config.KubeSchedulerConfiguration{
Parallelism: 8, Parallelism: 8,
DelayCacheUntilActive: true,
Profiles: []config.KubeSchedulerProfile{ Profiles: []config.KubeSchedulerProfile{
{ {
PluginConfig: []config.PluginConfig{ PluginConfig: []config.PluginConfig{
@ -1265,6 +1267,7 @@ clientConnection:
contentType: "" contentType: ""
kubeconfig: "" kubeconfig: ""
qps: 0 qps: 0
delayCacheUntilActive: true
enableContentionProfiling: false enableContentionProfiling: false
enableProfiling: false enableProfiling: false
kind: KubeSchedulerConfiguration kind: KubeSchedulerConfiguration
@ -1315,7 +1318,8 @@ profiles:
name: "v1 ignorePreferredTermsOfExistingPods is enabled", name: "v1 ignorePreferredTermsOfExistingPods is enabled",
version: v1.SchemeGroupVersion, version: v1.SchemeGroupVersion,
obj: &config.KubeSchedulerConfiguration{ obj: &config.KubeSchedulerConfiguration{
Parallelism: 8, Parallelism: 8,
DelayCacheUntilActive: true,
Profiles: []config.KubeSchedulerProfile{ Profiles: []config.KubeSchedulerProfile{
{ {
PluginConfig: []config.PluginConfig{ PluginConfig: []config.PluginConfig{
@ -1337,6 +1341,7 @@ clientConnection:
contentType: "" contentType: ""
kubeconfig: "" kubeconfig: ""
qps: 0 qps: 0
delayCacheUntilActive: true
enableContentionProfiling: false enableContentionProfiling: false
enableProfiling: false enableProfiling: false
kind: KubeSchedulerConfiguration kind: KubeSchedulerConfiguration

View File

@ -96,6 +96,12 @@ type KubeSchedulerConfiguration struct {
// Extenders are the list of scheduler extenders, each holding the values of how to communicate // Extenders are the list of scheduler extenders, each holding the values of how to communicate
// with the extender. These extenders are shared by all scheduler profiles. // with the extender. These extenders are shared by all scheduler profiles.
Extenders []Extender Extenders []Extender
// DelayCacheUntilActive specifies when to start caching. If this is true and leader election is enabled,
// the scheduler will wait to fill informer caches until it is the leader. Doing so will have slower
// failover with the benefit of lower memory overhead while waiting to become leader.
// Defaults to false.
DelayCacheUntilActive bool
} }
// KubeSchedulerProfile is a scheduling profile. // KubeSchedulerProfile is a scheduling profile.

View File

@ -439,6 +439,44 @@ func TestSchedulerDefaults(t *testing.T) {
}, },
}, },
}, },
{
name: "set non default delayCacheUntilActive",
config: &configv1.KubeSchedulerConfiguration{
DelayCacheUntilActive: true,
},
expected: &configv1.KubeSchedulerConfiguration{
Parallelism: pointer.Int32(16),
DelayCacheUntilActive: true,
DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
EnableProfiling: &enable,
EnableContentionProfiling: &enable,
},
LeaderElection: componentbaseconfig.LeaderElectionConfiguration{
LeaderElect: pointer.Bool(true),
LeaseDuration: metav1.Duration{Duration: 15 * time.Second},
RenewDeadline: metav1.Duration{Duration: 10 * time.Second},
RetryPeriod: metav1.Duration{Duration: 2 * time.Second},
ResourceLock: "leases",
ResourceNamespace: "kube-system",
ResourceName: "kube-scheduler",
},
ClientConnection: componentbaseconfig.ClientConnectionConfiguration{
QPS: 50,
Burst: 100,
ContentType: "application/vnd.kubernetes.protobuf",
},
PercentageOfNodesToScore: pointer.Int32(config.DefaultPercentageOfNodesToScore),
PodInitialBackoffSeconds: pointer.Int64(1),
PodMaxBackoffSeconds: pointer.Int64(10),
Profiles: []configv1.KubeSchedulerProfile{
{
Plugins: getDefaultPlugins(),
PluginConfig: pluginConfigs,
SchedulerName: pointer.String("default-scheduler"),
},
},
},
},
{ {
name: "set non default global percentageOfNodesToScore", name: "set non default global percentageOfNodesToScore",
config: &configv1.KubeSchedulerConfiguration{ config: &configv1.KubeSchedulerConfiguration{

View File

@ -429,6 +429,7 @@ func autoConvert_v1_KubeSchedulerConfiguration_To_config_KubeSchedulerConfigurat
out.Profiles = nil out.Profiles = nil
} }
out.Extenders = *(*[]config.Extender)(unsafe.Pointer(&in.Extenders)) out.Extenders = *(*[]config.Extender)(unsafe.Pointer(&in.Extenders))
out.DelayCacheUntilActive = in.DelayCacheUntilActive
return nil return nil
} }
@ -466,6 +467,7 @@ func autoConvert_config_KubeSchedulerConfiguration_To_v1_KubeSchedulerConfigurat
out.Profiles = nil out.Profiles = nil
} }
out.Extenders = *(*[]v1.Extender)(unsafe.Pointer(&in.Extenders)) out.Extenders = *(*[]v1.Extender)(unsafe.Pointer(&in.Extenders))
out.DelayCacheUntilActive = in.DelayCacheUntilActive
return nil return nil
} }

View File

@ -466,6 +466,7 @@ func autoConvert_config_KubeSchedulerConfiguration_To_v1beta3_KubeSchedulerConfi
out.Profiles = nil out.Profiles = nil
} }
out.Extenders = *(*[]v1beta3.Extender)(unsafe.Pointer(&in.Extenders)) out.Extenders = *(*[]v1beta3.Extender)(unsafe.Pointer(&in.Extenders))
// WARNING: in.DelayCacheUntilActive requires manual conversion: does not exist in peer-type
return nil return nil
} }

View File

@ -89,6 +89,12 @@ type KubeSchedulerConfiguration struct {
// with the extender. These extenders are shared by all scheduler profiles. // with the extender. These extenders are shared by all scheduler profiles.
// +listType=set // +listType=set
Extenders []Extender `json:"extenders,omitempty"` Extenders []Extender `json:"extenders,omitempty"`
// DelayCacheUntilActive specifies when to start caching. If this is true and leader election is enabled,
// the scheduler will wait to fill informer caches until it is the leader. Doing so will have slower
// failover with the benefit of lower memory overhead while waiting to become leader.
// Defaults to false.
DelayCacheUntilActive bool `json:"delayCacheUntilActive,omitempty"`
} }
// DecodeNestedObjects decodes plugin args for known types. // DecodeNestedObjects decodes plugin args for known types.