forked from tophua/spark1.52
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.txt
executable file
·25514 lines (20404 loc) · 953 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.5.2
[SPARK-11188] [SQL] Elide stacktraces in bin/spark-sql for AnalysisExceptions
Dilip Biswal <[email protected]>
2015-11-03 12:14:01 +0100
Commit: 5604ce9, github.com/apache/spark/pull/9374
[SPARK-11424] Guard against double-close() of RecordReaders
Josh Rosen <[email protected]>
2015-10-31 10:47:22 -0700
Commit: b85bf8f, github.com/apache/spark/pull/9382
[SPARK-11434][SPARK-11103][SQL] Fix test ": Filter applied on merged Parquet schema with new column fails"
Yin Huai <[email protected]>
2015-10-30 20:05:07 -0700
Commit: c9ac0e9, github.com/apache/spark/pull/9387
[SPARK-10829] [SPARK-11301] [SQL] fix 2 bugs for filter on partitioned columns (1.5 backport)
Wenchen Fan <[email protected]>
2015-10-30 12:14:53 -0700
Commit: 6b10ea5, github.com/apache/spark/pull/9371
[SPARK-11103][SQL] Filter applied on Merged Parquet shema with new column fail
hyukjinkwon <[email protected]>
2015-10-30 18:17:35 +0800
Commit: 06d3257, github.com/apache/spark/pull/9327
[SPARK-11417] [SQL] no @Override in codegen
Davies Liu <[email protected]>
2015-10-30 00:36:20 -0700
Commit: 0df2c78, github.com/apache/spark/pull/9372
[SPARK-11032] [SQL] correctly handle having
Wenchen Fan <[email protected]>
2015-10-13 17:11:22 -0700
Commit: bb3b362, github.com/apache/spark/pull/9105
[SPARK-11246] [SQL] Table cache for Parquet broken in 1.5
xin Wu <[email protected]>
2015-10-29 07:42:46 -0700
Commit: 76d7423, github.com/apache/spark/pull/9326
Typo in mllib-evaluation-metrics.md
Mageswaran.D <[email protected]>
2015-10-28 08:46:30 -0700
Commit: 9e3197a, github.com/apache/spark/pull/9333
[SPARK-11303][SQL] filter should not be pushed down into sample
Yanbo Liang <[email protected]>
2015-10-27 11:28:59 +0100
Commit: 3bd596d, github.com/apache/spark/pull/9294
[SPARK-11302][MLLIB] 2) Multivariate Gaussian Model with Covariance matrix returns incorrect answer in some cases
Sean Owen <[email protected]>
2015-10-27 23:07:37 -0700
Commit: 86ee81e, github.com/apache/spark/pull/9309
[SPARK-11270][STREAMING] Add improved equality testing for TopicAndPartition from the Kafka Streaming API
Nick Evans <[email protected]>
2015-10-27 01:29:06 -0700
Commit: abb0ca7, github.com/apache/spark/pull/9236
[SQL][DOC] Minor document fixes in interfaces.scala
Alexander Slesarenko <[email protected]>
2015-10-26 23:49:14 +0100
Commit: 8a6e63c, github.com/apache/spark/pull/9284
[SPARK-5966][WIP] Spark-submit deploy-mode cluster is not compatible with master local>
Kevin Yu <[email protected]>
2015-10-26 09:34:15 +0000
Commit: a355d0d, github.com/apache/spark/pull/9220
[SPARK-11287] Fixed class name to properly start TestExecutor from deploy.client.TestClient
Bryan Cutler <[email protected]>
2015-10-25 19:05:45 +0000
Commit: 74921c2, github.com/apache/spark/pull/9255
[SPARK-11299][DOC] Fix link to Scala DataFrame Functions reference
Josh Rosen <[email protected]>
2015-10-25 10:31:44 +0100
Commit: 36fddb0, github.com/apache/spark/pull/9269
Fix typos
Jacek Laskowski <[email protected]>
2015-10-25 01:33:22 +0100
Commit: 5200a6e, github.com/apache/spark/pull/9250
[SPARK-11264] bin/spark-class can't find assembly jars with certain GREP_OPTIONS set
Jeffrey Naisbitt <[email protected]>
2015-10-24 18:21:36 +0100
Commit: 1cd2d9c, github.com/apache/spark/pull/9231
[SPARK-11294][SPARKR] Improve R doc for read.df, write.df, saveAsTable
felixcheung <[email protected]>
2015-10-23 21:42:00 -0700
Commit: 56f0bb6, github.com/apache/spark/pull/9261
[SPARK-10971][SPARKR] RRunner should allow setting path to Rscript.
Sun Rui <[email protected]>
2015-10-23 21:38:04 -0700
Commit: 9695f45, github.com/apache/spark/pull/9179
Fix typo "Received" to "Receiver" in streaming-kafka-integration.md
Rohan Bhanderi <[email protected]>
2015-10-23 01:10:46 -0700
Commit: 03d3ad4, github.com/apache/spark/pull/9242
Preparing development version 1.5.3-SNAPSHOT
Patrick Wendell <[email protected]>
2015-10-22 16:02:11 -0700
Commit: be3e343
Preparing Spark release v1.5.2-rc1
Patrick Wendell <[email protected]>
2015-10-22 16:02:05 -0700
Commit: ad6ade1
[SPARK-11251] Fix page size calculation in local mode
Andrew Or <[email protected]>
2015-10-22 15:58:08 -0700
Commit: a76cf51, github.com/apache/spark/pull/9209
[SPARK-10812] [YARN] Fix shutdown of token renewer.
Marcelo Vanzin <[email protected]>
2015-10-07 11:38:07 -0700
Commit: e405c2a, github.com/apache/spark/pull/8996
[SPARK-10812] [YARN] Spark hadoop util support switching to yarn
Holden Karau <[email protected]>
2015-09-28 06:33:45 -0700
Commit: c49e0c3, github.com/apache/spark/pull/8911
[SPARK-11244][SPARKR] sparkR.stop() should remove SQLContext
Forest Fang <[email protected]>
2015-10-22 09:34:07 -0700
Commit: f9ad0e5, github.com/apache/spark/pull/9205
[SPARK-11233][SQL] register cosh in function registry
Shagun Sodhani <[email protected]>
2015-10-21 14:18:06 -0700
Commit: fe5c3ae, github.com/apache/spark/pull/9199
[SPARK-10534] [SQL] ORDER BY clause allows only columns that are present in the select projection list
Dilip Biswal <[email protected]>
2015-10-21 11:10:32 -0700
Commit: 59747d0, github.com/apache/spark/pull/9123
[SPARK-11153][SQL] Disables Parquet filter push-down for string and binary columns
Cheng Lian <[email protected]>
2015-10-21 09:02:20 +0800
Commit: 0887e5e, github.com/apache/spark/pull/9152
[HOT-FIX] Remove unnessary changed introduced by the backport of SPARK-10577 (https://github.com/apache/spark/commit/30eea40fff97391b8ee3201dd7c6ea7440521386).
Yin Huai <[email protected]>
2015-10-19 18:01:21 -0700
Commit: a3ab671
[SPARK-11051][CORE] Do not allow local checkpointing after the RDD is materialized and checkpointed
Liang-Chi Hsieh <[email protected]>
2015-10-19 16:16:31 -0700
Commit: 2195fec, github.com/apache/spark/pull/9072
[SPARK-11063] [STREAMING] Change preferredLocations of Receiver's RDD to hosts rather than hostports
zsxwing <[email protected]>
2015-10-19 15:35:14 -0700
Commit: 5186ec8, github.com/apache/spark/pull/9075
[SPARK-11126][SQL] Fix the potential flaky test
zsxwing <[email protected]>
2015-10-19 00:06:51 -0700
Commit: 6480740, github.com/apache/spark/pull/9163
[SPARK-11126][SQL] Fix a memory leak in SQLListener._stageIdToStageMetrics
zsxwing <[email protected]>
2015-10-18 13:51:45 -0700
Commit: 803339c, github.com/apache/spark/pull/9132
[SPARK-11104] [STREAMING] Fix a deadlock in StreamingContex.stop
zsxwing <[email protected]>
2015-10-16 13:56:51 -0700
Commit: fa7c3ea, github.com/apache/spark/pull/9116
[SPARK-10581] [DOCS] Groups are not resolved in scaladoc in sql classes
Pravin Gadakh <[email protected]>
2015-10-16 13:38:50 -0700
Commit: 9814de0, github.com/apache/spark/pull/9148
[SPARK-11094] Strip extra strings from Java version in test runner
Jakob Odersky <[email protected]>
2015-10-16 14:26:34 +0100
Commit: 9903e05, github.com/apache/spark/pull/9111
[SPARK-11135] [SQL] Exchange incorrectly skips sorts when existing ordering is non-empty subset of required ordering
Josh Rosen <[email protected]>
2015-10-15 17:36:55 -0700
Commit: 7aaf485, github.com/apache/spark/pull/9140
[SPARK-10515] When killing executor, the pending replacement executors should not be lost
KaiXinXiaoLei <[email protected]>, huleilei <[email protected]>
2015-10-15 14:48:01 -0700
Commit: 13920d5, github.com/apache/spark/pull/8945
[SPARK-11039][Documentation][Web UI] Document additional ui configurations
Nick Pritchard <[email protected]>
2015-10-15 12:45:37 -0700
Commit: 166fdf4, github.com/apache/spark/pull/9052
[SPARK-11047] Internal accumulators miss the internal flag when replaying events in the history server
Carson Wang <[email protected]>
2015-10-15 10:36:54 -0700
Commit: 025e16b, github.com/apache/spark/pull/9061
[SPARK-11066] Update DAGScheduler's "misbehaved ResultHandler"
shellberg <[email protected]>
2015-10-15 18:07:10 +0100
Commit: 63ca9f9, github.com/apache/spark/pull/9076
[SPARK-8386] [SQL] add write.mode for insertIntoJDBC when the parm overwrite is false
Huaxin Gao <[email protected]>
2015-10-14 12:31:29 -0700
Commit: c27e190, github.com/apache/spark/pull/9042
[SPARK-10577] [PYSPARK] DataFrame hint for broadcast join
Jian Feng <[email protected]>
2015-09-21 23:36:41 -0700
Commit: 30eea40, github.com/apache/spark/pull/8801
[SPARK-10845] [SQL] Makes spark.sql.hive.version a SQLConfEntry
Cheng Lian <[email protected]>
2015-09-26 19:08:55 -0700
Commit: f366249, github.com/apache/spark/pull/8925
[SPARK-10619] Can't sort columns on Executor Page
Tom Graves <[email protected]>
2015-10-14 10:12:25 -0700
Commit: ad5bf0e, github.com/apache/spark/pull/9101
[SPARK-10981] [SPARKR] SparkR Join improvements
Monica Liu <[email protected]>
2015-10-13 22:24:52 -0700
Commit: 3e9d56e, github.com/apache/spark/pull/9029
[SPARK-10389] [SQL] [1.5] support order by non-attribute grouping expression on Aggregate
Wenchen Fan <[email protected]>
2015-10-13 16:16:08 -0700
Commit: 94e6d8f, github.com/apache/spark/pull/9102
[SPARK-10959] [PYSPARK] StreamingLogisticRegressionWithSGD does not t…
Bryan Cutler <[email protected]>
2015-10-13 15:59:36 -0700
Commit: 15d2736, github.com/apache/spark/pull/9087
[SPARK-10932] [PROJECT INFRA] Port two minor changes to release-build.sh from scripts' old repo
Josh Rosen <[email protected]>
2015-10-13 15:18:20 -0700
Commit: 77eeaad, github.com/apache/spark/pull/8986
[SPARK-11009] [SQL] fix wrong result of Window function in cluster mode
Davies Liu <[email protected]>, Yin Huai <[email protected]>
2015-10-13 09:40:36 -0700
Commit: edc5095, github.com/apache/spark/pull/9050
[SPARK-11026] [YARN] spark.yarn.user.classpath.first does work for 'spark-submit --jars hdfs://user/foo.jar'
Lianhui Wang <[email protected]>
2015-10-13 08:29:47 -0500
Commit: 47bc6c0, github.com/apache/spark/pull/9045
Revert "[SPARK-10959] [PYSPARK] StreamingLogisticRegressionWithSGD does not train with given regParam and convergenceTol parameters"
Joseph K. Bradley <[email protected]>
2015-10-12 14:53:13 -0700
Commit: 2217f4f
[SPARK-11056] Improve documentation of SBT build.
Kay Ousterhout <[email protected]>
2015-10-12 14:23:29 -0700
Commit: ebbff39, github.com/apache/spark/pull/9068
[SPARK-10973] [ML] [PYTHON] Fix IndexError exception on SparseVector when asked for index after the last non-zero entry
zero323 <[email protected]>
2015-10-12 12:09:06 -0700
Commit: be68a4b, github.com/apache/spark/pull/9064
[SPARK-11023] [YARN] Avoid creating URIs from local paths directly.
Marcelo Vanzin <[email protected]>
2015-10-12 10:21:57 -0700
Commit: cd55fbc, github.com/apache/spark/pull/9049
[SPARK-10960] [SQL] SQL with windowing function should be able to refer column in inner select
Liang-Chi Hsieh <[email protected]>
2015-10-12 09:16:14 -0700
Commit: 6dc23e6, github.com/apache/spark/pull/9011
[SPARK-10858] YARN: archives/jar/files rename with # doesn't work unl
Tom Graves <[email protected]>
2015-10-09 14:06:25 -0700
Commit: 156ac27, github.com/apache/spark/pull/9035
[SPARK-10959] [PYSPARK] StreamingLogisticRegressionWithSGD does not train with given regParam and convergenceTol parameters
Bryan Cutler <[email protected]>
2015-10-08 22:21:07 -0700
Commit: f95129c, github.com/apache/spark/pull/9002
[SPARK-10955] [STREAMING] Add a warning if dynamic allocation for Streaming applications
Hari Shreedharan <[email protected]>
2015-10-08 18:53:38 -0700
Commit: 3df7500, github.com/apache/spark/pull/8998
[SPARK-10914] UnsafeRow serialization breaks when two machines have different Oops size.
Reynold Xin <[email protected]>
2015-10-08 17:25:14 -0700
Commit: ba601b1, github.com/apache/spark/pull/9030
[SPARK-10980] [SQL] fix bug in create Decimal
Davies Liu <[email protected]>
2015-10-07 15:51:09 -0700
Commit: 57978ae, github.com/apache/spark/pull/9014
[SPARK-10952] Only add hive to classpath if HIVE_HOME is set.
Kevin Cox <[email protected]>
2015-10-07 09:53:17 -0700
Commit: b6a0933, github.com/apache/spark/pull/8994
[SPARK-10885] [STREAMING] Display the failed output op in Streaming UI
zsxwing <[email protected]>
2015-10-06 16:51:03 -0700
Commit: 84f510c, github.com/apache/spark/pull/8950
[SPARK-10901] [YARN] spark.yarn.user.classpath.first doesn't work
Thomas Graves <[email protected]>, Tom Graves <[email protected]>
2015-10-06 10:18:50 -0700
Commit: 6847be6, github.com/apache/spark/pull/8959
[SPARK-10934] [SQL] handle hashCode of unsafe array correctly
Wenchen Fan <[email protected]>
2015-10-05 17:30:54 -0700
Commit: c8392cd, github.com/apache/spark/pull/8987
[SPARK-10889] [STREAMING] Bump KCL to add MillisBehindLatest metric
Avrohom Katz <[email protected]>
2015-10-04 09:36:07 +0100
Commit: d323e5e, github.com/apache/spark/pull/8957
[SPARK-10904] [SPARKR] Fix to support `select(df, c("col1", "col2"))`
felixcheung <[email protected]>
2015-10-03 22:42:36 -0700
Commit: 8836ac3, github.com/apache/spark/pull/8961
[SPARK-10058] [CORE] [TESTS] Fix the flaky tests in HeartbeatReceiverSuite
zsxwing <[email protected]>
2015-10-01 07:09:31 -0700
Commit: cbc6aec, github.com/apache/spark/pull/8946
[SPARK-10871] include number of executor failures in error msg
Ryan Williams <[email protected]>
2015-09-29 13:19:46 -0700
Commit: 3b23873, github.com/apache/spark/pull/8939
[SPARK-10825] [CORE] [TESTS] Fix race conditions in StandaloneDynamicAllocationSuite
zsxwing <[email protected]>
2015-09-29 11:53:28 -0700
Commit: d544932, github.com/apache/spark/pull/8914
[SPARK-10833] [BUILD] Inline, organize BSD/MIT licenses in LICENSE
Sean Owen <[email protected]>
2015-09-28 22:56:43 -0400
Commit: 9b3014b, github.com/apache/spark/pull/8919
[SPARK-10859] [SQL] fix stats of StringType in columnar cache
Davies Liu <[email protected]>
2015-09-28 14:40:40 -0700
Commit: a367840, github.com/apache/spark/pull/8929
[SPARK-10790] [YARN] Fix initial executor number not set issue and consolidate the codes
jerryshao <[email protected]>
2015-09-28 06:38:54 -0700
Commit: de25931, github.com/apache/spark/pull/8910
[SPARK-10741] [SQL] Hive Query Having/OrderBy against Parquet table is not working
Wenchen Fan <[email protected]>
2015-09-27 09:08:38 -0700
Commit: e0c3212, github.com/apache/spark/pull/8889
Preparing development version 1.5.2-SNAPSHOT
Patrick Wendell <[email protected]>
2015-09-23 22:49:40 -0700
Commit: 3fb011a
Preparing Spark release v1.5.1-rc1
Patrick Wendell <[email protected]>
2015-09-23 22:49:35 -0700
Commit: 4df9793
Preparing development version 1.5.2-SNAPSHOT
Patrick Wendell <[email protected]>
2015-09-23 21:32:16 -0700
Commit: 179f36e
Release 1.5.1
[SPARK-10692] [STREAMING] Expose failureReasons in BatchInfo for streaming UI to clear failed batches
zsxwing <[email protected]>, Tathagata Das <[email protected]>
2015-09-23 19:52:02 -0700
Commit: 4c48593, github.com/apache/spark/pull/8892
Update branch-1.5 for 1.5.1 release.
Reynold Xin <[email protected]>
2015-09-23 19:46:13 -0700
Commit: 1000b5d, github.com/apache/spark/pull/8890
[SPARK-10474] [SQL] Aggregation fails to allocate memory for pointer array (round 2)
Andrew Or <[email protected]>
2015-09-23 19:34:31 -0700
Commit: 1f47e68, github.com/apache/spark/pull/8888
[SPARK-10731] [SQL] Delegate to Scala's DataFrame.take implementation in Python DataFrame.
Reynold Xin <[email protected]>
2015-09-23 16:43:21 -0700
Commit: 7564c24, github.com/apache/spark/pull/8876
[SPARK-10403] Allow UnsafeRowSerializer to work with tungsten-sort ShuffleManager
Josh Rosen <[email protected]>
2015-09-23 11:31:01 -0700
Commit: 64cc62c, github.com/apache/spark/pull/8873
[SPARK-9710] [TEST] Fix RPackageUtilsSuite when R is not available.
Marcelo Vanzin <[email protected]>
2015-08-10 10:10:40 -0700
Commit: 6c6cadb, github.com/apache/spark/pull/8008
[SPARK-10769] [STREAMING] [TESTS] Fix o.a.s.streaming.CheckpointSuite.maintains rate controller
zsxwing <[email protected]>
2015-09-23 01:29:30 -0700
Commit: 4174b94, github.com/apache/spark/pull/8877
[SPARK-10224] [STREAMING] Fix the issue that blockIntervalTimer won't call updateCurrentBuffer when stopping
zsxwing <[email protected]>
2015-09-23 01:28:02 -0700
Commit: 6a616d0, github.com/apache/spark/pull/8417
[SPARK-10652] [SPARK-10742] [STREAMING] Set meaningful job descriptions for all streaming jobs
Tathagata Das <[email protected]>
2015-09-22 22:44:09 -0700
Commit: 8a23ef5, github.com/apache/spark/pull/8791
[SPARK-10663] Removed unnecessary invocation of DataFrame.toDF method.
Matt Hagen <[email protected]>
2015-09-22 21:14:25 -0700
Commit: 7f07cc6, github.com/apache/spark/pull/8875
[SPARK-10310] [SQL] Fixes script transformation field/line delimiters
Cheng Lian <[email protected]>
2015-09-22 19:41:57 -0700
Commit: 73d0621, github.com/apache/spark/pull/8860
[SPARK-10640] History server fails to parse TaskCommitDenied
Andrew Or <[email protected]>
2015-09-22 16:35:43 -0700
Commit: 26187ab, github.com/apache/spark/pull/8828
Revert "[SPARK-10640] History server fails to parse TaskCommitDenied"
Andrew Or <[email protected]>
2015-09-22 17:10:58 -0700
Commit: 118ebd4
[SPARK-10640] History server fails to parse TaskCommitDenied
Andrew Or <[email protected]>
2015-09-22 16:35:43 -0700
Commit: 5ffd084, github.com/apache/spark/pull/8828
[SPARK-10714] [SPARK-8632] [SPARK-10685] [SQL] Refactor Python UDF handling
Reynold Xin <[email protected]>
2015-09-22 14:11:46 -0700
Commit: 3339916, github.com/apache/spark/pull/8835
[SPARK-10737] [SQL] When using UnsafeRows, SortMergeJoin may return wrong results
Yin Huai <[email protected]>
2015-09-22 13:31:35 -0700
Commit: 6b1e5c2, github.com/apache/spark/pull/8854
[SPARK-10672] [SQL] Do not fail when we cannot save the metadata of a data source table in a hive compatible way
Yin Huai <[email protected]>
2015-09-22 13:29:39 -0700
Commit: d83dcc9, github.com/apache/spark/pull/8824
[SPARK-10740] [SQL] handle nondeterministic expressions correctly for set operations
Wenchen Fan <[email protected]>
2015-09-22 12:14:15 -0700
Commit: 54334d3, github.com/apache/spark/pull/8858
[SPARK-10593] [SQL] fix resolve output of Generate
Davies Liu <[email protected]>
2015-09-22 11:07:01 -0700
Commit: c3112a9, github.com/apache/spark/pull/8755
[SPARK-10695] [DOCUMENTATION] [MESOS] Fixing incorrect value informati…
Akash Mishra <[email protected]>
2015-09-22 00:14:27 -0700
Commit: 646155e, github.com/apache/spark/pull/8816
[SQL] [MINOR] map -> foreach.
Reynold Xin <[email protected]>
2015-09-22 00:09:29 -0700
Commit: a2b0fee, github.com/apache/spark/pull/8862
[SPARK-8567] [SQL] Increase the timeout of o.a.s.sql.hive.HiveSparkSubmitSuite to 5 minutes.
Yin Huai <[email protected]>
2015-09-22 00:07:30 -0700
Commit: 03215e3, github.com/apache/spark/pull/8850
[SPARK-10649] [STREAMING] Prevent inheriting job group and irrelevant job description in streaming jobs
Tathagata Das <[email protected]>
2015-09-22 00:06:18 -0700
Commit: d0e6e53, github.com/apache/spark/pull/8856
[SPARK-10716] [BUILD] spark-1.5.0-bin-hadoop2.6.tgz file doesn't uncompress on OS X due to hidden file
Sean Owen <[email protected]>
2015-09-21 23:29:59 -0700
Commit: f83b6e6, github.com/apache/spark/pull/8846
[SPARK-10711] [SPARKR] Do not assume spark.submit.deployMode is always set
Hossein <[email protected]>
2015-09-21 21:09:59 -0700
Commit: bb8e481, github.com/apache/spark/pull/8832
[SPARK-10495] [SQL] [BRANCH-1.5] Fix build.
Yin Huai <[email protected]>
2015-09-21 21:05:51 -0700
Commit: 86f9a35, github.com/apache/spark/pull/8861
[DOC] [PYSPARK] [MLLIB] Added newlines to docstrings to fix parameter formatting (1.5 backport)
noelsmith <[email protected]>
2015-09-21 18:27:57 -0700
Commit: ed74d30, github.com/apache/spark/pull/8855
[SPARK-10495] [SQL] Read date values in JSON data stored by Spark 1.5.0.
Yin Huai <[email protected]>
2015-09-21 18:06:45 -0700
Commit: 7ab4d17, github.com/apache/spark/pull/8806
[SPARK-10676] [DOCS] Add documentation for SASL encryption options.
Marcelo Vanzin <[email protected]>
2015-09-21 13:15:44 -0700
Commit: 6152099, github.com/apache/spark/pull/8803
[SPARK-10155] [SQL] Change SqlParser to object to avoid memory leak
zsxwing <[email protected]>
2015-09-19 18:22:43 -0700
Commit: 2591419, github.com/apache/spark/pull/8357
Fixed links to the API
Alexis Seigneurin <[email protected]>
2015-09-19 12:01:22 +0100
Commit: 9b74fec, github.com/apache/spark/pull/8838
[SPARK-10584] [SQL] [DOC] Documentation about the compatible Hive version is wrong.
Kousuke Saruta <[email protected]>
2015-09-19 01:59:36 -0700
Commit: aaae67d, github.com/apache/spark/pull/8776
[SPARK-10474] [SQL] Aggregation fails to allocate memory for pointer array
Andrew Or <[email protected]>
2015-09-18 23:58:25 -0700
Commit: 49355d0, github.com/apache/spark/pull/8827
[SPARK-10623] [SQL] Fixes ORC predicate push-down
Cheng Lian <[email protected]>
2015-09-18 18:42:20 -0700
Commit: b3f1e65, github.com/apache/spark/pull/8799
[SPARK-10611] Clone Configuration for each task for NewHadoopRDD
Mingyu Kim <[email protected]>
2015-09-18 15:40:58 -0700
Commit: a6c3153, github.com/apache/spark/pull/8763
[SPARK-10449] [SQL] Don't merge decimal types with incompatable precision or scales
Holden Karau <[email protected]>
2015-09-18 13:47:14 -0700
Commit: 4051fff, github.com/apache/spark/pull/8634
[SPARK-10539] [SQL] Project should not be pushed down through Intersect or Except #8742
Yijie Shen <[email protected]>, Yin Huai <[email protected]>
2015-09-18 13:20:13 -0700
Commit: 3df52cc, github.com/apache/spark/pull/8823
[SPARK-10540] Fixes flaky all-data-type test
Cheng Lian <[email protected]>
2015-09-18 12:19:08 -0700
Commit: e1e781f, github.com/apache/spark/pull/8768
[SPARK-10684] [SQL] StructType.interpretedOrdering need not to be serialized
navis.ryu <[email protected]>
2015-09-18 00:43:02 -0700
Commit: 2c6a51e, github.com/apache/spark/pull/8808
docs/running-on-mesos.md: state default values in default column
Felix Bechstein <[email protected]>
2015-09-17 22:42:46 -0700
Commit: f97db94, github.com/apache/spark/pull/8810
[SPARK-9522] [SQL] SparkSubmit process can not exit if kill application when HiveThriftServer was starting
linweizhong <[email protected]>
2015-09-17 22:25:24 -0700
Commit: dc5ae03, github.com/apache/spark/pull/7853
[SPARK-10657] Remove SCP-based Jenkins log archiving
Josh Rosen <[email protected]>
2015-09-17 11:40:24 -0700
Commit: 153a23a, github.com/apache/spark/pull/8793
[SPARK-10639] [SQL] Need to convert UDAF's result from scala to sql type
Yin Huai <[email protected]>
2015-09-17 11:14:52 -0700
Commit: 464d6e7, github.com/apache/spark/pull/8788
[SPARK-10650] Clean before building docs
Michael Armbrust <[email protected]>
2015-09-17 11:05:30 -0700
Commit: fd58ed4, github.com/apache/spark/pull/8787
[SPARK-10172] [CORE] disable sort in HistoryServer webUI
Josiah Samuel <[email protected]>
2015-09-17 10:18:21 -0700
Commit: 88176d1, github.com/apache/spark/pull/8506
[SPARK-10642] [PYSPARK] Fix crash when calling rdd.lookup() on tuple keys
Liang-Chi Hsieh <[email protected]>
2015-09-17 10:02:15 -0700
Commit: 9f8fb33, github.com/apache/spark/pull/8796
[SPARK-10660] Doc describe error in the "Running Spark on YARN" page
yangping.wu <[email protected]>
2015-09-17 09:52:40 -0700
Commit: eae1566, github.com/apache/spark/pull/8797
[SPARK-10511] [BUILD] Reset git repository before packaging source distro
Luciano Resende <[email protected]>
2015-09-16 10:47:30 +0100
Commit: 4c4a9ba, github.com/apache/spark/pull/8774
[SPARK-10381] Fix mixup of taskAttemptNumber & attemptId in OutputCommitCoordinator
Josh Rosen <[email protected]>
2015-09-15 17:11:21 -0700
Commit: 2bbcbc6, github.com/apache/spark/pull/8544
[SPARK-10548] [SPARK-10563] [SQL] Fix concurrent SQL executions / branch-1.5
Andrew Or <[email protected]>
2015-09-15 16:46:34 -0700
Commit: 997be78, github.com/apache/spark/pull/8721
Small fixes to docs
Jacek Laskowski <[email protected]>
2015-09-14 23:40:29 -0700
Commit: 7286c2b, github.com/apache/spark/pull/8759
[SPARK-10542] [PYSPARK] fix serialize namedtuple
Davies Liu <[email protected]>
2015-09-14 19:46:34 -0700
Commit: d5c0361, github.com/apache/spark/pull/8707
[SPARK-10564] ThreadingSuite: assertion failures in threads don't fail the test (round 2)
Andrew Or <[email protected]>
2015-09-14 15:09:43 -0700
Commit: 5db51f9, github.com/apache/spark/pull/8727
[SPARK-10543] [CORE] Peak Execution Memory Quantile should be Per-task Basis
Forest Fang <[email protected]>
2015-09-14 15:07:13 -0700
Commit: eb0cb25, github.com/apache/spark/pull/8726
[SPARK-10549] scala 2.11 spark on yarn with security - Repl doesn't work
Tom Graves <[email protected]>, Thomas Graves <[email protected]>
2015-09-14 15:05:19 -0700
Commit: 0e1c9d9, github.com/apache/spark/pull/8719
[SPARK-10522] [SQL] Nanoseconds of Timestamp in Parquet should be positive
Davies Liu <[email protected]>
2015-09-14 14:10:54 -0700
Commit: a0d564a, github.com/apache/spark/pull/8674
[SPARK-10573] [ML] IndexToString output schema should be StringType
Nick Pritchard <[email protected]>
2015-09-14 13:27:45 -0700
Commit: 5b7067c, github.com/apache/spark/pull/8751
[SPARK-10584] [DOC] [SQL] Documentation about spark.sql.hive.metastore.version is wrong.
Kousuke Saruta <[email protected]>
2015-09-14 12:06:23 -0700
Commit: 5f58704, github.com/apache/spark/pull/8739
[SPARK-6350] [MESOS] [BACKPORT] Fine-grained mode scheduler respects
Iulian Dragos <[email protected]>
2015-09-13 11:00:08 +0100
Commit: 4586f21, github.com/apache/spark/pull/8732
[SPARK-10554] [CORE] Fix NPE with ShutdownHook
Nithin Asokan <[email protected]>
2015-09-12 09:50:49 +0100
Commit: f8909a6, github.com/apache/spark/pull/8720
[SPARK-10566] [CORE] SnappyCompressionCodec init exception handling masks important error information
Daniel Imfeld <[email protected]>
2015-09-12 09:19:59 +0100
Commit: 5bf403c, github.com/apache/spark/pull/8725
[SPARK-10564] ThreadingSuite: assertion failures in threads don't fail the test
Andrew Or <[email protected]>
2015-09-11 15:02:59 -0700
Commit: fcb2438, github.com/apache/spark/pull/8723
[SPARK-9924] [WEB UI] Don't schedule checkForLogs while some of them …
Rohit Agarwal <[email protected]>
2015-09-11 10:03:39 -0700
Commit: 7f10bd6, github.com/apache/spark/pull/8701
[SPARK-10540] [SQL] Ignore HadoopFsRelationTest's "test all data types" if it is too flaky
Yin Huai <[email protected]>
2015-09-11 09:42:53 -0700
Commit: 295281f, github.com/apache/spark/pull/8705
[SPARK-10556] Remove explicit Scala version for sbt project build files
Ahir Reddy <[email protected]>
2015-09-11 13:06:14 +0100
Commit: 4af9256, github.com/apache/spark/pull/8709
Revert "[SPARK-6350] [MESOS] Fine-grained mode scheduler respects mesosExecutor.cores"
Andrew Or <[email protected]>
2015-09-10 14:35:52 -0700
Commit: 89d351b
[SPARK-6350] [MESOS] Fine-grained mode scheduler respects mesosExecutor.cores
Iulian Dragos <[email protected]>
2015-09-10 12:00:21 -0700
Commit: 8cf1619, github.com/apache/spark/pull/8653
[SPARK-10469] [DOC] Try and document the three options
Holden Karau <[email protected]>
2015-09-10 11:49:53 -0700
Commit: bff05aa, github.com/apache/spark/pull/8638
[SPARK-10466] [SQL] UnsafeRow SerDe exception with data spill
Cheng Hao <[email protected]>
2015-09-10 11:48:43 -0700
Commit: bc70043, github.com/apache/spark/pull/8635
[MINOR] [MLLIB] [ML] [DOC] fixed typo: label for negative result should be 0.0 (original: 1.0)
Sean Paradiso <[email protected]>
2015-09-09 22:09:33 -0700
Commit: 5e06d41, github.com/apache/spark/pull/8680
[SPARK-7736] [CORE] Fix a race introduced in PythonRunner.
Marcelo Vanzin <[email protected]>
2015-08-18 11:36:36 -0700
Commit: d6cd356, github.com/apache/spark/pull/8258
[SPARK-7736] [CORE] [YARN] Make pyspark fail YARN app on failure.
Marcelo Vanzin <[email protected]>
2015-08-17 10:34:22 -0700
Commit: a150625, github.com/apache/spark/pull/7751
[SPARK-10071] [STREAMING] Output a warning when writing QueueInputDStream and throw a better exception when reading QueueInputDStream
zsxwing <[email protected]>
2015-09-08 20:39:15 -0700
Commit: d4b00c5, github.com/apache/spark/pull/8624
[SPARK-10301] [SPARK-10428] [SQL] [BRANCH-1.5] Fixes schema merging for nested structs
Cheng Lian <[email protected]>
2015-09-08 20:30:24 -0700
Commit: fca16c5, github.com/apache/spark/pull/8583
[SPARK-10492] [STREAMING] [DOCUMENTATION] Update Streaming documentation about rate limiting and backpressure
Tathagata Das <[email protected]>
2015-09-08 14:54:43 -0700
Commit: 63c72b9, github.com/apache/spark/pull/8656
[SPARK-10441] [SQL] [BRANCH-1.5] Save data correctly to json.
Yin Huai <[email protected]>
2015-09-08 14:20:35 -0700
Commit: 7fd4674, github.com/apache/spark/pull/8655
[SPARK-10470] [ML] ml.IsotonicRegressionModel.copy should set parent
Yanbo Liang <[email protected]>
2015-09-08 12:48:21 -0700
Commit: 34d417e, github.com/apache/spark/pull/8637
Docs small fixes
Jacek Laskowski <[email protected]>
2015-09-08 14:38:10 +0100
Commit: 88a07d8, github.com/apache/spark/pull/8629
[DOC] Added R to the list of languages with "high-level API" support in the…
Stephen Hopper <[email protected]>
2015-09-08 14:36:34 +0100
Commit: 37c5edf, github.com/apache/spark/pull/8646
[SPARK-10434] [SQL] Fixes Parquet schema of arrays that may contain null
Cheng Lian <[email protected]>
2015-09-05 17:50:12 +0800
Commit: 640000b, github.com/apache/spark/pull/8586
[SPARK-10440] [STREAMING] [DOCS] Update python API stuff in the programming guides and python docs
Tathagata Das <[email protected]>
2015-09-04 23:16:39 -1000
Commit: ec750a7, github.com/apache/spark/pull/8595
[SPARK-10402] [DOCS] [ML] Add defaults to the scaladoc for params in ml/
Holden Karau <[email protected]>
2015-09-04 17:32:35 -0700
Commit: cfc5f6f, github.com/apache/spark/pull/8591
[SPARK-10311] [STREAMING] Reload appId and attemptId when app starts with checkpoint file in cluster mode
xutingjun <[email protected]>
2015-09-04 15:40:02 -0700
Commit: dc39658, github.com/apache/spark/pull/8477
[SPARK-10454] [SPARK CORE] wait for empty event queue
robbins <[email protected]>
2015-09-04 15:23:29 -0700
Commit: 09e08db, github.com/apache/spark/pull/8605
[SPARK-10431] [CORE] Fix intermittent test failure. Wait for event queue to be clear
robbins <[email protected]>
2015-09-03 13:47:22 -0700
Commit: 4d63335, github.com/apache/spark/pull/8582
[SPARK-9869] [STREAMING] Wait for all event notifications before asserting results
robbins <[email protected]>
2015-09-03 13:48:35 -0700
Commit: f945b64, github.com/apache/spark/pull/8589
[SPARK-10332] [CORE] Fix yarn spark executor validation
Holden Karau <[email protected]>
2015-09-03 09:30:54 +0100
Commit: f01a967, github.com/apache/spark/pull/8580
[SPARK-10411] [SQL] Move visualization above explain output and hide explain by default
zsxwing <[email protected]>
2015-09-02 22:17:39 -0700
Commit: 94404ee, github.com/apache/spark/pull/8570
[SPARK-10379] preserve first page in UnsafeShuffleExternalSorter
Davies Liu <[email protected]>
2015-09-02 22:15:54 -0700
Commit: b846a9d, github.com/apache/spark/pull/8543
[SPARK-10422] [SQL] String column in InMemoryColumnarCache needs to override clone method
Yin Huai <[email protected]>
2015-09-02 21:00:13 -0700
Commit: 2fce5d8, github.com/apache/spark/pull/8578
[SPARK-10392] [SQL] Pyspark - Wrong DateType support on JDBC connection
0x0FFF <[email protected]>
2015-09-01 14:58:49 -0700
Commit: 30efa96, github.com/apache/spark/pull/8556
[SPARK-10398] [DOCS] Migrate Spark download page to use new lua mirroring scripts
Sean Owen <[email protected]>
2015-09-01 20:06:01 +0100
Commit: d19bccd, github.com/apache/spark/pull/8557
Preparing development version 1.5.1-SNAPSHOT
Patrick Wendell <[email protected]>
2015-08-31 15:57:49 -0700
Commit: 2b270a1
Release 1.5.0
[SPARK-10143] [SQL] Use parquet's block size (row group size) setting as the min split size if necessary.
Yin Huai <[email protected]>
2015-08-21 14:30:00 -0700
Commit: 14c8c0c, github.com/apache/spark/pull/8346
[SPARK-9864] [DOC] [MLlib] [SQL] Replace since in scaladoc to Since annotation
MechCoder <[email protected]>
2015-08-21 14:19:24 -0700
Commit: e7db876, github.com/apache/spark/pull/8352
[SPARK-10122] [PYSPARK] [STREAMING] Fix getOffsetRanges bug in PySpark-Streaming transform function
jerryshao <[email protected]>
2015-08-21 13:10:11 -0700
Commit: 4e72839, github.com/apache/spark/pull/8347
[SPARK-10130] [SQL] type coercion for IF should have children resolved first
Daoyuan Wang <[email protected]>
2015-08-21 12:21:51 -0700
Commit: 817c38a, github.com/apache/spark/pull/8331
[SPARK-9846] [DOCS] User guide for Multilayer Perceptron Classifier
Alexander Ulanov <[email protected]>
2015-08-20 20:02:27 -0700
Commit: e5e6017, github.com/apache/spark/pull/8262
[SPARK-10140] [DOC] add target fields to @Since
Xiangrui Meng <[email protected]>
2015-08-20 20:01:13 -0700
Commit: 04ef52a, github.com/apache/spark/pull/8344
Preparing development version 1.5.1-SNAPSHOT
Patrick Wendell <[email protected]>
2015-08-20 16:24:12 -0700
Commit: 988e838
Preparing Spark release v1.5.0-rc1
Patrick Wendell <[email protected]>
2015-08-20 16:24:07 -0700
Commit: 4c56ad7
Preparing development version 1.5.0-SNAPSHOT
Patrick Wendell <[email protected]>
2015-08-20 15:33:10 -0700
Commit: 175c1d9
Preparing Spark release v1.5.0-rc1
Patrick Wendell <[email protected]>
2015-08-20 15:33:04 -0700
Commit: d837d51
[SPARK-9245] [MLLIB] LDA topic assignments
Joseph K. Bradley <[email protected]>
2015-08-20 15:01:31 -0700
Commit: 2beea65, github.com/apache/spark/pull/8329
[SPARK-10108] Add since tags to mllib.feature
MechCoder <[email protected]>
2015-08-20 14:56:08 -0700
Commit: 560ec12, github.com/apache/spark/pull/8309
[SPARK-10138] [ML] move setters to MultilayerPerceptronClassifier and add Java test suite
Xiangrui Meng <[email protected]>
2015-08-20 14:47:04 -0700
Commit: 2e0d2a9, github.com/apache/spark/pull/8342
Preparing development version 1.5.0-SNAPSHOT
Patrick Wendell <[email protected]>
2015-08-20 12:43:13 -0700
Commit: eac31ab
Preparing Spark release v1.5.0-rc1
Patrick Wendell <[email protected]>
2015-08-20 12:43:08 -0700
Commit: 99eeac8
[SPARK-10126] [PROJECT INFRA] Fix typo in release-build.sh which broke snapshot publishing for Scala 2.11
Josh Rosen <[email protected]>
2015-08-20 11:31:03 -0700
Commit: 6026f4f, github.com/apache/spark/pull/8325
Preparing development version 1.5.0-SNAPSHOT
Patrick Wendell <[email protected]>
2015-08-20 11:06:41 -0700
Commit: a1785e3
Preparing Spark release v1.5.0-rc1
Patrick Wendell <[email protected]>
2015-08-20 11:06:31 -0700
Commit: 19b92c8
[SPARK-10136] [SQL] Fixes Parquet support for Avro array of primitive array
Cheng Lian <[email protected]>
2015-08-20 11:00:24 -0700
Commit: 2f47e09, github.com/apache/spark/pull/8341
[SPARK-9982] [SPARKR] SparkR DataFrame fail to return data of Decimal type
Alex Shkurenko <[email protected]>
2015-08-20 10:16:38 -0700
Commit: a7027e6, github.com/apache/spark/pull/8239
[MINOR] [SQL] Fix sphinx warnings in PySpark SQL
MechCoder <[email protected]>
2015-08-20 10:05:31 -0700
Commit: 257e9d7, github.com/apache/spark/pull/8171
[SPARK-10100] [SQL] Eliminate hash table lookup if there is no grouping key in aggregation.
Reynold Xin <[email protected]>
2015-08-20 07:53:27 -0700
Commit: 5be5175, github.com/apache/spark/pull/8332
[SPARK-10092] [SQL] Backports #8324 to branch-1.5
Yin Huai <[email protected]>
2015-08-20 18:43:24 +0800
Commit: 675e224, github.com/apache/spark/pull/8336
[SPARK-10128] [STREAMING] Used correct classloader to deserialize WAL data
Tathagata Das <[email protected]>
2015-08-19 21:15:58 -0700
Commit: 71aa547, github.com/apache/spark/pull/8328
[SPARK-10125] [STREAMING] Fix a potential deadlock in JobGenerator.stop
zsxwing <[email protected]>
2015-08-19 19:43:09 -0700
Commit: 63922fa, github.com/apache/spark/pull/8326
[SPARK-10124] [MESOS] Fix removing queued driver in mesos cluster mode.
Timothy Chen <[email protected]>
2015-08-19 19:43:26 -0700
Commit: a3ed2c3, github.com/apache/spark/pull/8322