From 00d314aa63d2f3e6b507bb65e39c189ef0ec6600 Mon Sep 17 00:00:00 2001 From: Mario Petruccelli <35434271+Mafidyuz@users.noreply.github.com> Date: Sun, 26 Oct 2025 21:53:42 +0100 Subject: [PATCH] [hotfix] Fixed a typo in state_backends.md --- docs/content/docs/ops/state/state_backends.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/ops/state/state_backends.md b/docs/content/docs/ops/state/state_backends.md index 854e649cead8c..6f04e495882f4 100644 --- a/docs/content/docs/ops/state/state_backends.md +++ b/docs/content/docs/ops/state/state_backends.md @@ -236,7 +236,7 @@ While we encourage the use of incremental checkpoints for large state, you need - Setting a default in your [Flink configuration file]({{< ref "docs/deployment/config#flink-configuration-file" >}}): `execution.checkpointing.incremental: true` will enable incremental checkpoints, unless the application overrides this setting in the code. - You can alternatively configure this directly in the code (overrides the config default): `EmbeddedRocksDBStateBackend backend = new EmbeddedRocksDBStateBackend(true);` -Notice that once incremental checkpoont is enabled, the `Checkpointed Data Size` showed in web UI only represents the +Notice that once incremental checkpoint is enabled, the `Checkpointed Data Size` showed in web UI only represents the delta checkpointed data size of that checkpoint instead of full state size. ### Memory Management