[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-23 Thread mateiz
Github user mateiz commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-56571173
  
Thanks, this looks good.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-23 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/spark/pull/2403


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-22 Thread SparkQA
Github user SparkQA commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-56368082
  
  [QA tests have 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/20654/consoleFull)
 for   PR 2403 at commit 
[`5a9e706`](https://github.com/apache/spark/commit/5a9e706c262ee3cb09e9125d244a3fa959b22f15).
 * This patch merges cleanly.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-22 Thread SparkQA
Github user SparkQA commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-56376900
  
  [QA tests have 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/20654/consoleFull)
 for   PR 2403 at commit 
[`5a9e706`](https://github.com/apache/spark/commit/5a9e706c262ee3cb09e9125d244a3fa959b22f15).
 * This patch **passes** unit tests.
 * This patch merges cleanly.
 * This patch adds no public classes.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-18 Thread ScrapCodes
Github user ScrapCodes commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-56015430
  
I guess we will have to exclude those in MimaExcludes.scala. If this 
happens too often, then *may be* we can ignore toString for all classes 
possible.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-17 Thread srowen
Github user srowen commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55864499
  
I'm not sure what to make of the MIMA errors:

* the type hierarchy of object org.apache.spark.streaming.Duration has 
changed in new version. Missing types {scala.runtime.AbstractFunction1}
* method apply(java.lang.Object)java.lang.Object in object 
org.apache.spark.streaming.Duration's type has changed; was 
(java.lang.Object)java.lang.Object, is now: 
(Long)org.apache.spark.streaming.Duration
* method toString()java.lang.String in object 
org.apache.spark.streaming.Duration does not have a correspondent in new version

I assume this is a side-effect of adding `object Duration`, but I don't see 
why this would have changed the `apply` method this way. `toString` still 
definitely exists. So I wonder if this is a false positive and should be 
suppressed?


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-17 Thread mateiz
Github user mateiz commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55978195
  
Yeah, these seem like false positives. @ScrapCodes can you take a look and 
suggest how to update the MIMA rules if these are indeed false positives?


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-17 Thread mateiz
Github user mateiz commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55978382
  
Actually it may also be the case that the object doesn't work quite the way 
the default companion object for a case class should. Can you double check that 
stuff like `Duration(5L)` still works, as does `(1L to 10L).map(Duration)`? If 
not, we may have to put these in a helper object called Durations instead, 
which would still be fine (and then we could have our milliseconds back!).


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-17 Thread mateiz
Github user mateiz commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55978495
  
Yeah I think this is an actual problem, see 
https://issues.scala-lang.org/browse/SI-3664. Maybe we should just go with 
Durations for simplicity.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-16 Thread srowen
Github user srowen commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55777417
  
@mateiz Will do. There's one catch. Since `Duration` has an accessor named 
`milliseconds`, and has a private accessor called `millis` from the 
constructor, I can't create `Duration.milliseconds` or `Duration.millis`. I 
could just omit this particular helper as it's pretty redundant with the 
constructor?

I'll also add tests, and give `Time` a similar treatment with Java-friendly 
names, and tests.

(PS the scalastyle checks fail because there appear to be binary operators 
without surrounding space. I believe it's necessary to disable the checks in 
that section of declarations, since they're not actually usages of a binary 
operator.)


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-16 Thread SparkQA
Github user SparkQA commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55817871
  
  [QA tests have 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/20426/consoleFull)
 for   PR 2403 at commit 
[`7dde949`](https://github.com/apache/spark/commit/7dde949e221159b19da0042b8f4b6c890ee106b6).
 * This patch merges cleanly.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-16 Thread mateiz
Github user mateiz commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55820256
  
Ah, sure, I think we can just skip milliseconds in that case.

For the scalastyle checks, why not use spaces around the operators instead? 
They should work in that context. You can just do `this + that` for example.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-16 Thread SparkQA
Github user SparkQA commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55825251
  
  [QA tests have 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/20426/consoleFull)
 for   PR 2403 at commit 
[`7dde949`](https://github.com/apache/spark/commit/7dde949e221159b19da0042b8f4b6c890ee106b6).
 * This patch **fails** unit tests.
 * This patch merges cleanly.
 * This patch adds the following public classes _(experimental)_:
  * `class NonASCIICharacterChecker extends ScalariformChecker `



---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-16 Thread srowen
Github user srowen commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55825501
  
@mateiz Ah of course. I overlooked the obvious somehow. I'm looking at why 
MIMA binary checks fail to see if it has a point or not now.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-16 Thread SparkQA
Github user SparkQA commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55825726
  
  [QA tests have 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/20430/consoleFull)
 for   PR 2403 at commit 
[`bda301c`](https://github.com/apache/spark/commit/bda301ca7b9557f3e2f3a1f1a0595cda9b7d4aba).
 * This patch merges cleanly.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-16 Thread SparkQA
Github user SparkQA commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55831137
  
  [QA tests have 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/20430/consoleFull)
 for   PR 2403 at commit 
[`bda301c`](https://github.com/apache/spark/commit/bda301ca7b9557f3e2f3a1f1a0595cda9b7d4aba).
 * This patch **fails** unit tests.
 * This patch merges cleanly.
 * This patch adds no public classes.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-15 Thread srowen
GitHub user srowen opened a pull request:

https://github.com/apache/spark/pull/2403

SPARK-2745 [STREAMING] Add Java friendly methods to Duration class

@tdas is this what you had in mind for this JIRA? I saw this one and 
thought it would be easy to take care of, and helpful as I use streaming from 
Java.

I could do the same for `Time`? Happy to do so.

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

$ git pull https://github.com/srowen/spark SPARK-2745

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

https://github.com/apache/spark/pull/2403.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 #2403


commit 4dee32e20e80132a2ca9f9614ae76e669187895e
Author: Sean Owen so...@cloudera.com
Date:   2014-09-15T21:23:01Z

Add named methods to Duration in parallel to symbolic methods for 
Java-friendliness. Also add unit tests for Duration, in Scala and Java.




---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-15 Thread SparkQA
Github user SparkQA commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55675667
  
  [QA tests have 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/20357/consoleFull)
 for   PR 2403 at commit 
[`4dee32e`](https://github.com/apache/spark/commit/4dee32e20e80132a2ca9f9614ae76e669187895e).
 * This patch merges cleanly.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-15 Thread SparkQA
Github user SparkQA commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55675754
  
  [QA tests have 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/20357/consoleFull)
 for   PR 2403 at commit 
[`4dee32e`](https://github.com/apache/spark/commit/4dee32e20e80132a2ca9f9614ae76e669187895e).
 * This patch **fails** unit tests.
 * This patch merges cleanly.
 * This patch adds no public classes.


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request: SPARK-2745 [STREAMING] Add Java friendly metho...

2014-09-15 Thread mateiz
Github user mateiz commented on the pull request:

https://github.com/apache/spark/pull/2403#issuecomment-55688595
  
@srowen I think that in addition to these, it would be nice to have static 
constructor methods, such as Duration.seconds(500) and Duration.minutes(10). 
Mind adding those too?


---
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.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org