[GitHub] incubator-gearpump pull request #185: [GEARPUMP-315] Add GlobalWindows and i...

2017-05-27 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/incubator-gearpump/pull/185


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-gearpump issue #185: [GEARPUMP-315] Add GlobalWindows and implemen...

2017-05-27 Thread huafengw
Github user huafengw commented on the issue:

https://github.com/apache/incubator-gearpump/pull/185
  
+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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-gearpump issue #185: [GEARPUMP-315] Add GlobalWindows and implemen...

2017-05-27 Thread codecov-io
Github user codecov-io commented on the issue:

https://github.com/apache/incubator-gearpump/pull/185
  
# 
[Codecov](https://codecov.io/gh/apache/incubator-gearpump/pull/185?src=pr=h1)
 Report
> Merging 
[#185](https://codecov.io/gh/apache/incubator-gearpump/pull/185?src=pr=desc) 
into 
[master](https://codecov.io/gh/apache/incubator-gearpump/commit/fc8006cead6f05aeda2b835deef1f843f6b9a926?src=pr=desc)
 will **increase** coverage by `0.03%`.
> The diff coverage is `33.33%`.



```diff
@@Coverage Diff @@
##   master #185  +/-   ##
==
+ Coverage   71.92%   71.95%   +0.03% 
==
  Files 191  191  
  Lines6084 6087   +3 
  Branches  523  532   +9 
==
+ Hits 4376 4380   +4 
+ Misses   1708 1707   -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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Created] (GEARPUMP-316) Don't enforce groupBy after window

2017-05-27 Thread Manu Zhang (JIRA)
Manu Zhang created GEARPUMP-316:
---

 Summary: Don't enforce groupBy after window
 Key: GEARPUMP-316
 URL: https://issues.apache.org/jira/browse/GEARPUMP-316
 Project: Apache Gearpump
  Issue Type: Sub-task
Reporter: Manu Zhang


Return a normal Stream instead of WindowStream on window function. Window 
function defines a boundary (window) for elements and the following operations 
should fall in corresponding boundaries. The boundary should not change until a 
new window function is defined. The default boundary is the {{GlobalWindows}}.

This means there will be a window context for each underlying task. Elements 
are emitted in terms of the trigger semantics. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Assigned] (GEARPUMP-316) Don't enforce groupBy after window

2017-05-27 Thread Manu Zhang (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEARPUMP-316?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Manu Zhang reassigned GEARPUMP-316:
---

Assignee: Manu Zhang

> Don't enforce groupBy after window
> --
>
> Key: GEARPUMP-316
> URL: https://issues.apache.org/jira/browse/GEARPUMP-316
> Project: Apache Gearpump
>  Issue Type: Sub-task
>  Components: streaming
>Reporter: Manu Zhang
>Assignee: Manu Zhang
>
> Return a normal Stream instead of WindowStream on window function. Window 
> function defines a boundary (window) for elements and the following 
> operations should fall in corresponding boundaries. The boundary should not 
> change until a new window function is defined. The default boundary is the 
> {{GlobalWindows}}.
> This means there will be a window context for each underlying task. Elements 
> are emitted in terms of the trigger semantics. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (GEARPUMP-315) Add GlobalWindows and implement groupBy on it

2017-05-27 Thread Manu Zhang (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEARPUMP-315?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Manu Zhang resolved GEARPUMP-315.
-
   Resolution: Fixed
Fix Version/s: 0.8.4

Issue resolved by pull request 185
[https://github.com/apache/incubator-gearpump/pull/185]

> Add GlobalWindows and implement groupBy on it
> -
>
> Key: GEARPUMP-315
> URL: https://issues.apache.org/jira/browse/GEARPUMP-315
> Project: Apache Gearpump
>  Issue Type: Sub-task
>Affects Versions: 0.8.3
>Reporter: Manu Zhang
>Assignee: Manu Zhang
> Fix For: 0.8.4
>
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (GEARPUMP-315) Add GlobalWindows and implement groupBy on it

2017-05-27 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/GEARPUMP-315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16027335#comment-16027335
 ] 

ASF GitHub Bot commented on GEARPUMP-315:
-

Github user asfgit closed the pull request at:

https://github.com/apache/incubator-gearpump/pull/185


> Add GlobalWindows and implement groupBy on it
> -
>
> Key: GEARPUMP-315
> URL: https://issues.apache.org/jira/browse/GEARPUMP-315
> Project: Apache Gearpump
>  Issue Type: Sub-task
>Affects Versions: 0.8.3
>Reporter: Manu Zhang
>Assignee: Manu Zhang
> Fix For: 0.8.4
>
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[GitHub] incubator-gearpump pull request #185: [GEARPUMP-315] Add GlobalWindows and i...

2017-05-27 Thread manuzhang
GitHub user manuzhang opened a pull request:

https://github.com/apache/incubator-gearpump/pull/185

[GEARPUMP-315] Add GlobalWindows and implement groupBy on it

Be sure to do all of the following to help us incorporate your contribution
quickly and easily:

 - [ ] Make sure the commit message is formatted like:
   `[GEARPUMP-] Meaningful description of pull request` 
 - [ ] Make sure tests pass via `sbt clean test`.
 - [ ] Make sure old documentation affected by the pull request has been 
updated and new documentation added for new functionality. 



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

$ git pull https://github.com/manuzhang/incubator-gearpump global_window

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

https://github.com/apache/incubator-gearpump/pull/185.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 #185


commit ccd44ae9f65571eeed35b5c65d27157ca7f84470
Author: manuzhang 
Date:   2017-05-27T06:05:51Z

[GEARPUMP-315] Add GlobalWindows and implement groupBy on 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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Commented] (GEARPUMP-315) Add GlobalWindows and implement groupBy on it

2017-05-27 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/GEARPUMP-315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16027274#comment-16027274
 ] 

ASF GitHub Bot commented on GEARPUMP-315:
-

GitHub user manuzhang opened a pull request:

https://github.com/apache/incubator-gearpump/pull/185

[GEARPUMP-315] Add GlobalWindows and implement groupBy on it

Be sure to do all of the following to help us incorporate your contribution
quickly and easily:

 - [ ] Make sure the commit message is formatted like:
   `[GEARPUMP-] Meaningful description of pull request` 
 - [ ] Make sure tests pass via `sbt clean test`.
 - [ ] Make sure old documentation affected by the pull request has been 
updated and new documentation added for new functionality. 



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

$ git pull https://github.com/manuzhang/incubator-gearpump global_window

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

https://github.com/apache/incubator-gearpump/pull/185.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 #185


commit ccd44ae9f65571eeed35b5c65d27157ca7f84470
Author: manuzhang 
Date:   2017-05-27T06:05:51Z

[GEARPUMP-315] Add GlobalWindows and implement groupBy on it




> Add GlobalWindows and implement groupBy on it
> -
>
> Key: GEARPUMP-315
> URL: https://issues.apache.org/jira/browse/GEARPUMP-315
> Project: Apache Gearpump
>  Issue Type: Sub-task
>Affects Versions: 0.8.3
>Reporter: Manu Zhang
>Assignee: Manu Zhang
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)