Skip to content

Commit

Permalink
KEP-NNNN: allow informers for getting a stream of data instead of chu…
Browse files Browse the repository at this point in the history
…nking.

The kube-apiserver is vulnerable to memory explosion.
The issue is apparent in larger clusters, where only a few LIST requests might cause serious disruption.
Uncontrolled and unbounded memory consumption of the servers does not only affect clusters that operate in an
HA mode but also other programs that share the same machine.
In this KEP we propose a potential solution to this issue.
  • Loading branch information
p0lyn0mial committed Jan 14, 2022
1 parent 9d6fb25 commit 2d778e2
Show file tree
Hide file tree
Showing 8 changed files with 1,007 additions and 0 deletions.
956 changes: 956 additions & 0 deletions keps/sig-api-machinery/NNNN-watch-list/README.md

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions keps/sig-api-machinery/NNNN-watch-list/kep.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
title: Allow informers for getting a stream of data instead of chunking
kep-number: NNNN
authors:
- "@sttts"
- "@p0lyn0mial"
owning-sig: sig-api-machinery
participating-sigs:
- sig-scalability
status: provisional
creation-date: 2022-01-14
reviewers:
- "@wojtek-t"
approvers:
- "@deads2k"
- "@lavalamp"

##### WARNING !!! ######
# prr-approvers has been moved to its own location
# You should create your own in keps/prod-readiness
# Please make a copy of keps/prod-readiness/template/nnnn.yaml
# to keps/prod-readiness/sig-xxxxx/00000.yaml (replace with kep number)
#prr-approvers:

see-also:
replaces:

# The target maturity stage in the current dev cycle for this KEP.
stage: alpha

# The most recent milestone for which work toward delivery of this KEP has been
# done. This can be the current (upcoming) milestone, if it is being actively
# worked on.
latest-milestone: "v1.24"

# The milestone at which this feature was, or is targeted to be, at each stage.
milestone:
alpha: "v1.24"
beta: "tbd"
stable: "tbd"

# The following PRR answers are required at alpha release
# List the feature gate name and the components for which it must be enabled
feature-gates:
- name: TBD
components:
- kube-apiserver
disable-supported: true

# The following PRR answers are required at beta release
metrics:
- my_feature_metric
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2d778e2

Please sign in to comment.