[GitHub] spark pull request: [SPARK-13922][SQL] Filter rows with null attri...

2016-03-15 Thread sameeragarwal
Github user sameeragarwal commented on the pull request: https://github.com/apache/spark/pull/11749#issuecomment-197093496 cc @nongli --- 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

[GitHub] spark pull request: [SPARK-13873] [SQL] Avoid copy of UnsafeRow wh...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11740#issuecomment-197093532 Merged build finished. Test FAILed. --- 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

[GitHub] spark pull request: [SPARK-13922][SQL] Filter rows with null attri...

2016-03-15 Thread sameeragarwal
GitHub user sameeragarwal opened a pull request: https://github.com/apache/spark/pull/11749 [SPARK-13922][SQL] Filter rows with null attributes in parquet vectorized reader ## What changes were proposed in this pull request? It's common for many SQL operators to not care

[GitHub] spark pull request: [SPARK-13873] [SQL] Avoid copy of UnsafeRow wh...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11740#issuecomment-197093533 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-13873] [SQL] Avoid copy of UnsafeRow wh...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11740#issuecomment-197093453 **[Test build #53243 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53243/consoleFull)** for PR 11740 at commit

[GitHub] spark pull request: [SPARK-13866][SQL] Handle decimal type in CSV ...

2016-03-15 Thread HyukjinKwon
Github user HyukjinKwon commented on a diff in the pull request: https://github.com/apache/spark/pull/11724#discussion_r56268274 --- Diff: sql/core/src/test/resources/decimal.csv --- @@ -0,0 +1,4 @@ +decimal +21602730330601001035858 --- End diff --

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197092355 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197092354 Build finished. Test PASSed. --- 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

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197092168 **[Test build #53238 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53238/consoleFull)** for PR 10839 at commit

[GitHub] spark pull request: [SPARK-13921] Store serialized blocks as multi...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11748#issuecomment-197090249 **[Test build #53251 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53251/consoleFull)** for PR 11748 at commit

[GitHub] spark pull request: [WIP][SPARK-13809][SQL] State store for stream...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11645#issuecomment-197090248 **[Test build #53252 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53252/consoleFull)** for PR 11645 at commit

[GitHub] spark pull request: Store serialized blocks as multiple chunks in ...

2016-03-15 Thread JoshRosen
GitHub user JoshRosen opened a pull request: https://github.com/apache/spark/pull/11748 Store serialized blocks as multiple chunks in MemoryStore This patch modifies the BlockManager, MemoryStore, and several other storage components so that cached, serialized blocks are stored as

[GitHub] spark pull request: [SPARK-13866][SQL] Handle decimal type in CSV ...

2016-03-15 Thread HyukjinKwon
Github user HyukjinKwon commented on the pull request: https://github.com/apache/spark/pull/11724#issuecomment-197089379 Just to make sure that checking precision work fine, the codes below work correctly. ```scala import java.math.BigDecimal import

[GitHub] spark pull request: [SPARK-2208] Fix for local metrics tests can f...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11747#issuecomment-197087408 Can one of the admins verify this patch? --- 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

[GitHub] spark pull request: [SPARK-13281][CORE] Switch broadcast of RDD to...

2016-03-15 Thread rxin
Github user rxin commented on a diff in the pull request: https://github.com/apache/spark/pull/11735#discussion_r56266617 --- Diff: core/src/test/scala/org/apache/spark/SparkContextSuite.scala --- @@ -319,4 +319,11 @@ class SparkContextSuite extends SparkFunSuite with

[GitHub] spark pull request: [SPARK-13281][CORE] Switch broadcast of RDD to...

2016-03-15 Thread rxin
Github user rxin commented on a diff in the pull request: https://github.com/apache/spark/pull/11735#discussion_r56266649 --- Diff: core/src/test/scala/org/apache/spark/SparkContextSuite.scala --- @@ -319,4 +319,11 @@ class SparkContextSuite extends SparkFunSuite with

[GitHub] spark pull request: [SPARK-13866][SQL] Handle decimal type in CSV ...

2016-03-15 Thread HyukjinKwon
Github user HyukjinKwon commented on a diff in the pull request: https://github.com/apache/spark/pull/11724#discussion_r56266566 --- Diff: sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/csv/CSVInferSchema.scala --- @@ -86,6 +86,7 @@ private[csv] object

[GitHub] spark pull request: [SPARK-13866][SQL] Handle decimal type in CSV ...

2016-03-15 Thread HyukjinKwon
Github user HyukjinKwon commented on a diff in the pull request: https://github.com/apache/spark/pull/11724#discussion_r56266282 --- Diff: sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/csv/CSVInferSchema.scala --- @@ -108,14 +109,38 @@ private[csv] object

[GitHub] spark pull request: SPARK-9926: Parallelize partition logic in Uni...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11242#issuecomment-197086304 Merged build finished. Test PASSed. --- 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

[GitHub] spark pull request: SPARK-9926: Parallelize partition logic in Uni...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11242#issuecomment-197086307 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [WIP][SPARK-13809][SQL] State store for stream...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11645#issuecomment-197086170 **[Test build #53250 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53250/consoleFull)** for PR 11645 at commit

[GitHub] spark pull request: [SPARK-2208] Fix for local metrics tests can f...

2016-03-15 Thread joan38
GitHub user joan38 opened a pull request: https://github.com/apache/spark/pull/11747 [SPARK-2208] Fix for local metrics tests can fail on fast machines ## What changes were proposed in this pull request? A fix for local metrics tests that can fail on fast machines This

[GitHub] spark pull request: SPARK-9926: Parallelize partition logic in Uni...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11242#issuecomment-197086147 **[Test build #53234 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53234/consoleFull)** for PR 11242 at commit

[GitHub] spark pull request: [SPARK-13866][SQL] Handle decimal type in CSV ...

2016-03-15 Thread falaki
Github user falaki commented on a diff in the pull request: https://github.com/apache/spark/pull/11724#discussion_r56265404 --- Diff: sql/core/src/test/resources/decimal.csv --- @@ -0,0 +1,4 @@ +decimal +21602730330601001035858 --- End diff -- Would be

[GitHub] spark pull request: [SPARK-13866][SQL] Handle decimal type in CSV ...

2016-03-15 Thread falaki
Github user falaki commented on a diff in the pull request: https://github.com/apache/spark/pull/11724#discussion_r56265300 --- Diff: sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/csv/CSVInferSchema.scala --- @@ -108,14 +109,38 @@ private[csv] object

[GitHub] spark pull request: [SPARK-13866][SQL] Handle decimal type in CSV ...

2016-03-15 Thread falaki
Github user falaki commented on a diff in the pull request: https://github.com/apache/spark/pull/11724#discussion_r56265250 --- Diff: sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/csv/CSVInferSchema.scala --- @@ -86,6 +86,7 @@ private[csv] object

[GitHub] spark pull request: [SPARK-13776][WebUI]Limit the max number of ac...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11615#issuecomment-197084544 **[Test build #53249 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53249/consoleFull)** for PR 11615 at commit

[GitHub] spark pull request: [SPARK-13449] Naive Bayes wrapper in SparkR

2016-03-15 Thread yinxusen
Github user yinxusen commented on a diff in the pull request: https://github.com/apache/spark/pull/11486#discussion_r56265257 --- Diff: R/pkg/R/generics.R --- @@ -1168,3 +1168,7 @@ setGeneric("kmeans") #' @rdname fitted #' @export setGeneric("fitted") + +#'

[GitHub] spark pull request: [SPARK-13602][CORE] Add shutdown hook to Drive...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11746#issuecomment-197082797 **[Test build #53247 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53247/consoleFull)** for PR 11746 at commit

[GitHub] spark pull request: [SPARK-13919] [SQL] [WIP] Resolving the Confli...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11745#issuecomment-197082803 **[Test build #53248 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53248/consoleFull)** for PR 11745 at commit

[GitHub] spark pull request: [SPARK-13776][WebUI]Limit the max number of ac...

2016-03-15 Thread zsxwing
Github user zsxwing commented on the pull request: https://github.com/apache/spark/pull/11615#issuecomment-197082842 retest this please --- 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

[GitHub] spark pull request: [SPARK-13602][CORE] Add shutdown hook to Drive...

2016-03-15 Thread BryanCutler
GitHub user BryanCutler opened a pull request: https://github.com/apache/spark/pull/11746 [SPARK-13602][CORE] Add shutdown hook to DriverRunner to prevent driver process leak ## What changes were proposed in this pull request? Added shutdown hook to DriverRunner to kill

[GitHub] spark pull request: [SPARK-13919] [SQL] [WIP] Resolving the Confli...

2016-03-15 Thread gatorsmile
GitHub user gatorsmile opened a pull request: https://github.com/apache/spark/pull/11745 [SPARK-13919] [SQL] [WIP] Resolving the Conflicts of ColumnPruning and PushPredicateThroughProject What changes were proposed in this pull request? Now, `ColumnPruning` and

[GitHub] spark pull request: [SPARK-13281][CORE] Switch broadcast of RDD to...

2016-03-15 Thread breakdawn
Github user breakdawn commented on the pull request: https://github.com/apache/spark/pull/11735#issuecomment-197075648 Thanks all for the review. UT added and code formatted. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as

[GitHub] spark pull request: [SPARK-12653] Re-enable test "SPARK-8489: Miss...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11744#issuecomment-197074408 **[Test build #53246 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53246/consoleFull)** for PR 11744 at commit

[GitHub] spark pull request: [SPARK-13885][YARN] Fix attempt id regression ...

2016-03-15 Thread vanzin
Github user vanzin commented on the pull request: https://github.com/apache/spark/pull/11721#issuecomment-197074328 LGTM aside from small comment. @steveloughran should take a look since IIRC he wanted the full attempt id for something. --- If your project is set up for it,

[GitHub] spark pull request: [SPARK-12653] Re-enable test "SPARK-8489: Miss...

2016-03-15 Thread dongjoon-hyun
GitHub user dongjoon-hyun opened a pull request: https://github.com/apache/spark/pull/11744 [SPARK-12653] Re-enable test "SPARK-8489: MissingRequirementError during reflection" ## What changes were proposed in this pull request? The purpose of

[GitHub] spark pull request: [SPARK-13885][YARN] Fix attempt id regression ...

2016-03-15 Thread vanzin
Github user vanzin commented on a diff in the pull request: https://github.com/apache/spark/pull/11721#discussion_r56263000 --- Diff: core/src/main/scala/org/apache/spark/SparkContext.scala --- @@ -374,12 +374,6 @@ class SparkContext(config: SparkConf) extends Logging with

[GitHub] spark pull request: [SPARK-13918] [SQL] Merge SortMergeJoin and So...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11743#issuecomment-197073607 **[Test build #53245 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53245/consoleFull)** for PR 11743 at commit

[GitHub] spark pull request: [SPARK-13776][WebUI]Limit the max number of ac...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11615#issuecomment-197072970 Merged build finished. Test FAILed. --- 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

[GitHub] spark pull request: [SPARK-13776][WebUI]Limit the max number of ac...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11615#issuecomment-197072971 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-13776][WebUI]Limit the max number of ac...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11615#issuecomment-197072847 **[Test build #53232 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53232/consoleFull)** for PR 11615 at commit

[GitHub] spark pull request: [SPARK-13873] [SQL] Avoid copy of UnsafeRow wh...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11740#issuecomment-197071974 **[Test build #53243 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53243/consoleFull)** for PR 11740 at commit

[GitHub] spark pull request: [SPARK-529] [sql] Modify SQLConf to use new co...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11570#issuecomment-197071983 **[Test build #53244 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53244/consoleFull)** for PR 11570 at commit

[GitHub] spark pull request: [SPARK-13918] [SQL] Merge SortMergeJoin and So...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11743#issuecomment-197071955 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-13918] [SQL] Merge SortMergeJoin and So...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11743#issuecomment-197071954 Merged build finished. Test FAILed. --- 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

[GitHub] spark pull request: [SPARK-13918] [SQL] Merge SortMergeJoin and So...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11743#issuecomment-197071817 **[Test build #53236 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53236/consoleFull)** for PR 11743 at commit

[GitHub] spark pull request: [WIP][SPARK-13883][SQL] Parquet Implementation...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11709#issuecomment-197069801 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [WIP][SPARK-13883][SQL] Parquet Implementation...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11709#issuecomment-197069799 Merged build finished. Test FAILed. --- 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

[GitHub] spark pull request: [SPARK-13281][CORE] Switch broadcast of RDD to...

2016-03-15 Thread rxin
Github user rxin commented on the pull request: https://github.com/apache/spark/pull/11735#issuecomment-197069679 Can we add a unit test for 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

[GitHub] spark pull request: [WIP][SPARK-13883][SQL] Parquet Implementation...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11709#issuecomment-197069692 **[Test build #53237 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53237/consoleFull)** for PR 11709 at commit

[GitHub] spark pull request: [WIP][SPARK-13809][SQL] State store for stream...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11645#issuecomment-197068486 Merged build finished. Test FAILed. --- 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

[GitHub] spark pull request: [WIP][SPARK-13809][SQL] State store for stream...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11645#issuecomment-197068487 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [WIP][SPARK-13809][SQL] State store for stream...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11645#issuecomment-197068481 **[Test build #53241 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53241/consoleFull)** for PR 11645 at commit

[GitHub] spark pull request: [SPARK-13917] [SQL] generate broadcast semi jo...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11742#issuecomment-197068316 Merged build finished. Test PASSed. --- 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

[GitHub] spark pull request: [SPARK-13396] Stop using our internal deprecat...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11544#issuecomment-197068266 **[Test build #53242 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53242/consoleFull)** for PR 11544 at commit

[GitHub] spark pull request: [WIP][SPARK-13809][SQL] State store for stream...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11645#issuecomment-197068265 **[Test build #53241 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53241/consoleFull)** for PR 11645 at commit

[GitHub] spark pull request: [SPARK-13917] [SQL] generate broadcast semi jo...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11742#issuecomment-197068318 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-13917] [SQL] generate broadcast semi jo...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11742#issuecomment-197068054 **[Test build #53226 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53226/consoleFull)** for PR 11742 at commit

[GitHub] spark pull request: [SPARK-13793] [CORE] PipedRDD doesn't propagat...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11628#issuecomment-197067680 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-13793] [CORE] PipedRDD doesn't propagat...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11628#issuecomment-197067677 Merged build finished. Test PASSed. --- 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

[GitHub] spark pull request: [SPARK-13793] [CORE] PipedRDD doesn't propagat...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11628#issuecomment-197067482 **[Test build #53224 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53224/consoleFull)** for PR 11628 at commit

[GitHub] spark pull request: [SPARK-13449] Naive Bayes wrapper in SparkR

2016-03-15 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/11486#discussion_r56258707 --- Diff: R/pkg/R/generics.R --- @@ -1168,3 +1168,7 @@ setGeneric("kmeans") #' @rdname fitted #' @export setGeneric("fitted") + +#'

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197063693 **[Test build #53240 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53240/consoleFull)** for PR 10839 at commit

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread Fokko
Github user Fokko commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197063381 ok to test --- 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

[GitHub] spark pull request: [SPARK-13917] [SQL] generate broadcast semi jo...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11742#issuecomment-197063207 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-13917] [SQL] generate broadcast semi jo...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11742#issuecomment-197063206 Merged build finished. Test PASSed. --- 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

[GitHub] spark pull request: [SPARK-13917] [SQL] generate broadcast semi jo...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11742#issuecomment-197062901 **[Test build #53223 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53223/consoleFull)** for PR 11742 at commit

[GitHub] spark pull request: [SPARK-13761] [ML] Deprecate validateParams

2016-03-15 Thread jkbradley
Github user jkbradley commented on a diff in the pull request: https://github.com/apache/spark/pull/11620#discussion_r56256687 --- Diff: mllib/src/main/scala/org/apache/spark/ml/regression/GeneralizedLinearRegression.scala --- @@ -45,7 +46,8 @@ private[regression] trait

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197059527 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197059514 **[Test build #53239 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53239/consoleFull)** for PR 10839 at commit

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197059524 Build finished. Test FAILed. --- 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

[GitHub] spark pull request: [WIP][SPARK-13883][SQL] Parquet Implementation...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11709#issuecomment-197058846 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [WIP][SPARK-13883][SQL] Parquet Implementation...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11709#issuecomment-197058845 Merged build finished. Test FAILed. --- 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

[GitHub] spark pull request: [WIP][SPARK-13883][SQL] Parquet Implementation...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11709#issuecomment-197058750 **[Test build #53229 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53229/consoleFull)** for PR 11709 at commit

[GitHub] spark pull request: [SPARK-10788][MLLIB][ML] Remove duplicate bins...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9474#issuecomment-197057637 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-10788][MLLIB][ML] Remove duplicate bins...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9474#issuecomment-197057632 Merged build finished. Test PASSed. --- 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

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197057478 **[Test build #53239 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53239/consoleFull)** for PR 10839 at commit

[GitHub] spark pull request: [SPARK-10788][MLLIB][ML] Remove duplicate bins...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9474#issuecomment-197057494 **[Test build #53230 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53230/consoleFull)** for PR 9474 at commit

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread Fokko
Github user Fokko commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197057413 I've improved the PR based on the feedback. Beside that I've also updated the benchmark: https://github.com/Fokko/BlockMatrixToIndexedRowMatrix If there are

[GitHub] spark pull request: [SPARK-12869] Implemented an improved version ...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/10839#issuecomment-197056403 **[Test build #53238 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53238/consoleFull)** for PR 10839 at commit

[GitHub] spark pull request: [WIP][SPARK-13883][SQL] Parquet Implementation...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11709#issuecomment-197054035 **[Test build #53237 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53237/consoleFull)** for PR 11709 at commit

[GitHub] spark pull request: [SPARK-13918] [SQL] Merge SortMergeJoin and So...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11743#issuecomment-197054032 **[Test build #53236 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53236/consoleFull)** for PR 11743 at commit

[GitHub] spark pull request: [SPARK-13916][SQL] Add a metric to WholeStageC...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11741#issuecomment-197053544 Merged build finished. Test FAILed. --- 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

[GitHub] spark pull request: [SPARK-13916][SQL] Add a metric to WholeStageC...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11741#issuecomment-197053548 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-13916][SQL] Add a metric to WholeStageC...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11741#issuecomment-197053207 **[Test build #53222 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53222/consoleFull)** for PR 11741 at commit

[GitHub] spark pull request: [SPARK-10788][MLLIB][ML] Remove duplicate bins...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9474#issuecomment-197052959 **[Test build #53235 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53235/consoleFull)** for PR 9474 at commit

[GitHub] spark pull request: [SPARK-10788][MLLIB][ML] Remove duplicate bins...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9474#issuecomment-197052963 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-10788][MLLIB][ML] Remove duplicate bins...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9474#issuecomment-197052962 Merged build finished. Test FAILed. --- 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

[GitHub] spark pull request: SPARK-9926: Parallelize partition logic in Uni...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11242#issuecomment-197052654 **[Test build #53234 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53234/consoleFull)** for PR 11242 at commit

[GitHub] spark pull request: [SPARK-13918] [SQL] Merge SortMergeJoin and So...

2016-03-15 Thread davies
Github user davies commented on the pull request: https://github.com/apache/spark/pull/11743#issuecomment-197052748 cc @rxin --- 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

[GitHub] spark pull request: [SPARK-10788][MLLIB][ML] Remove duplicate bins...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9474#issuecomment-197052648 **[Test build #53235 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53235/consoleFull)** for PR 9474 at commit

[GitHub] spark pull request: [SPARK-13918] [SQL] Merge SortMergeJoin and So...

2016-03-15 Thread davies
GitHub user davies opened a pull request: https://github.com/apache/spark/pull/11743 [SPARK-13918] [SQL] Merge SortMergeJoin and SortMergerOuterJoin ## What changes were proposed in this pull request? This PR just move some code from SortMergeOuterJoin into SortMergeJoin.

[GitHub] spark pull request: [SPARK-13038] [PySpark] Add load/save to pipel...

2016-03-15 Thread yinxusen
Github user yinxusen commented on the pull request: https://github.com/apache/spark/pull/11683#issuecomment-197052474 @jkbradley Ready for another look --- 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

[GitHub] spark pull request: SPARK-9926: Parallelize partition logic in Uni...

2016-03-15 Thread dbtsai
Github user dbtsai commented on the pull request: https://github.com/apache/spark/pull/11242#issuecomment-197052153 Jenkins, test this please. --- 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

[GitHub] spark pull request: [SPARK-529] [sql] Modify SQLConf to use new co...

2016-03-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/11570#issuecomment-197051604 **[Test build #53233 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/53233/consoleFull)** for PR 11570 at commit

[GitHub] spark pull request: [SPARK-529] [sql] Modify SQLConf to use new co...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11570#issuecomment-197051610 Merged build finished. Test FAILed. --- 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

[GitHub] spark pull request: [SPARK-529] [sql] Modify SQLConf to use new co...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11570#issuecomment-197051615 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] spark pull request: [SPARK-13038] [PySpark] Add load/save to pipel...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11683#issuecomment-197051287 Merged build finished. Test PASSed. --- 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

[GitHub] spark pull request: [SPARK-13038] [PySpark] Add load/save to pipel...

2016-03-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/11683#issuecomment-197051289 Test PASSed. Refer to this link for build results (access rights to CI server needed):

<    1   2   3   4   5   6   7   8   9   >