Repository: storm Updated Branches: refs/heads/master 2833e3061 -> 408bdb900
Add Streams API and Storm SQL docs to index page Project: http://git-wip-us.apache.org/repos/asf/storm/repo Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/16bf6c0f Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/16bf6c0f Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/16bf6c0f Branch: refs/heads/master Commit: 16bf6c0ff0a2fb444130690ac1f5d9c9b6de89db Parents: 4986373 Author: Jungtaek Lim <[email protected]> Authored: Wed Feb 22 12:46:20 2017 +0900 Committer: Jungtaek Lim <[email protected]> Committed: Thu Feb 23 18:27:31 2017 +0900 ---------------------------------------------------------------------- docs/index.md | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/storm/blob/16bf6c0f/docs/index.md ---------------------------------------------------------------------- diff --git a/docs/index.md b/docs/index.md index 6fd539e..de2277a 100644 --- a/docs/index.md +++ b/docs/index.md @@ -16,10 +16,7 @@ documentation: true * [Understanding the parallelism of a Storm topology](Understanding-the-parallelism-of-a-Storm-topology.html) * [FAQ](FAQ.html) -### Layers on Top of Storm - -* [Flux Data Driven Topology Builder](flux.html) -* [SQL](storm-sql.html) +### Layers on top of Storm #### Trident @@ -31,6 +28,31 @@ Trident is an alternative interface to Storm. It provides exactly-once processin * [Trident spouts](Trident-spouts.html) -- transactional and non-transactional data intake * [Trident RAS API](Trident-RAS-API.html) -- using the Resource Aware Scheduler with Trident. +#### Streams API + +Stream APIs is another alternative interface to Storm. It provides a typed API for expressing streaming computations and supports functional style operations. + +NOTE: Streams API is an `experimental` feature, and further works might break backward compatibility. +We're also notifying it via annotating classes with marker interface `@InterfaceStability.Unstable`. + +* [Streams API](Stream-API.html) + +#### SQL + +The Storm SQL integration allows users to run SQL queries over streaming data in Storm. + +NOTE: Storm SQL is an `experimental` feature, so the internals of Storm SQL and supported features are subject to change. +But small change will not affect the user experience. We will notify the user when breaking UX change is introduced. + +* [Storm SQL overview](storm-sql.html) +* [Storm SQL example](storm-sql-example.html) +* [Storm SQL reference](storm-sql-reference.html) +* [Storm SQL internal](storm-sql-internal.html) + +#### Flux + +* [Flux Data Driven Topology Builder](flux.html) + ### Setup and Deploying * [Setting up a Storm cluster](Setting-up-a-Storm-cluster.html)
