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/22 23:55:07 UTC

git commit: SAMZA-240: Fix wrong Javadocs link in Streams introduction page

Repository: incubator-samza
Updated Branches:
  refs/heads/master 5c5a95c33 -> 06b3698d7


SAMZA-240: Fix wrong Javadocs link in Streams introduction page


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

Branch: refs/heads/master
Commit: 06b3698d78cc049ba8640ef0a2c29f1f634f0f8c
Parents: 5c5a95c
Author: Yan Fang <yanfang724 at gmail dot com>
Authored: Tue Apr 22 14:54:54 2014 -0700
Committer: Jakob Homan <jg...@gmail.com>
Committed: Tue Apr 22 14:54:54 2014 -0700

----------------------------------------------------------------------
 docs/learn/documentation/0.7.0/container/streams.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/06b3698d/docs/learn/documentation/0.7.0/container/streams.md
----------------------------------------------------------------------
diff --git a/docs/learn/documentation/0.7.0/container/streams.md b/docs/learn/documentation/0.7.0/container/streams.md
index fc65ff7..0f18b34 100644
--- a/docs/learn/documentation/0.7.0/container/streams.md
+++ b/docs/learn/documentation/0.7.0/container/streams.md
@@ -59,7 +59,7 @@ If a job is consuming messages from more than one system/stream/partition combin
 
 #### MessageChooser
 
-The default round robin behavior can be overridden by implementing a custom MessageChooser. A MessageChooser's job is to answer the question, "Given a set of incoming messages, which one should a Samza container process next?".  To write a custom MessageChooser, take a look at the [Javadocs](http://localhost:4000/learn/documentation/0.7.0/api/javadocs/org/apache/samza/system/MessageChooser.html), and then configure your task with the "task.chooser.class" configuration, which should point to your MessageChooserFactory.
+The default round robin behavior can be overridden by implementing a custom MessageChooser. A MessageChooser's job is to answer the question, "Given a set of incoming messages, which one should a Samza container process next?".  To write a custom MessageChooser, take a look at the [Javadocs](../api/javadocs/org/apache/samza/system/MessageChooser.html), and then configure your task with the "task.chooser.class" configuration, which should point to your MessageChooserFactory.
 
 Out of the box, Samza ships with a RoundRobinChooser, which is the default. You can use the StreamChooser by adding the following configuration to your job.