-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(ksonnet): Simplify configuration of ingester deployment #10542
Conversation
40b09b8
to
d2b2202
Compare
// flags for running ingesters/queriers as a statefulset instead of deployment type. | ||
// WAL enabled configurations automatically use statefulsets. | ||
stateful_ingesters: false, | ||
// flags for running queriers as a statefulset instead of deployment type. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this comment should go in line 30 next to stateful_queriers: false,
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the comment completely as it does not make sense any more.
@@ -47,42 +46,19 @@ local k = import 'ksonnet-util/kausal.libsonnet'; | |||
container.mixin.readinessProbe.httpGet.withPort($._config.http_listen_port) + | |||
container.mixin.readinessProbe.withInitialDelaySeconds(15) + | |||
container.mixin.readinessProbe.withTimeoutSeconds(1) + | |||
k.util.resourcesRequests('1', '5Gi') + | |||
k.util.resourcesLimits('2', '10Gi') + | |||
k.util.resourcesRequests('1', '7Gi') + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we should make this configurable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here. These are just default values
ingester_pvc_size: '10Gi', | ||
ingester_pvc_class: 'fast', | ||
|
||
ingester_data_disk_size: self.ingester_pvc_size, // keep backwards compatibility |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this is the variable that is actually used:
pvc.mixin.spec.resources.withRequests({ storage: $._config.ingester_data_disk_size }) + |
pvc.mixin.spec.resources.withRequests({ storage: $._config.ingester_data_disk_size }) + |
Provided we are deprecating stuff, should we remove ingester_data_disk_size
and only have ingester_pvc_size
to keep things simple?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since ingester_data_disk_size
is referenced, why do you want to replace it with the other variable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was proposing to remove ingester_data_disk_size and only use ingester_pvc_size.
|
||
$.newLokiStatefulSet(name, 3, container, ingester_data_pvc) + | ||
newIngesterStatefulSet(name, container, with_anti_affinity=true):: | ||
$.newLokiStatefulSet(name, 3, container, [ingester_data_pvc, ingester_wal_pvc]) + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IIUC, the 3 here is the number of replicas. Shouldn't this be configurable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The replica value is usually overwritten in a scaling.libsonnet
, so the initial value does not matter too much - as long as it fulfils the replication factor.
local zone_name = 'zone-%s' % zone; | ||
// The ingesters should persist TSDB blocks and WAL on a persistent | ||
// volume in order to be crash resilient. | ||
local ingester_data_pvc = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like we are repeating a bunch of code from ingester.libsonnet
. I wonder if we should reuse some of the things we define on that file here.
175d5eb
to
3ea39b7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
ingester_pvc_size: '10Gi', | ||
ingester_pvc_class: 'fast', | ||
|
||
ingester_data_disk_size: self.ingester_pvc_size, // keep backwards compatibility |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was proposing to remove ingester_data_disk_size and only use ingester_pvc_size.
This PR removes the option for deploying ingesters as Kubernetes Deployment. Instead, always run ingesters as StatefulSet. The configuration setting `stateful_ingesters` is removed. As a follow up PR, the WAL configuration will be removed as well, because stateful ingesters should always be run with a write ahead log. Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
Ingesters should always be deployed as StatefulSet with WAL (write ahead log) enabled. Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
These changes for the multi-zone ingester deployment are taken from Grafana Cloud downstream and have been in production for some time. Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
059dae2
to
2150946
Compare
…a#10542) Simplify deployment with ksonnet: Remove `stateful_ingesters` flag, because ingesters should always be deployed as StatefulSet with WAL (write ahead log) enabled. Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
What this PR does / why we need it:
Simplify deployment with ksonnet:
stateful_ingesters
flag, because ingesters should always be deployed as StatefulSet with WAL (write ahead log) enabled.Checklist
CONTRIBUTING.md
guide (required)CHANGELOG.md
updatedadd-to-release-notes
labeldocs/sources/setup/upgrade/_index.md
production/helm/loki/Chart.yaml
and updateproduction/helm/loki/CHANGELOG.md
andproduction/helm/loki/README.md
. Example PR