You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/maintenance/operations/upgrade-notes-0.8.md
+24-3Lines changed: 24 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,27 @@ Please also upgrade your Flink deployment to **Java 11 or above**. All Flink ver
27
27
28
28
We have updated the report level for some metrics and also removed some metrics, this greatly reduces the metrics amount and improves the performance.
29
29
30
-
The following metrics are removed: TODO
31
-
32
-
The following metrics are changed: TODO
30
+
The following metrics are removed:
31
+
32
+
-`fluss_tabletserver_table_bucket_inSyncReplicasCount` - Removed as redundant. Use `fluss_tabletserver_underReplicated` instead
33
+
-`fluss_tabletserver_table_bucket_log_size` - Removed as improvement. Use `fluss_tabletserver_table_bucket_logicalStorage_logSize` instead
34
+
-`fluss_tabletserver_table_bucket_kv_snapshot_latestSnapshotSize` - Removed as improvement. Use `fluss_tabletserver_table_bucket_logicalStorage_kvSize` instead
35
+
36
+
The following metrics are changed:
37
+
38
+
- The reporting level has been shifted from the `tableBucket` level to the `tabletserver` level:
39
+
-`fluss_tabletserver_table_bucket_underMinIsr` to `fluss_tabletserver_underMinIsr`
40
+
-`fluss_tabletserver_table_bucket_underReplicated` to `fluss_tabletserver_underReplicated`
41
+
-`fluss_tabletserver_table_bucket_atMinIsr` to `fluss_tabletserver_atMinIsr`
42
+
-`fluss_tabletserver_table_bucket_isrExpandsPerSecond` to `fluss_tabletserver_isrExpandsPerSecond`
43
+
-`fluss_tabletserver_table_bucket_isrShrinksPerSecond` to `fluss_tabletserver_isrShrinksPerSecond`
44
+
-`fluss_tabletserver_table_bucket_failedIsrUpdatesPerSecond` to `fluss_tabletserver_failedIsrUpdatesPerSecond`
45
+
-`fluss_tabletserver_table_bucket_log_flushPerSecond` to `fluss_tabletserver_logFlushPerSecond`
46
+
-`fluss_tabletserver_table_bucket_log_flushLatencyMs` to `fluss_tabletserver_logFlushLatencyMs`
47
+
-`fluss_tabletserver_table_bucket_kv_preWriteBufferFlushPerSecond` to `fluss_tabletserver_kvFlushPerSecond`
48
+
-`fluss_tabletserver_table_bucket_kv_preWriteBufferFlushLatencyMs` to `fluss_tabletserver_kvFlushLatencyMs`
49
+
-`fluss_tabletserver_table_bucket_kv_preWriteBufferTruncateAsDuplicatedPerSecond` to `fluss_tabletserver_preWriteBufferTruncateAsDuplicatedPerSecond`
50
+
-`fluss_tabletserver_table_bucket_kv_preWriteBufferTruncateAsErrorPerSecond` to `fluss_tabletserver_preWriteBufferTruncateAsErrorPerSecond`
51
+
- Correction addresses reporting errors in metric names by changing the `table` level metric prefix from `fluss_tabletserver_table__` (used a double underscore (__)) to `fluss_tabletserver_table_`.
52
+
- The affected metrics are all metrics with [Scope: tableserver, infix: table](docs/maintenance/observability/monitor-metrics.md#tablebucket)
53
+
- For example, change `fluss_tabletserver_table__messagesInPerSecond` to `fluss_tabletserver_table_messagesInPerSecond`.
0 commit comments