Skip to content
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

Merged
merged 9 commits into from
Oct 22, 2023

Conversation

chaudum
Copy link
Contributor

@chaudum chaudum commented Sep 11, 2023

What this PR does / why we need it:

Simplify deployment with ksonnet:

  • Remove stateful_ingesters flag, because ingesters should always be deployed as StatefulSet with WAL (write ahead log) enabled.

Checklist

  • Reviewed the CONTRIBUTING.md guide (required)
  • Documentation added
  • Tests updated
  • CHANGELOG.md updated
    • If the change is worth mentioning in the release notes, add add-to-release-notes label
  • Changes that require user attention or interaction to upgrade are documented in docs/sources/setup/upgrade/_index.md
  • For Helm chart changes bump the Helm chart version in production/helm/loki/Chart.yaml and update production/helm/loki/CHANGELOG.md and production/helm/loki/README.md. Example PR

Sorry, something went wrong.

@chaudum chaudum changed the title Chaudum/ksonnet remove stateless ingesters chore(ksonnet): Simplify configuration of ingester deployment Sep 11, 2023
@chaudum chaudum force-pushed the chaudum/ksonnet-remove-stateless-ingesters branch from 40b09b8 to d2b2202 Compare September 11, 2023 15:22
@chaudum chaudum marked this pull request as ready for review September 22, 2023 08:19
@chaudum chaudum requested a review from a team as a code owner September 22, 2023 08:19
// 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.
Copy link
Contributor

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,

Copy link
Contributor Author

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') +
Copy link
Contributor

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.

Copy link
Contributor Author

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
Copy link
Contributor

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?

Copy link
Contributor Author

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?

Copy link
Contributor

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]) +
Copy link
Contributor

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?

Copy link
Contributor Author

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 =
Copy link
Contributor

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.

@chaudum chaudum force-pushed the chaudum/ksonnet-remove-stateless-ingesters branch from 175d5eb to 3ea39b7 Compare October 20, 2023 12:43
Copy link
Contributor

@salvacorts salvacorts left a 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
Copy link
Contributor

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.

Verified

This commit was signed with the committer’s verified signature.
chaudum Christian Haudum
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>

Verified

This commit was signed with the committer’s verified signature.
chaudum Christian Haudum
Ingesters should always be deployed as StatefulSet with WAL (write ahead
log) enabled.

Signed-off-by: Christian Haudum <christian.haudum@gmail.com>

Verified

This commit was signed with the committer’s verified signature.
chaudum Christian Haudum
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>

Verified

This commit was signed with the committer’s verified signature.
chaudum Christian Haudum
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>

Verified

This commit was signed with the committer’s verified signature.
chaudum Christian Haudum
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>

Verified

This commit was signed with the committer’s verified signature.
chaudum Christian Haudum
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>

Verified

This commit was signed with the committer’s verified signature.
chaudum Christian Haudum
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>

Verified

This commit was signed with the committer’s verified signature.
chaudum Christian Haudum
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>

Verified

This commit was signed with the committer’s verified signature.
chaudum Christian Haudum
Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
@chaudum chaudum force-pushed the chaudum/ksonnet-remove-stateless-ingesters branch from 059dae2 to 2150946 Compare October 22, 2023 19:14
@chaudum chaudum enabled auto-merge (squash) October 22, 2023 19:15
@chaudum chaudum merged commit b43e253 into main Oct 22, 2023
@chaudum chaudum deleted the chaudum/ksonnet-remove-stateless-ingesters branch October 22, 2023 19:28
rhnasc pushed a commit to inloco/loki that referenced this pull request Apr 12, 2024
…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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants