Repository: kafka Updated Branches: refs/heads/0.10.1 8cd3875a2 -> 75632e3d1
MINOR: Fixed introduction doc - wrong streams api link Author: Jakub Dziworski <[email protected]> Reviewers: Guozhang Wang <[email protected]>, Jason Gustafson <[email protected]> Closes #1996 from JakubDziworski/doc_fix_streams_link (cherry picked from commit 7a5133d5545fbffa5bea89818a5b6b3e2175e418) Signed-off-by: Jason Gustafson <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/75632e3d Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/75632e3d Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/75632e3d Branch: refs/heads/0.10.1 Commit: 75632e3d1236461d2dc0f0f3cd5d00ed135e6f46 Parents: 8cd3875 Author: Jakub Dziworski <[email protected]> Authored: Mon Oct 10 10:15:47 2016 -0700 Committer: Jason Gustafson <[email protected]> Committed: Mon Oct 10 10:16:25 2016 -0700 ---------------------------------------------------------------------- docs/introduction.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/75632e3d/docs/introduction.html ---------------------------------------------------------------------- diff --git a/docs/introduction.html b/docs/introduction.html index fb05f68..3f03fc1 100644 --- a/docs/introduction.html +++ b/docs/introduction.html @@ -146,7 +146,7 @@ In Kafka a stream processor is anything that takes continual streams of data fr <p> For example a retail application might take in input streams of sales and shipments, and output a stream of reorders and price adjustments computed off this data. <p> -It is possible to do simple processing directly using the producer and consumer APIs. However for more complex transformations Kafka provides a fully integrated <a href="/streams.html">Streams API</a>. This allows building applications that do non-trivial processing that compute aggregations off of streams or join streams together. +It is possible to do simple processing directly using the producer and consumer APIs. However for more complex transformations Kafka provides a fully integrated <a href="/documentation.html#streams">Streams API</a>. This allows building applications that do non-trivial processing that compute aggregations off of streams or join streams together. <p> This facility helps solve the hard problems this type of application faces: handling out-of-order data, reprocessing input as code changes, performing stateful computations, etc. <p>
