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

[dashboards] Unify ingester autoscaling panels on writes dashboard #9617

Merged
merged 7 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@

### Mixin

* [ENHANCEMENT] Unify ingester autoscaling panels on 'Mimir / Writes' dashboard to work for both ingest-storage and non-ingest-storage autoscaling. #9617
* [BUGFIX] Dashboards: Fix autoscaling metrics joins when series churn. #9412 #9450 #9432
* [BUGFIX] Alerts: Fix autoscaling metrics joins in `MimirAutoscalerNotActive` when series churn. #9412

Expand Down
1 change: 1 addition & 0 deletions operations/mimir-mixin/config.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -653,6 +653,7 @@
ingester: {
enabled: false,
hpa_name: $._config.autoscaling_hpa_prefix + 'ingester-zone-a',
replica_template_name: 'ingester-zone-a',
},
compactor: {
enabled: false,
Expand Down
6 changes: 3 additions & 3 deletions operations/mimir-mixin/dashboards/dashboard-utils.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ local utils = import 'mixin-utils/utils.libsonnet';
),

// The provided componentName should be the name of a component among the ones defined in $._config.autoscaling.
autoScalingActualReplicas(componentName)::
autoScalingActualReplicas(componentName, addlQueries=[], addlLegends=[])::
local title = 'Replicas';
local componentTitle = std.strReplace(componentName, '_', '-');

Expand Down Expand Up @@ -660,12 +660,12 @@ local utils = import 'mixin-utils/utils.libsonnet';
hpa_name: $._config.autoscaling[componentName].hpa_name,
cluster_labels: std.join(', ', $._config.cluster_labels),
},
],
] + addlQueries,
[
'Max {{ scaletargetref_name }}',
'Current {{ scaletargetref_name }}',
'Min {{ scaletargetref_name }}',
],
] + addlLegends,
) +
$.panelDescription(
title,
Expand Down
68 changes: 31 additions & 37 deletions operations/mimir-mixin/dashboards/writes.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -370,56 +370,50 @@ local filename = 'mimir-writes.json';
$._config.autoscaling.ingester.enabled,
$.row('Ingester – autoscaling')
.addPanel(
$.autoScalingActualReplicas('ingester') + { title: 'Replicas (leader zone)' } +
local replicaTemplateQueries = [
'max(kube_customresource_replicatemplate_spec_replicas{%(namespace_matcher)s, name=~"%(replica_template_name)s"})' % {
namespace_matcher: $.namespaceMatcher(),
replica_template_name: $._config.autoscaling.ingester.replica_template_name,
},
'max(kube_customresource_replicatemplate_status_replicas{%(namespace_matcher)s, name=~"%(replica_template_name)s"})' % {
namespace_matcher: $.namespaceMatcher(),
replica_template_name: $._config.autoscaling.ingester.replica_template_name,
},
];

local replicaTemplateLegends = [
'Template spec replicas',
'Template status replicas',
];

$.autoScalingActualReplicas('ingester', replicaTemplateQueries, replicaTemplateLegends) + { title: 'Replicas (HPA + ReplicaTemplate)' } +
$.panelDescription(
'Replicas (leader zone)',
'Replicas (HPA + ReplicaTemplate)',
|||
The minimum, maximum, and current number of replicas for the leader zone of ingesters.
Other zones scale to follow this zone (with delay for downscale).
The minimum, maximum, and current number of replicas reported by the HPA for the ReplicaTemplate object.
If available, also the spec and status replicas fields for the ReplicaTemplate object itself.
Rollout-operator will keep ingester replicas updated based on the ReplicaTemplate spec field, and then update the template's status field once the ingester count changes.
|||
)
)
.addPanel(
$.timeseriesPanel('Replicas') +
$.panelDescription('Replicas', 'Number of ingester replicas per zone.') +
$.queryPanel(
[
'sum by (%s) (up{%s})' % [$._config.per_job_label, $.jobMatcher($._config.job_names.ingester)],
],
[
'{{ %(per_job_label)s }}' % $._config.per_job_label,
],
),
)
.addPanel(
$.autoScalingDesiredReplicasByValueScalingMetricPanel('ingester', '', '') + { title: 'Desired replicas (leader zone)' }
)
.addPanel(
$.autoScalingFailuresPanel('ingester') + { title: 'Autoscaler failures rate' }
),
)
.addRowIf(
$._config.show_ingest_storage_panels && $._config.autoscaling.ingester.enabled,
$.row('Ingester – autoscaling (ingest storage)')
.addPanel(
$.autoScalingActualReplicas('ingester') + { title: 'Replicas (ReplicaTemplate)' } +
$.timeseriesPanel('Replicas (Ingesters)') +
$.panelDescription(
'Replicas (ReplicaTemplate)',
'Replicas (Ingesters)',
|||
The minimum, maximum, and current number of replicas for the ReplicaTemplate object.
Rollout-operator will keep ingester replicas updated based on this object.
Number of up ingester replicas per zone.
Also show the number of read-only replicas per zone, or number of Inactive partitions for ingest storage.
|||
)
)
.addPanel(
$.timeseriesPanel('Replicas') +
$.panelDescription('Replicas', 'Number of ingester replicas.') +
$.queryPanel(
) + $.queryPanel(
[
'sum by (%s) (up{%s})' % [$._config.per_job_label, $.jobMatcher($._config.job_names.ingester)],
'sum by (%s) (cortex_lifecycler_read_only{%s}) unless on (%s) (cortex_partition_ring_partitions{name="ingester-partitions"})' % [$._config.per_job_label, $.jobMatcher($._config.job_names.ingester), $._config.per_job_label],
'max(cortex_partition_ring_partitions{%s,name="ingester-partitions",state="Inactive"})' % [$.namespaceMatcher()],
],
[
'{{ %(per_job_label)s }}' % $._config.per_job_label,
'up ({{ %(per_job_label)s }})' % $._config.per_job_label,
'read-only ({{ %(per_job_label)s }})' % $._config.per_job_label,
'inactive partitions',
],
),
)
Expand Down
Loading