You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2020/07/28 08:09:32 UTC

[flink-statefun] 03/10: [hotfix] [docs] Make differences sub sections in application-building-blocks.md

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

tzulitai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git

commit 65b83ddb504dc0ac6e56bb761f6430a7d8f5511f
Author: Ufuk Celebi <uf...@ververica.com>
AuthorDate: Tue Jun 30 10:13:21 2020 +0200

    [hotfix] [docs] Make differences sub sections in application-building-blocks.md
    
    These sections are treated as bullet points about stateful functions. Thus, it
    feels more natural to have them as subsections.
---
 docs/concepts/application-building-blocks.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/concepts/application-building-blocks.md b/docs/concepts/application-building-blocks.md
index 96a8461..e2861df 100644
--- a/docs/concepts/application-building-blocks.md
+++ b/docs/concepts/application-building-blocks.md
@@ -55,7 +55,7 @@ Instead of building up a static dataflow DAG, these functions can communicate wi
 If you are familiar with actor programming, this does share certain similarities in its ability to dynamically message between components.
 However, there are a number of significant differences.
 
-## Persisted States
+### Persisted States
 
 The first is that all functions have locally embedded state, known as persisted states.
 
@@ -66,7 +66,7 @@ The first is that all functions have locally embedded state, known as persisted
 One of Apache Flink's core strengths is its ability to provide fault-tolerant local state.
 When inside a function, while it is performing some computation, you are always working with local state in local variables.
 
-## Fault Tolerance
+### Fault Tolerance
 
 For both state and messaging, Stateful Function's is still able to provide the exactly-once guarantees users expect from a modern data processessing framework.
 
@@ -78,7 +78,7 @@ In the case of failure, the entire state of the world (both persisted states and
 
 These guarantees are provided with no database required, instead Stateful Function's leverages Apache Flink's proven snapshotting mechanism.
 
-## Event Egress
+### Event Egress
 
 Finally, applications can output data to external systems via event egress's.