-
Notifications
You must be signed in to change notification settings - Fork 8
/
CHANGES.txt
15314 lines (12246 loc) · 571 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Spark Change Log
----------------
Release 1.4.1
[SPARK-8548] [SPARKR] Remove the trailing whitespaces from the SparkR files
Yu ISHIKAWA <yuu.ishikawa@gmail.com>
2015-06-22 20:55:38 -0700
Commit: 2501794, github.com/apache/spark/pull/6945
[SPARK-7859] [SQL] Collect_set() behavior differences which fails the unit test under jdk8
Cheng Hao <hao.cheng@intel.com>
2015-06-22 20:04:49 -0700
Commit: d73900a, github.com/apache/spark/pull/6402
[SPARK-8532] [SQL] In Python's DataFrameWriter, save/saveAsTable/json/parquet/jdbc always override mode
Yin Huai <yhuai@databricks.com>
2015-06-22 13:51:23 -0700
Commit: 994abba, github.com/apache/spark/pull/6937
[SPARK-8511] [PYSPARK] Modify a test to remove a saved model in `regression.py`
Yu ISHIKAWA <yuu.ishikawa@gmail.com>
2015-06-22 11:53:11 -0700
Commit: 507381d, github.com/apache/spark/pull/6926
[SPARK-8420] [SQL] Fix comparision of timestamps/dates with strings (branch-1.4)
Michael Armbrust <michaeldatabricks.com>, Michael Armbrust <michael@databricks.com>
2015-06-22 10:45:33 -0700
Commit: 6598161, github.com/apache/spark/pull/6888
[SPARK-8406] [SQL] Backports SPARK-8406 and PR #6864 to branch-1.4
Cheng Lian <lian@databricks.com>
2015-06-22 10:04:29 -0700
Commit: 451c872, github.com/apache/spark/pull/6932
[HOTFIX] Hotfix branch-1.4 building by removing avgMetrics in CrossValidatorSuite
Liang-Chi Hsieh <viirya@gmail.com>
2015-06-21 22:25:08 -0700
Commit: b836bac, github.com/apache/spark/pull/6929
[SPARK-7715] [MLLIB] [ML] [DOC] Updated MLlib programming guide for release 1.4
Joseph K. Bradley <joseph@databricks.com>
2015-06-21 16:25:25 -0700
Commit: 2a7ea31, github.com/apache/spark/pull/6897
[SPARK-8379] [SQL] avoid speculative tasks write to the same file
jeanlyn <jeanlyn92@gmail.com>
2015-06-21 00:13:40 -0700
Commit: f0e4040, github.com/apache/spark/pull/6833
[SPARK-8468] [ML] Take the negative of some metrics in RegressionEvaluator to get correct cross validation
Liang-Chi Hsieh <viirya@gmail.com>
2015-06-20 13:01:59 -0700
Commit: fe59a4a, github.com/apache/spark/pull/6905
[HOTFIX] [SPARK-8489] Correct JIRA number in previous commit
Andrew Or <andrew@databricks.com>
2015-06-19 17:39:26 -0700
Commit: 9b16508
[SPARK-8390] [STREAMING] [KAFKA] fix docs related to HasOffsetRanges
cody koeninger <cody@koeninger.org>
2015-06-19 17:16:56 -0700
Commit: a7b773a, github.com/apache/spark/pull/6863
[SPARK-8389] [STREAMING] [KAFKA] Example of getting offset ranges out o…
cody koeninger <cody@koeninger.org>
2015-06-19 14:51:19 +0200
Commit: 78d0cee, github.com/apache/spark/pull/6846
[SPARK-8498] [SQL] Add regression test for SPARK-8470
Andrew Or <andrew@databricks.com>
2015-06-19 17:34:09 -0700
Commit: 2248ad8, github.com/apache/spark/pull/6909
[HOT-FIX] Fix compilation (caused by 0131142d98b191f6cc112d383aa10582a3ac35bf)
Yin Huai <yhuai@databricks.com>
2015-06-19 17:29:51 -0700
Commit: 2510365, github.com/apache/spark/pull/6913
[SPARK-8093] [SQL] Remove empty structs inferred from JSON documents
Nathan Howell <nhowell@godaddy.com>
2015-06-19 16:19:28 -0700
Commit: 0131142, github.com/apache/spark/pull/6799
[SPARK-8452] [SPARKR] expose jobGroup API in SparkR
Hossein <hossein@databricks.com>
2015-06-19 15:47:22 -0700
Commit: 1a6b510, github.com/apache/spark/pull/6889
[SPARK-8368] [SPARK-8058] [SQL] HiveContext may override the context class loader of the current thread (branch 1.4)
Yin Huai <yhuai@databricks.com>
2015-06-19 11:15:28 -0700
Commit: 9ac8393, github.com/apache/spark/pull/6895
[SPARK-7180] [SPARK-8090] [SPARK-8091] Fix a number of SerializationDebugger bugs and limitations
Tathagata Das <tathagata.das1565@gmail.com>
2015-06-19 10:52:30 -0700
Commit: 4b2c793, github.com/apache/spark/pull/6625
[SPARK-5836] [DOCS] [STREAMING] Clarify what may cause long-running Spark apps to preserve shuffle files
Sean Owen <sowen@cloudera.com>
2015-06-19 11:03:04 -0700
Commit: 3415fb9, github.com/apache/spark/pull/6901
[SPARK-8451] [SPARK-7287] SparkSubmitSuite should check exit code
Andrew Or <andrew@databricks.com>
2015-06-19 10:56:19 -0700
Commit: aedd893, github.com/apache/spark/pull/6886
[SPARK-8430] ExternalShuffleBlockResolver of shuffle service should support UnsafeShuffleManager
Lianhui Wang <lianhuiwang09@gmail.com>
2015-06-19 10:47:07 -0700
Commit: 6f2e411, github.com/apache/spark/pull/6873
[SPARK-8151] [MLLIB] pipeline components should correctly implement copy
Xiangrui Meng <meng@databricks.com>
2015-06-19 09:46:51 -0700
Commit: 1f2dafb, github.com/apache/spark/pull/6622
[SPARK-8339] [PYSPARK] integer division for python 3
Kevin Conor <kevin@discoverybayconsulting.com>
2015-06-19 00:12:20 -0700
Commit: 164b9d3, github.com/apache/spark/pull/6794
[SPARK-8458] [SQL] Don't strip scheme part of output path when writing ORC files
Cheng Lian <lian@databricks.com>
2015-06-18 22:01:52 -0700
Commit: f48f3a2, github.com/apache/spark/pull/6892
[SPARK-8080] [STREAMING] Receiver.store with Iterator does not give correct count at Spark UI
Dibyendu Bhattacharya <dibyendu.bhattacharya1@pearson.com>, U-PEROOT\UBHATD1 <UBHATD1@PIN-L-PI046.PEROOT.com>
2015-06-18 19:58:47 -0700
Commit: b55e4b9, github.com/apache/spark/pull/6707
[SPARK-8462] [DOCS] Documentation fixes for Spark SQL
Lars Francke <lars.francke@gmail.com>
2015-06-18 19:40:32 -0700
Commit: bd9bbd6, github.com/apache/spark/pull/6890
[SPARK-8446] [SQL] Add helper functions for testing SparkPlan physical operators
Josh Rosen <joshrosen@databricks.com>, Josh Rosen <rosenville@gmail.com>, Michael Armbrust <michael@databricks.com>
2015-06-18 16:45:14 -0700
Commit: 152f446, github.com/apache/spark/pull/6885
[SPARK-8376] [DOCS] Add common lang3 to the Spark Flume Sink doc
zsxwing <zsxwing@gmail.com>
2015-06-18 16:00:27 -0700
Commit: 9f293a9, github.com/apache/spark/pull/6829
[SPARK-8353] [DOCS] Show anchor links when hovering over documentation headers
Josh Rosen <joshrosen@databricks.com>
2015-06-18 15:10:09 -0700
Commit: c1da5cf, github.com/apache/spark/pull/6808
[SPARK-8202] [PYSPARK] fix infinite loop during external sort in PySpark
Davies Liu <davies@databricks.com>
2015-06-18 13:45:58 -0700
Commit: ca23c3b, github.com/apache/spark/pull/6714
[SPARK-8095] Resolve dependencies of --packages in local ivy cache
Burak Yavuz <brkyvz@gmail.com>
2015-06-17 22:33:37 -0700
Commit: 9dabc12, github.com/apache/spark/pull/6788
[SPARK-8392] RDDOperationGraph: getting cached nodes is slow
xutingjun <xutingjun@huawei.com>
2015-06-17 22:31:01 -0700
Commit: 67ad12d, github.com/apache/spark/pull/6839
[SPARK-8306] [SQL] AddJar command needs to set the new class loader to the HiveConf inside executionHive.state.
Yin Huai <yhuai@databricks.com>
2015-06-17 14:52:43 -0700
Commit: 73cf5de, github.com/apache/spark/pull/6758
[SPARK-8404] [STREAMING] [TESTS] Use thread-safe collections to make the tests more reliable
zsxwing <zsxwing@gmail.com>
2015-06-17 15:00:03 -0700
Commit: 5aedfa2, github.com/apache/spark/pull/6852
[SPARK-8373] [PYSPARK] Add emptyRDD to pyspark and fix the issue when calling sum on an empty RDD
zsxwing <zsxwing@gmail.com>
2015-06-17 13:59:39 -0700
Commit: 5e7973d, github.com/apache/spark/pull/6826
[SPARK-8372] History server shows incorrect information for application not started
Carson Wang <carson.wang@intel.com>
2015-06-17 13:41:36 -0700
Commit: f051373, github.com/apache/spark/pull/6827
[SPARK-8161] Set externalBlockStoreInitialized to be true, after ExternalBlockStore is initialized
Mingfei <mingfei.shi@intel.com>
2015-06-17 13:40:07 -0700
Commit: d75c53d, github.com/apache/spark/pull/6702
[SPARK-7515] [DOC] Update documentation for PySpark on YARN with cluster mode
Kousuke Saruta <sarutakoss.nttdata.co.jp>, Punya Biswal <pbiswal@palantir.com>, Kousuke Saruta <sarutak@oss.nttdata.co.jp>
2015-06-17 13:37:20 -0700
Commit: a7f6979, github.com/apache/spark/pull/6040
[SPARK-8395] [DOCS] start-slave.sh docs incorrect
Sean Owen <sowen@cloudera.com>
2015-06-17 13:31:10 -0700
Commit: 320c442, github.com/apache/spark/pull/6855
[SPARK-8309] [CORE] Support for more than 12M items in OpenHashMap
Vyacheslav Baranov <slavik.baranov@gmail.com>
2015-06-17 09:42:29 +0100
Commit: a5f602e, github.com/apache/spark/pull/6763
Fix break introduced by backport
Punya Biswal <pbiswal@palantir.com>
2015-06-16 22:31:49 -0700
Commit: 877deb0, github.com/apache/spark/pull/6850
[SPARK-7916] [MLLIB] MLlib Python doc parity check for classification and regression
Yanbo Liang <ybliang8@gmail.com>
2015-06-16 14:30:30 -0700
Commit: 15d973f, github.com/apache/spark/pull/6460
[SPARK-8126] [BUILD] Make sure temp dir exists when running tests.
Marcelo Vanzin <vanzin@cloudera.com>
2015-06-16 21:10:18 +0100
Commit: b9e5d3c, github.com/apache/spark/pull/6805
[SQL] [DOC] improved a comment
Radek Ostrowski <dest.hawaii@gmail.com>, radek <radek@radeks-MacBook-Pro-2.local>
2015-06-16 21:04:26 +0100
Commit: 4da0686, github.com/apache/spark/pull/6332
[SPARK-DOCS] [SPARK-SQL] Update sql-programming-guide.md
Moussa Taifi <moutai10@gmail.com>
2015-06-16 20:59:22 +0100
Commit: 1378bdc, github.com/apache/spark/pull/6847
[SPARK-8367] [STREAMING] Add a limit for 'spark.streaming.blockInterval` since a data loss bug.
huangzhaowei <carlmartinmax@gmail.com>, huangzhaowei <SaintBacchus@users.noreply.github.com>
2015-06-16 08:16:09 +0200
Commit: f287f7e, github.com/apache/spark/pull/6818
SPARK-8336 Fix NullPointerException with functions.rand()
tedyu <yuzhihong@gmail.com>
2015-06-15 17:00:38 -0700
Commit: fff8d7e, github.com/apache/spark/pull/6793
fix read/write mixup
Peter Hoffmann <ph@peter-hoffmann.com>
2015-06-14 11:41:16 -0700
Commit: 0ffbf08, github.com/apache/spark/pull/6815
[SPARK-8358] [SQL] Wait for child resolution when resolving generators
Michael Armbrust <michael@databricks.com>
2015-06-14 11:21:42 -0700
Commit: 2805d14, github.com/apache/spark/pull/6811
[SPARK-8354] [SQL] Fix off-by-factor-of-8 error when allocating scratch space in UnsafeFixedWidthAggregationMap
Josh Rosen <joshrosen@databricks.com>
2015-06-14 09:34:35 -0700
Commit: 4634be5, github.com/apache/spark/pull/6809
[Spark-8343] [Streaming] [Docs] Improve Spark Streaming Guides.
Mike Dusenberry <dusenberrymw@gmail.com>
2015-06-13 21:22:46 -0700
Commit: 187a3d5, github.com/apache/spark/pull/6801
[SPARK-8329][SQL] Allow _ in DataSource options
Michael Armbrust <michael@databricks.com>
2015-06-12 23:11:16 -0700
Commit: 1ca431e, github.com/apache/spark/pull/6786
[SPARK-7284] [STREAMING] Updated streaming documentation
Tathagata Das <tathagata.das1565@gmail.com>
2015-06-12 15:22:59 -0700
Commit: 7c11ccf, github.com/apache/spark/pull/6781
[SPARK-8330] DAG visualization: trim whitespace from input
Andrew Or <andrew@databricks.com>
2015-06-12 11:14:55 -0700
Commit: 7608373, github.com/apache/spark/pull/6787
[SPARK-8322] [EC2] Added spark 1.4.0 into the VALID_SPARK_VERSIONS and…
Mark Smith <mark.smith@bronto.com>
2015-06-12 10:28:30 -0700
Commit: 141eab7, github.com/apache/spark/pull/6777
[SPARK-6511] [docs] Fix example command in hadoop-provided docs.
Marcelo Vanzin <vanzin@cloudera.com>
2015-06-11 15:29:03 -0700
Commit: 8b25f62, github.com/apache/spark/pull/6766
[SPARK-8310] [EC2] Update spark-ec2 branch to 1.4
Shivaram Venkataraman <shivaram@cs.berkeley.edu>
2015-06-11 13:22:08 -0700
Commit: 3a62569, github.com/apache/spark/pull/6765
[SPARK-8289] Specify stack size for consistency with Java tests - resolves test failures
Adam Roberts <aroberts@uk.ibm.com>, a-roberts <aroberts@uk.ibm.com>
2015-06-11 08:40:46 +0100
Commit: b313920, github.com/apache/spark/pull/6727
[SPARK-8285] [SQL] CombineSum should be calculated as unlimited decimal first
navis.ryu <navis@apache.org>
2015-06-10 18:19:12 -0700
Commit: 5c05b5c, github.com/apache/spark/pull/6736
[SPARK-8200] [MLLIB] Check for empty RDDs in StreamingLinearAlgorithm
Paavo <pparkkin@gmail.com>
2015-06-10 23:17:42 +0100
Commit: 59fc3f1, github.com/apache/spark/pull/6713
[SPARK-8273] Driver hangs up when yarn shutdown in client mode
WangTaoTheTonic <wangtao111@huawei.com>
2015-06-10 13:34:19 -0700
Commit: 2846a35, github.com/apache/spark/pull/6717
[SPARK-7756] CORE RDDOperationScope fix for IBM Java
Adam Roberts <aroberts@uk.ibm.com>, a-roberts <aroberts@uk.ibm.com>
2015-06-10 13:21:01 -0700
Commit: 568d1d5, github.com/apache/spark/pull/6740
[SPARK-8282] [SPARKR] Make number of threads used in RBackend configurable
Hossein <hossein@databricks.com>
2015-06-10 13:18:48 -0700
Commit: 28e8a6e, github.com/apache/spark/pull/6730
[SQL] [MINOR] Fixes a minor Java example error in SQL programming guide
Cheng Lian <lian@databricks.com>
2015-06-10 11:48:14 -0700
Commit: 7b88e6a, github.com/apache/spark/pull/6749
[SPARK-6511] [DOCUMENTATION] Explain how to use Hadoop provided builds
Patrick Wendell <patrick@databricks.com>
2015-06-09 16:14:21 -0700
Commit: a0a7f2f, github.com/apache/spark/pull/6729
[MINOR] [UI] DAG visualization: trim whitespace from input
Andrew Or <andrew@databricks.com>
2015-06-09 15:44:02 -0700
Commit: 1175cfe, github.com/apache/spark/pull/6732
[SPARK-8274] [DOCUMENTATION-MLLIB] Fix wrong URLs in MLlib Frequent Pattern Mining Documentation
FavioVazquez <favio.vazquezp@gmail.com>
2015-06-09 15:02:18 +0100
Commit: a7b7a19, github.com/apache/spark/pull/6722
[SPARK-6820] [SPARKR] Convert NAs to null type in SparkR DataFrames
hqzizania <qian.huang@intel.com>
2015-06-08 21:40:12 -0700
Commit: 0a9383d, github.com/apache/spark/pull/6190
[SPARK-8162] [HOTFIX] Fix NPE in spark-shell
Andrew Or <andrew@databricks.com>
2015-06-08 18:09:21 -0700
Commit: e9a8372, github.com/apache/spark/pull/6711
[SPARK-8126] [BUILD] Use custom temp directory during build.
Marcelo Vanzin <vanzin@cloudera.com>
2015-06-08 15:37:28 +0100
Commit: 99c2a57, github.com/apache/spark/pull/6674
[SPARK-8121] [SQL] Fixes InsertIntoHadoopFsRelation job initialization for Hadoop 1.x (branch 1.4 backport based on https://github.com/apache/spark/pull/6669)
Yin Huai <yhuai@databricks.com>
2015-06-08 11:35:30 -0700
Commit: 69197c3
[SPARK-7705] [YARN] Cleanup of .sparkStaging directory fails if application is killed
linweizhong <linweizhong@huawei.com>
2015-06-08 09:34:16 +0100
Commit: a3afc2c, github.com/apache/spark/pull/6409
[SPARK-4761] [DOC] [SQL] kryo default setting in SQL Thrift server
Daoyuan Wang <daoyuan.wang@intel.com>
2015-06-08 01:07:50 -0700
Commit: 58bfdd6, github.com/apache/spark/pull/6639
[SPARK-8004][SQL] Quote identifier in JDBC data source.
Reynold Xin <rxin@databricks.com>
2015-06-07 10:52:02 -0700
Commit: b9c046f, github.com/apache/spark/pull/6689
[SPARK-8146] DataFrame Python API: Alias replace in df.na
Reynold Xin <rxin@databricks.com>
2015-06-07 01:21:02 -0700
Commit: ff26767, github.com/apache/spark/pull/6688
[SPARK-8141] [SQL] Precompute datatypes for partition columns and reuse it
Liang-Chi Hsieh <viirya@gmail.com>
2015-06-07 15:33:48 +0800
Commit: b4d5441, github.com/apache/spark/pull/6687
[SPARK-8145] [WEBUI] Trigger a double click on the span to show full job description.
979969786 <q79969786@gmail.com>
2015-06-06 23:15:27 -0700
Commit: 9d1f4d6, github.com/apache/spark/pull/6646
[SPARK-8004][SQL] Enclose column names by JDBC Dialect
Liang-Chi Hsieh <viirya@gmail.com>
2015-06-06 22:59:31 -0700
Commit: b6fdc6c, github.com/apache/spark/pull/6577
[SPARK-7955] [CORE] Ensure executors with cached RDD blocks are not re…
Hari Shreedharan <hshreedharan@apache.org>
2015-06-06 21:13:26 -0700
Commit: 6faaf15, github.com/apache/spark/pull/6508
[SPARK-8079] [SQL] Makes InsertIntoHadoopFsRelation job/task abortion more robust
Cheng Lian <lian@databricks.com>
2015-06-06 17:23:12 +0800
Commit: d8a53fb, github.com/apache/spark/pull/6612
[SPARK-7991] [PySpark] Adding support for passing lists to describe.
amey <amey@skytree.net>
2015-06-05 13:49:33 -0700
Commit: 84523fc, github.com/apache/spark/pull/6655
[SPARK-7747] [SQL] [DOCS] spark.sql.planner.externalSort
Luca Martinetti <luca@luca.io>
2015-06-05 13:40:11 -0700
Commit: 94f65bc, github.com/apache/spark/pull/6272
[SPARK-8112] [STREAMING] Fix the negative event count issue
zsxwing <zsxwing@gmail.com>
2015-06-05 12:46:02 -0700
Commit: 200c980, github.com/apache/spark/pull/6659
Revert "[MINOR] [BUILD] Use custom temp directory during build."
Andrew Or <andrew@databricks.com>
2015-06-05 10:54:06 -0700
Commit: 429c658
[SPARK-8085] [SPARKR] Support user-specified schema in read.df
Shivaram Venkataraman <shivaram@cs.berkeley.edu>
2015-06-05 10:19:03 -0700
Commit: 3e3151e, github.com/apache/spark/pull/6620
[STREAMING] Update streaming-kafka-integration.md
Akhil Das <akhld@darktech.ca>
2015-06-05 14:23:23 +0200
Commit: 0ef2e9d, github.com/apache/spark/pull/6666
[MINOR] [BUILD] Use custom temp directory during build.
Marcelo Vanzin <vanzin@cloudera.com>
2015-06-05 14:11:38 +0200
Commit: 9b3e4c1, github.com/apache/spark/pull/6653
[MINOR] remove unused interpolation var in log message
Sean Owen <sowen@cloudera.com>
2015-06-05 00:32:46 -0700
Commit: 90cf686, github.com/apache/spark/pull/6650
[SPARK-8116][PYSPARK] Allow sc.range() to take a single argument.
Ted Blackman <ted.blackman@gmail.com>
2015-06-04 22:21:11 -0700
Commit: f02af7c, github.com/apache/spark/pull/6656
[SPARK-8098] [WEBUI] Show correct length of bytes on log page
Carson Wang <carson.wang@intel.com>
2015-06-04 16:24:50 -0700
Commit: 3ba6fc5, github.com/apache/spark/pull/6640
[SPARK-8027] [SPARKR] Move man pages creation to install-dev.sh
Shivaram Venkataraman <shivaram@cs.berkeley.edu>
2015-06-04 12:52:16 -0700
Commit: 0b71b85, github.com/apache/spark/pull/6593
[SPARK-7969] [SQL] Added a DataFrame.drop function that accepts a Column reference.
Mike Dusenberry <dusenberrymw@gmail.com>
2015-06-04 11:30:07 -0700
Commit: 81ff7a9, github.com/apache/spark/pull/6585
Fix maxTaskFailures comment
Daniel Darabos <darabos.daniel@gmail.com>
2015-06-04 13:46:49 +0200
Commit: daf9451, github.com/apache/spark/pull/6621
[BUILD] Fix Maven build for Kinesis
Andrew Or <andrew@databricks.com>
2015-06-03 20:45:31 -0700
Commit: 84da653
[SPARK-7558] Demarcate tests in unit-tests.log (1.4)
Andrew Or <andrew@databricks.com>
2015-06-03 20:46:44 -0700
Commit: bfe74b3, github.com/apache/spark/pull/6598
[BUILD] Use right branch when checking against Hive (1.4)
Andrew Or <andrew@databricks.com>
2015-06-03 18:09:14 -0700
Commit: 584a2ba, github.com/apache/spark/pull/6630
[BUILD] Increase Jenkins test timeout
Andrew Or <andrew@databricks.com>
2015-06-03 17:40:14 -0700
Commit: 96f71b1
[SPARK-8084] [SPARKR] Make SparkR scripts fail on error
Shivaram Venkataraman <shivaram@cs.berkeley.edu>
2015-06-03 17:02:16 -0700
Commit: c2c1290, github.com/apache/spark/pull/6623
[SPARK-8088] don't attempt to lower number of executors by 0
Ryan Williams <ryan.blake.williams@gmail.com>
2015-06-03 16:54:46 -0700
Commit: 1674869, github.com/apache/spark/pull/6624
[HOTFIX] [TYPO] Fix typo in #6546
Andrew Or <andrew@databricks.com>
2015-06-03 16:04:02 -0700
Commit: 0bc9a3e
[HOTFIX] Unbreak build from backporting #6546
Andrew Or <andrew@databricks.com>
2015-06-03 15:25:35 -0700
Commit: d0be950
[SPARK-8051] [MLLIB] make StringIndexerModel silent if input column does not exist
Xiangrui Meng <meng@databricks.com>
2015-06-03 15:16:24 -0700
Commit: b2a22a6, github.com/apache/spark/pull/6595
[SPARK-3674] [EC2] Clear SPARK_WORKER_INSTANCES when using YARN
Shivaram Venkataraman <shivaram@cs.berkeley.edu>
2015-06-03 15:14:38 -0700
Commit: ca21fff, github.com/apache/spark/pull/6424
[SPARK-7989] [CORE] [TESTS] Fix flaky tests in ExternalShuffleServiceSuite and SparkListenerWithClusterSuite
zsxwing <zsxwing@gmail.com>
2015-06-03 15:04:20 -0700
Commit: 7e46ea0, github.com/apache/spark/pull/6546
[SPARK-8001] [CORE] Make AsynchronousListenerBus.waitUntilEmpty throw TimeoutException if timeout
zsxwing <zsxwing@gmail.com>
2015-06-03 15:03:07 -0700
Commit: 306837e, github.com/apache/spark/pull/6550
[SPARK-8083] [MESOS] Use the correct base path in mesos driver page.
Timothy Chen <tnachen@gmail.com>
2015-06-03 14:57:23 -0700
Commit: 59399a8, github.com/apache/spark/pull/6615
[MINOR] [UI] Improve confusing message on log page
Andrew Or <andrew@databricks.com>
2015-06-03 12:10:12 -0700
Commit: 31e0ae9
[SPARK-8054] [MLLIB] Added several Java-friendly APIs + unit tests
Joseph K. Bradley <joseph@databricks.com>
2015-06-03 14:34:20 -0700
Commit: bfab61f, github.com/apache/spark/pull/6562
[SPARK-8074] Parquet should throw AnalysisException during setup for data type/name related failures.
Reynold Xin <rxin@databricks.com>
2015-06-03 13:57:57 -0700
Commit: 1f90a06, github.com/apache/spark/pull/6608
[SPARK-8063] [SPARKR] Spark master URL conflict between MASTER env variable and --master command line option.
Sun Rui <rui.sun@intel.com>
2015-06-03 11:56:35 -0700
Commit: f67a27d, github.com/apache/spark/pull/6605
[SPARK-7980] [SQL] Support SQLContext.range(end)
animesh <animesh@apache.spark>
2015-06-03 11:28:18 -0700
Commit: 0a1dad6, github.com/apache/spark/pull/6609
[SPARK-7973] [SQL] Increase the timeout of two CliSuite tests.
Yin Huai <yhuai@databricks.com>
2015-06-03 09:26:21 -0700
Commit: 54a4ea4, github.com/apache/spark/pull/6525
[SPARK-8060] Improve DataFrame Python test coverage and documentation.
Reynold Xin <rxin@databricks.com>
2015-06-03 00:23:34 -0700
Commit: ee7f365, github.com/apache/spark/pull/6601
[SPARK-8032] [PYSPARK] Make version checking for NumPy in MLlib more robust
MechCoder <manojkumarsivaraj334@gmail.com>
2015-06-02 23:24:47 -0700
Commit: bd57af3, github.com/apache/spark/pull/6579
[SPARK-8043] [MLLIB] [DOC] update NaiveBayes and SVM examples in doc
Yuhao Yang <hhbyyh@gmail.com>
2015-06-02 23:15:38 -0700
Commit: 33edb2b, github.com/apache/spark/pull/6584
[SPARK-8053] [MLLIB] renamed scalingVector to scalingVec
Joseph K. Bradley <joseph@databricks.com>
2015-06-02 22:56:56 -0700
Commit: 88399c3, github.com/apache/spark/pull/6596
[SPARK-7547] [ML] Scala Example code for ElasticNet
DB Tsai <dbt@netflix.com>
2015-06-02 19:12:08 -0700
Commit: 6391be8, github.com/apache/spark/pull/6576
[SPARK-7387] [ML] [DOC] CrossValidator example code in Python
Ram Sriharsha <rsriharsha@hw11853.local>
2015-06-02 18:53:04 -0700
Commit: 6a3e32a, github.com/apache/spark/pull/6358
Preparing development version 1.4.0-SNAPSHOT
Patrick Wendell <pwendell@gmail.com>
2015-06-02 18:06:41 -0700
Commit: ab713af
Release 1.4.0
[HOTFIX] Revert "[SPARK-7092] Update spark scala version to 2.11.6"
Patrick Wendell <patrick@databricks.com>
2015-05-19 02:28:41 -0700
Commit: 31f5d53
Revert "Preparing Spark release v1.4.0-rc1"
Patrick Wendell <patrick@databricks.com>
2015-05-19 02:27:14 -0700
Commit: 586ede6
Revert "Preparing development version 1.4.1-SNAPSHOT"
Patrick Wendell <patrick@databricks.com>
2015-05-19 02:27:07 -0700
Commit: e7309ec
Fixing a few basic typos in the Programming Guide.
Mike Dusenberry <dusenberrymw@gmail.com>
2015-05-19 08:59:45 +0100
Commit: 0748263, github.com/apache/spark/pull/6240
Preparing development version 1.4.1-SNAPSHOT
Patrick Wendell <patrick@databricks.com>
2015-05-19 07:13:24 +0000
Commit: a1d896b
Preparing Spark release v1.4.0-rc1
Patrick Wendell <patrick@databricks.com>
2015-05-19 07:13:24 +0000
Commit: 79fb01a
Updating CHANGES.txt for Spark 1.4
Patrick Wendell <patrick@databricks.com>
2015-05-19 00:12:20 -0700
Commit: 30bf333
Revert "Preparing Spark release v1.4.0-rc1"
Patrick Wendell <patrick@databricks.com>
2015-05-19 00:10:39 -0700
Commit: b0c63d2
Revert "Preparing development version 1.4.1-SNAPSHOT"
Patrick Wendell <patrick@databricks.com>
2015-05-19 00:10:37 -0700
Commit: 198a186
[SPARK-7581] [ML] [DOC] User guide for spark.ml PolynomialExpansion
Xusen Yin <yinxusen@gmail.com>
2015-05-19 00:06:33 -0700
Commit: 38a3fc8, github.com/apache/spark/pull/6113
[HOTFIX] Fixing style failures in Kinesis source
Patrick Wendell <patrick@databricks.com>
2015-05-19 00:02:06 -0700
Commit: de60c2e
Preparing development version 1.4.1-SNAPSHOT
Patrick Wendell <patrick@databricks.com>
2015-05-19 06:06:41 +0000
Commit: 40190ce
Preparing Spark release v1.4.0-rc1
Patrick Wendell <patrick@databricks.com>
2015-05-19 06:06:40 +0000
Commit: 38ccef3
Revert "Preparing Spark release v1.4.0-rc1"
Patrick Wendell <patrick@databricks.com>
2015-05-18 23:06:15 -0700
Commit: 152b029
Revert "Preparing development version 1.4.1-SNAPSHOT"
Patrick Wendell <patrick@databricks.com>
2015-05-18 23:06:13 -0700
Commit: 4d098bc
[HOTFIX]: Java 6 Build Breaks
Patrick Wendell <patrick@databricks.com>
2015-05-19 06:00:13 +0000
Commit: be1fc93
Preparing development version 1.4.1-SNAPSHOT
Patrick Wendell <patrick@databricks.com>
2015-05-19 05:01:11 +0000
Commit: 758ca74
Preparing Spark release v1.4.0-rc1
Patrick Wendell <patrick@databricks.com>
2015-05-19 05:01:11 +0000
Commit: e8e97e3
[SPARK-7687] [SQL] DataFrame.describe() should cast all aggregates to String
Josh Rosen <joshrosen@databricks.com>
2015-05-18 21:53:44 -0700
Commit: 99436bd, github.com/apache/spark/pull/6218
CHANGES.txt and changelist updaets for Spark 1.4.
Patrick Wendell <patrick@databricks.com>
2015-05-18 21:44:13 -0700
Commit: 914ecd0
[SPARK-7150] SparkContext.range() and SQLContext.range()
Daoyuan Wang <daoyuan.wang@intel.com>, Davies Liu <davies@databricks.com>
2015-05-18 21:43:12 -0700
Commit: 7fcbb2c, github.com/apache/spark/pull/6081
Version updates for Spark 1.4.0
Patrick Wendell <patrick@databricks.com>
2015-05-18 21:38:37 -0700
Commit: 9d0b7fb
[SPARK-7681] [MLLIB] Add SparseVector support for gemv
Liang-Chi Hsieh <viirya@gmail.com>
2015-05-18 21:32:36 -0700
Commit: dd9f873, github.com/apache/spark/pull/6209
[SPARK-7692] Updated Kinesis examples
Tathagata Das <tathagata.das1565@gmail.com>
2015-05-18 18:24:15 -0700
Commit: 9c48548, github.com/apache/spark/pull/6249
[SPARK-7621] [STREAMING] Report Kafka errors to StreamingListeners
jerluc <jeremyalucas@gmail.com>
2015-05-18 18:13:29 -0700
Commit: 9188ad8, github.com/apache/spark/pull/6204
[SPARK-7624] Revert #4147
Davies Liu <davies@databricks.com>
2015-05-18 16:55:45 -0700
Commit: 60cb33d, github.com/apache/spark/pull/6172
[SQL] Fix serializability of ORC table scan
Michael Armbrust <michael@databricks.com>
2015-05-18 15:24:31 -0700
Commit: f8f23c4, github.com/apache/spark/pull/6247
[SPARK-7501] [STREAMING] DAG visualization: show DStream operations
Andrew Or <andrew@databricks.com>
2015-05-18 14:33:33 -0700
Commit: a475cbc, github.com/apache/spark/pull/6034
[HOTFIX] Fix ORC build break
Michael Armbrust <michael@databricks.com>
2015-05-18 14:04:04 -0700
Commit: ba502ab, github.com/apache/spark/pull/6244
[SPARK-7658] [STREAMING] [WEBUI] Update the mouse behaviors for the timeline graphs
zsxwing <zsxwing@gmail.com>
2015-05-18 13:34:43 -0700
Commit: 39add3d, github.com/apache/spark/pull/6168
[SPARK-6216] [PYSPARK] check python version of worker with driver
Davies Liu <davies@databricks.com>
2015-05-18 12:55:13 -0700
Commit: a833209, github.com/apache/spark/pull/6203
[SPARK-7673] [SQL] WIP: HadoopFsRelation and ParquetRelation2 performance optimizations
Cheng Lian <lian@databricks.com>
2015-05-18 12:45:37 -0700
Commit: 3962348, github.com/apache/spark/pull/6225
[SPARK-7567] [SQL] [follow-up] Use a new flag to set output committer based on mapreduce apis
Yin Huai <yhuai@databricks.com>
2015-05-18 12:17:10 -0700
Commit: a385f4b, github.com/apache/spark/pull/6130
[SPARK-7269] [SQL] Incorrect analysis for aggregation(use semanticEquals)
Wenchen Fan <cloud0fan@outlook.com>
2015-05-18 12:08:28 -0700
Commit: d6f5f37, github.com/apache/spark/pull/6173
[SPARK-7631] [SQL] treenode argString should not print children
scwf <wangfei1@huawei.com>
2015-05-18 12:05:14 -0700
Commit: dbd4ec8, github.com/apache/spark/pull/6144
[SPARK-2883] [SQL] ORC data source for Spark SQL
Zhan Zhang <zhazhan@gmail.com>, Cheng Lian <lian@databricks.com>
2015-05-18 12:03:27 -0700
Commit: 65d71bd, github.com/apache/spark/pull/6194
[SPARK-7380] [MLLIB] pipeline stages should be copyable in Python
Xiangrui Meng <meng@databricks.com>, Joseph K. Bradley <joseph@databricks.com>
2015-05-18 12:02:18 -0700
Commit: cf4e04a, github.com/apache/spark/pull/6088
[SQL] [MINOR] [THIS] use private for internal field in ScalaUdf
Wenchen Fan <cloud0fan@outlook.com>
2015-05-18 12:01:30 -0700
Commit: 7d44c01, github.com/apache/spark/pull/6235
[SPARK-7570] [SQL] Ignores _temporary during partition discovery
Cheng Lian <lian@databricks.com>
2015-05-18 11:59:44 -0700
Commit: c7623a2, github.com/apache/spark/pull/6091
[SPARK-6888] [SQL] Make the jdbc driver handling user-definable
Rene Treffer <treffer@measite.de>
2015-05-18 11:55:36 -0700
Commit: b41301a, github.com/apache/spark/pull/5555
[SPARK-7627] [SPARK-7472] DAG visualization: style skipped stages
Andrew Or <andrew@databricks.com>
2015-05-18 10:59:35 -0700
Commit: a0ae8ce, github.com/apache/spark/pull/6171
[SPARK-7272] [MLLIB] User guide for PMML model export
Vincenzo Selvaggio <vselvaggio@hotmail.it>
2015-05-18 08:46:33 -0700
Commit: a95d4e1, github.com/apache/spark/pull/6219
[SPARK-6657] [PYSPARK] Fix doc warnings
Xiangrui Meng <meng@databricks.com>
2015-05-18 08:35:14 -0700
Commit: 2c94ffe, github.com/apache/spark/pull/6221
[SPARK-7299][SQL] Set precision and scale for Decimal according to JDBC metadata instead of returned BigDecimal
Liang-Chi Hsieh <viirya@gmail.com>
2015-05-18 01:10:55 -0700
Commit: 0e7cd8f, github.com/apache/spark/pull/5833
[SPARK-7694] [MLLIB] Use getOrElse for getting the threshold of LR model
Shuo Xiang <shuoxiangpub@gmail.com>
2015-05-17 21:16:52 -0700
Commit: 0b6bc8a, github.com/apache/spark/pull/6224
[SPARK-7693][Core] Remove "import scala.concurrent.ExecutionContext.Implicits.global"
zsxwing <zsxwing@gmail.com>
2015-05-17 20:37:19 -0700
Commit: 2a42d2d, github.com/apache/spark/pull/6223
[SQL] [MINOR] use catalyst type converter in ScalaUdf
Wenchen Fan <cloud0fan@outlook.com>
2015-05-17 16:51:57 -0700
Commit: be66d19, github.com/apache/spark/pull/6182
[SPARK-6514] [SPARK-5960] [SPARK-6656] [SPARK-7679] [STREAMING] [KINESIS] Updates to the Kinesis API
Tathagata Das <tathagata.das1565@gmail.com>
2015-05-17 16:49:07 -0700
Commit: e0632ff, github.com/apache/spark/pull/6147
[SPARK-7491] [SQL] Allow configuration of classloader isolation for hive
Michael Armbrust <michael@databricks.com>
2015-05-17 12:43:15 -0700
Commit: a855608, github.com/apache/spark/pull/6167
[SPARK-7686] [SQL] DescribeCommand is assigned wrong output attributes in SparkStrategies
Josh Rosen <joshrosen@databricks.com>
2015-05-17 11:59:28 -0700
Commit: 53d6ab5, github.com/apache/spark/pull/6217
[SPARK-7660] Wrap SnappyOutputStream to work around snappy-java bug
Josh Rosen <joshrosen@databricks.com>
2015-05-17 09:30:49 -0700
Commit: 6df71eb, github.com/apache/spark/pull/6176
[SPARK-7669] Builds against Hadoop 2.6+ get inconsistent curator depend…
Steve Loughran <stevel@hortonworks.com>
2015-05-17 17:03:11 +0100
Commit: 0feb3de, github.com/apache/spark/pull/6191
[SPARK-7447] [SQL] Don't re-merge Parquet schema when the relation is deserialized
Liang-Chi Hsieh <viirya@gmail.com>
2015-05-17 15:42:21 +0800
Commit: 898be62, github.com/apache/spark/pull/6012
[MINOR] Add 1.3, 1.3.1 to master branch EC2 scripts
Shivaram Venkataraman <shivaram@cs.berkeley.edu>
2015-05-17 00:12:20 -0700
Commit: 0ed376a, github.com/apache/spark/pull/6215
[MINOR] [SQL] Removes an unreachable case clause
Cheng Lian <lian@databricks.com>
2015-05-16 23:20:09 -0700
Commit: 671a6bc, github.com/apache/spark/pull/6214
[SPARK-7654][SQL] Move JDBC into DataFrame's reader/writer interface.
Reynold Xin <rxin@databricks.com>
2015-05-16 22:01:53 -0700
Commit: 17e0786, github.com/apache/spark/pull/6210
[SPARK-7655][Core] Deserializing value should not hold the TaskSchedulerImpl lock
zsxwing <zsxwing@gmail.com>
2015-05-16 21:03:22 -0700
Commit: 8494910, github.com/apache/spark/pull/6195
[SPARK-7654][MLlib] Migrate MLlib to the DataFrame reader/writer API.
Reynold Xin <rxin@databricks.com>
2015-05-16 15:03:57 -0700
Commit: bd057f8, github.com/apache/spark/pull/6211
[BUILD] update jblas dependency version to 1.2.4
Matthew Brandyberry <mbrandy@us.ibm.com>
2015-05-16 18:17:48 +0100
Commit: 8bde352, github.com/apache/spark/pull/6199
[HOTFIX] [SQL] Fixes DataFrameWriter.mode(String)
Cheng Lian <lian@databricks.com>
2015-05-16 20:55:10 +0800
Commit: 856619d, github.com/apache/spark/pull/6212
[SPARK-7655][Core][SQL] Remove 'scala.concurrent.ExecutionContext.Implicits.global' in 'ask' and 'BroadcastHashJoin'
zsxwing <zsxwing@gmail.com>
2015-05-16 00:44:29 -0700
Commit: ad5b0b1, github.com/apache/spark/pull/6200
[SPARK-7672] [CORE] Use int conversion in translating kryoserializer.buffer.mb to kryoserializer.buffer
Nishkam Ravi <nravi@cloudera.com>, nishkamravi2 <nishkamravi@gmail.com>, nravi <nravi@c1704.halxg.cloudera.com>
2015-05-16 08:24:21 +0100
Commit: e7607e5, github.com/apache/spark/pull/6198
[SPARK-4556] [BUILD] binary distribution assembly can't run in local mode
Sean Owen <sowen@cloudera.com>
2015-05-16 08:18:41 +0100
Commit: 1fc3560, github.com/apache/spark/pull/6186
[SPARK-7671] Fix wrong URLs in MLlib Data Types Documentation
FavioVazquez <favio.vazquezp@gmail.com>
2015-05-16 08:07:03 +0100
Commit: 7e3f9fe, github.com/apache/spark/pull/6196
[SPARK-7654][SQL] DataFrameReader and DataFrameWriter for input/output API
Reynold Xin <rxin@databricks.com>
2015-05-15 22:00:31 -0700
Commit: 9da55b5, github.com/apache/spark/pull/6175
[SPARK-7473] [MLLIB] Add reservoir sample in RandomForest
AiHe <ai.he@ussuning.com>
2015-05-15 20:42:35 -0700
Commit: f41be8f, github.com/apache/spark/pull/5988
[SPARK-7543] [SQL] [PySpark] split dataframe.py into multiple files
Davies Liu <davies@databricks.com>
2015-05-15 20:09:15 -0700
Commit: 8164fbc, github.com/apache/spark/pull/6201
[SPARK-7073] [SQL] [PySpark] Clean up SQL data type hierarchy in Python
Davies Liu <davies@databricks.com>
2015-05-15 20:05:26 -0700
Commit: 61806f6, github.com/apache/spark/pull/6206
[SPARK-7575] [ML] [DOC] Example code for OneVsRest
Ram Sriharsha <rsriharsha@hw11853.local>
2015-05-15 19:33:20 -0700
Commit: 04323ba, github.com/apache/spark/pull/6115
[SPARK-7563] OutputCommitCoordinator.stop() should only run on the driver
Josh Rosen <joshrosen@databricks.com>
2015-05-15 18:06:01 -0700
Commit: ed75cc0, github.com/apache/spark/pull/6197
[SPARK-7676] Bug fix and cleanup of stage timeline view
Kay Ousterhout <kayousterhout@gmail.com>
2015-05-15 17:45:14 -0700
Commit: 6f78d03, github.com/apache/spark/pull/6202
[SPARK-7556] [ML] [DOC] Add user guide for spark.ml Binarizer, including Scala, Java and Python examples
Liang-Chi Hsieh <viirya@gmail.com>
2015-05-15 15:05:04 -0700
Commit: e847d86, github.com/apache/spark/pull/6116
[SPARK-7677] [STREAMING] Add Kafka modules to the 2.11 build.
Iulian Dragos <jaguarul@gmail.com>
2015-05-15 14:57:29 -0700
Commit: 31e6404, github.com/apache/spark/pull/6149
[SPARK-7226] [SPARKR] Support math functions in R DataFrame
qhuang <qian.huang@intel.com>
2015-05-15 14:06:16 -0700
Commit: 9ef6d74, github.com/apache/spark/pull/6170
[SPARK-7296] Add timeline visualization for stages in the UI.
Kousuke Saruta <sarutak@oss.nttdata.co.jp>
2015-05-15 13:54:09 -0700
Commit: a5f7b3b, github.com/apache/spark/pull/5843
[SPARK-7504] [YARN] NullPointerException when initializing SparkContext in YARN-cluster mode
ehnalis <zoltan.zvara@gmail.com>
2015-05-15 12:14:02 -0700
Commit: 7dc0ff3, github.com/apache/spark/pull/6083
[SPARK-7664] [WEBUI] DAG visualization: Fix incorrect link paths of DAG.
Kousuke Saruta <sarutak@oss.nttdata.co.jp>
2015-05-15 11:54:13 -0700
Commit: e319719, github.com/apache/spark/pull/6184
[SPARK-5412] [DEPLOY] Cannot bind Master to a specific hostname as per the documentation
Sean Owen <sowen@cloudera.com>
2015-05-15 11:30:19 -0700
Commit: fe3c734, github.com/apache/spark/pull/6185
[CORE] Protect additional test vars from early GC
Tim Ellison <t.p.ellison@gmail.com>