You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by xi...@apache.org on 2017/09/12 21:19:59 UTC

[18/26] samza git commit: Fix broken link for KeyValueStore in Samza's feature preview web-page

Fix broken link for KeyValueStore in Samza's feature preview web-page


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

Branch: refs/heads/0.14.0
Commit: 2a4ccfdd72513a8a3809c3d01e8fd0d9c23dd1e1
Parents: 80d82b6
Author: Jagadish <ja...@apache.org>
Authored: Wed Aug 23 21:47:50 2017 -0700
Committer: Jagadish <ja...@apache.org>
Committed: Wed Aug 23 21:47:50 2017 -0700

----------------------------------------------------------------------
 docs/startup/preview/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/2a4ccfdd/docs/startup/preview/index.md
----------------------------------------------------------------------
diff --git a/docs/startup/preview/index.md b/docs/startup/preview/index.md
index 619923d..b1ca0ac 100644
--- a/docs/startup/preview/index.md
+++ b/docs/startup/preview/index.md
@@ -116,7 +116,7 @@ For more details on running Samza in embedded mode, take a look at the [flexible
 
 #### IV. Processor
 
-The lowest execution unit of a Samza application is the processor. It reads the configs generated from the [ApplicationRunner](/learn/documentation/{{site.version}}/api/javadocs/org/apache/samza/runtime/ApplicationRunner.html) and processes the input stream partitions assigned by the JobCoordinator. It can access local state using a [KeyValueStore](/learn/documentation/{{site.version}}/api/javadocs/org/apache/samza/storage/KeyValueStore.html) implementation (e.g. RocksDB or in-memory) and remote state (e.g. REST service) using multithreading.
+The lowest execution unit of a Samza application is the processor. It reads the configs generated from the [ApplicationRunner](/learn/documentation/{{site.version}}/api/javadocs/org/apache/samza/runtime/ApplicationRunner.html) and processes the input stream partitions assigned by the JobCoordinator. It can access local state using a [KeyValueStore](/learn/documentation/{{site.version}}/api/javadocs/org/apache/samza/storage/kv/KeyValueStore.html) implementation (e.g. RocksDB or in-memory) and remote state (e.g. REST service) using multithreading.
 
 ---