You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by jg...@apache.org on 2014/04/21 23:10:38 UTC

git commit: SAMZA-246: Typo in README.md.

Repository: incubator-samza
Updated Branches:
  refs/heads/master 392b4c4d8 -> 156d4a4f7


SAMZA-246: Typo in README.md.


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

Branch: refs/heads/master
Commit: 156d4a4f74232646cb8dfca3d35566cc1a652f74
Parents: 392b4c4
Author: Jon Bringhurst <jo...@bringhurst.org>
Authored: Mon Apr 21 14:09:24 2014 -0700
Committer: Jakob Homan <jg...@apache.org>
Committed: Mon Apr 21 14:09:24 2014 -0700

----------------------------------------------------------------------
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/156d4a4f/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 7d0ff10..44cdef7 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 Apache Incubator Samza is a distributed stream processing framework. It uses <a target="_blank" href="http://kafka.apache.org">Apache Kafka</a> for messaging, and <a target="_blank" href="http://hadoop.apache.org/docs/current/hadoop-yarn/hadoop-yarn-site/YARN.html">Apache Hadoop YARN</a> to provide fault tolerance, processor isolation, security, and resource management.
 
-* **Simpe API:** Unlike most low-level messaging system APIs, Samza provides a very simple call-back based "process message" API that should be familiar to anyone that's used Map/Reduce.
+* **Simple API:** Unlike most low-level messaging system APIs, Samza provides a very simple call-back based "process message" API that should be familiar to anyone that's used Map/Reduce.
 * **Managed state:** Samza manages snapshotting and restoration of a stream processor's state. Samza will restore a stream processor's state to a snapshot consistent with the processor's last read messages when the processor is restarted.
 * **Fault tolerance:** Samza will work with YARN to restart your stream processor if there is a machine or processor failure.
 * **Durability:** Samza uses Kafka to guarantee that messages will be processed in the order they were written to a partition, and that no messages will ever be lost.