You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@storm.apache.org by HeartSaVioR <gi...@git.apache.org> on 2017/02/22 03:48:17 UTC

[GitHub] storm pull request #1955: Add Streams API and Storm SQL docs to index page

GitHub user HeartSaVioR opened a pull request:

    https://github.com/apache/storm/pull/1955

    Add Streams API and Storm SQL docs to index page

    Rearrange a bit and add documentations about Streams API and some missing Storm SQL.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/HeartSaVioR/storm documentation-add-streams-api-and-storm-sql-to-index

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/storm/pull/1955.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #1955
    
----
commit 9f0a157ed39605b7e374d702aee6fef19942602e
Author: Jungtaek Lim <ka...@gmail.com>
Date:   2017-02-22T03:46:20Z

    Add Streams API and Storm SQL docs to index page

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] storm pull request #1955: Add Streams API and Storm SQL docs to index page

Posted by HeartSaVioR <gi...@git.apache.org>.
Github user HeartSaVioR commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1955#discussion_r102670961
  
    --- Diff: docs/index.md ---
    @@ -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 noticing it via annotating classes with marker interface `@InterfaceStability.Unstable`. 
    --- End diff --
    
    Addressed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] storm issue #1955: Add Streams API and Storm SQL docs to index page

Posted by HeartSaVioR <gi...@git.apache.org>.
Github user HeartSaVioR commented on the issue:

    https://github.com/apache/storm/pull/1955
  
    Thanks for reviewing. I addressed all of review comments. I'll merge this.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] storm pull request #1955: Add Streams API and Storm SQL docs to index page

Posted by arunmahadevan <gi...@git.apache.org>.
Github user arunmahadevan commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1955#discussion_r102639909
  
    --- Diff: docs/index.md ---
    @@ -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 noticing it via annotating classes with marker interface `@InterfaceStability.Unstable`. 
    --- End diff --
    
    ~~noticing it~~ notifying it


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] storm issue #1955: Add Streams API and Storm SQL docs to index page

Posted by ptgoetz <gi...@git.apache.org>.
Github user ptgoetz commented on the issue:

    https://github.com/apache/storm/pull/1955
  
    +1


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] storm pull request #1955: Add Streams API and Storm SQL docs to index page

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/storm/pull/1955


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] storm pull request #1955: Add Streams API and Storm SQL docs to index page

Posted by HeartSaVioR <gi...@git.apache.org>.
Github user HeartSaVioR commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1955#discussion_r102670975
  
    --- Diff: docs/index.md ---
    @@ -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 noticing 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 internal of Storm SQL and supported features are subject to change. 
    --- End diff --
    
    Addressed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] storm pull request #1955: Add Streams API and Storm SQL docs to index page

Posted by arunmahadevan <gi...@git.apache.org>.
Github user arunmahadevan commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1955#discussion_r102639957
  
    --- Diff: docs/index.md ---
    @@ -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 noticing 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 internal of Storm SQL and supported features are subject to change. 
    --- End diff --
    
    ~~internal~~ internals


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] storm pull request #1955: Add Streams API and Storm SQL docs to index page

Posted by arunmahadevan <gi...@git.apache.org>.
Github user arunmahadevan commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1955#discussion_r102639987
  
    --- Diff: docs/index.md ---
    @@ -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 noticing 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 internal of Storm SQL and supported features are subject to change. 
    +But small change will not affect the user experience. We will notice/announce the user when breaking UX change is introduced.
    --- End diff --
    
    ~~notice/announce~~ notify


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] storm pull request #1955: Add Streams API and Storm SQL docs to index page

Posted by HeartSaVioR <gi...@git.apache.org>.
Github user HeartSaVioR commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1955#discussion_r102670991
  
    --- Diff: docs/index.md ---
    @@ -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 noticing 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 internal of Storm SQL and supported features are subject to change. 
    +But small change will not affect the user experience. We will notice/announce the user when breaking UX change is introduced.
    --- End diff --
    
    Addressed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---