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/5162af89 Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/5162af89 Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/5162af89 Branch: refs/heads/0.7.0 Commit: 5162af8983fdfc231fc3d11c3e6ee51e6631b3b1 Parents: 513f7e6 Author: Yan Fang <yanfang724 at gmail dot com> Authored: Tue Apr 22 14:54:54 2014 -0700 Committer: Martin Kleppmann <[email protected]> Committed: Tue Jun 10 12:05:02 2014 +0100 ---------------------------------------------------------------------- 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/5162af89/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.
