You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by ja...@apache.org on 2018/10/12 02:48:16 UTC

[32/32] samza git commit: Minor: Fix typo in Core Concepts section

Minor: Fix typo in Core Concepts section


Project: http://git-wip-us.apache.org/repos/asf/samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/samza/commit/f7ebe591
Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/f7ebe591
Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/f7ebe591

Branch: refs/heads/master
Commit: f7ebe5918cb8a040a6b22007ebb1310c72694e89
Parents: da808fc
Author: Jagadish <jv...@linkedin.com>
Authored: Thu Oct 11 19:47:22 2018 -0700
Committer: Jagadish <jv...@linkedin.com>
Committed: Thu Oct 11 19:47:22 2018 -0700

----------------------------------------------------------------------
 docs/learn/documentation/versioned/core-concepts/core-concepts.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/f7ebe591/docs/learn/documentation/versioned/core-concepts/core-concepts.md
----------------------------------------------------------------------
diff --git a/docs/learn/documentation/versioned/core-concepts/core-concepts.md b/docs/learn/documentation/versioned/core-concepts/core-concepts.md
index 52965a2..c4e5c21 100644
--- a/docs/learn/documentation/versioned/core-concepts/core-concepts.md
+++ b/docs/learn/documentation/versioned/core-concepts/core-concepts.md
@@ -78,7 +78,7 @@ Time is a fundamental concept in stream processing, especially how it is modeled
 On the other hand, in event time, the timestamp of an event is determined by when it actually occurred in the source. For example, a sensor which generates an event could embed the time of occurrence as a part of the event itself. Samza provides event-time based processing by its integration with [Apache BEAM](https://beam.apache.org/documentation/runners/samza/).
 
 ## Processing guarantee
-Samza supports at-least once processing. As the name implies, this ensures that each message in the input stream is processed by the system at-least once. This guarantees no data-loss even when there are failures making Samza a practical choice for building fault-tolerant applications.
+Samza supports at-least once processing. As the name implies, this ensures that each message in the input stream is processed by the system at-least once. This guarantees no data-loss even when there are failures, thereby making Samza a practical choice for building fault-tolerant applications.
 
 
 Next Steps: We are now ready to have a closer look at Samza’s architecture.