You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by al...@apache.org on 2020/06/10 10:37:06 UTC

[flink] 02/04: [FLINK-17982] Remove TODOs from stateful-stream-processing

This is an automated email from the ASF dual-hosted git repository.

aljoscha pushed a commit to branch release-1.11
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 0e080acea4048beb6db72f167b1ed919fe551ace
Author: Aljoscha Krettek <al...@apache.org>
AuthorDate: Tue Jun 9 12:53:55 2020 +0200

    [FLINK-17982] Remove TODOs from stateful-stream-processing
    
    For some sections, we will expand them in the future when we have actual
    functionality. Some aimed at expanding sections but they are also ok as
    they are now.
---
 docs/concepts/stateful-stream-processing.md | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/docs/concepts/stateful-stream-processing.md b/docs/concepts/stateful-stream-processing.md
index 7648791..112171a 100644
--- a/docs/concepts/stateful-stream-processing.md
+++ b/docs/concepts/stateful-stream-processing.md
@@ -61,12 +61,6 @@ provides different state backends that specify how and where state is stored.
 
 {% top %}
 
-## State in Stream & Batch Processing
-
-`TODO: What is this section about? Do we even need it?`
-
-{% top %}
-
 ## Keyed State
 
 Keyed state is maintained in what can be thought of as an embedded key/value
@@ -250,8 +244,6 @@ See [Restart Strategies]({% link dev/task_failure_recovery.md
 
 ### State Backends
 
-`TODO: expand this section`
-
 The exact data structures in which the key/values indexes are stored depends on
 the chosen [state backend]({% link
 ops/state/state_backends.md %}). One state backend stores data in an in-memory
@@ -268,8 +260,6 @@ logic.
 
 ### Savepoints
 
-`TODO: expand this section`
-
 All programs that use checkpointing can resume execution from a **savepoint**.
 Savepoints allow both updating your programs and your Flink cluster without
 losing any state.
@@ -310,10 +300,6 @@ give *exactly once* guarantees even in *at least once* mode.
 
 {% top %}
 
-## End-to-end Exactly-Once Programs
-
-`TODO: add`
-
 ## State and Fault Tolerance in Batch Programs
 
 Flink executes [batch programs](../dev/batch/index.html) as a special case of