forked from apache/spark
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES.txt
15320 lines (12073 loc) · 535 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.1.1
[SPARK-4480] Avoid many small spills in external data structures (1.1)
Andrew Or <[email protected]>
2014-11-19 10:45:42 -0800
Commit: 16bf5f3, github.com/apache/spark/pull/3354
[SPARK-4380] Log more precise number of bytes spilled (1.1)
Andrew Or <[email protected]>
2014-11-18 20:15:00 -0800
Commit: e22a759, github.com/apache/spark/pull/3355
[SPARK-4468][SQL] Backports #3334 to branch-1.1
Cheng Lian <[email protected]>
2014-11-18 17:40:24 -0800
Commit: f9739b9, github.com/apache/spark/pull/3338
[SPARK-4433] fix a racing condition in zipWithIndex
Xiangrui Meng <[email protected]>
2014-11-18 16:25:44 -0800
Commit: ae9b1f6, github.com/apache/spark/pull/3291
[SPARK-4393] Fix memory leak in ConnectionManager ACK timeout TimerTasks; use HashedWheelTimer (For branch-1.1)
Kousuke Saruta <[email protected]>
2014-11-18 12:09:18 -0800
Commit: 91b5fa8, github.com/apache/spark/pull/3321
[SPARK-4467] Partial fix for fetch failure in sort-based shuffle (1.1)
Andrew Or <[email protected]>
2014-11-17 18:10:49 -0800
Commit: aa9ebda, github.com/apache/spark/pull/3330
Revert "[SPARK-4075] [Deploy] Jar url validation is not enough for Jar file"
Andrew Or <[email protected]>
2014-11-17 11:25:38 -0800
Commit: b528367
[branch-1.1][SPARK-4355] OnlineSummarizer doesn't merge mean correctly
Xiangrui Meng <[email protected]>
2014-11-13 15:36:03 -0800
Commit: 4b1c77c, github.com/apache/spark/pull/3251
[Release] Correct make-distribution.sh log path
Andrew Or <[email protected]>
2014-11-12 13:46:26 -0800
Commit: ba6d81d
[Release] Bring audit scripts up-to-date
Andrew Or <[email protected]>
2014-11-13 00:30:58 +0000
Commit: 88bc482
[Release] Log build output for each distribution
Andrew Or <[email protected]>
2014-11-11 18:02:59 -0800
Commit: e3a5ee9
Revert "SPARK-3039: Allow spark to be built using avro-mapred for hadoop2"
Andrew Or <[email protected]>
2014-11-12 00:04:30 -0800
Commit: 45a01b6
Update CHANGES.txt
Andrew Or <[email protected]>
2014-11-11 23:11:32 +0000
Commit: 131c626
[SPARK-4295][External]Fix exception in SparkSinkSuite
maji2014 <[email protected]>
2014-11-11 02:18:27 -0800
Commit: bf867c3, github.com/apache/spark/pull/3177
[branch-1.1][SPARK-3990] add a note on ALS usage
Xiangrui Meng <[email protected]>
2014-11-10 22:39:09 -0800
Commit: b2cb357, github.com/apache/spark/pull/3190
[BRANCH-1.1][SPARK-2652] change the default spark.serializer in pyspark back to Kryo
Xiangrui Meng <[email protected]>
2014-11-10 22:21:14 -0800
Commit: 11798d0, github.com/apache/spark/pull/3187
[SPARK-4330][Doc] Link to proper URL for YARN overview
Kousuke Saruta <[email protected]>
2014-11-10 22:18:00 -0800
Commit: d313be8, github.com/apache/spark/pull/3196
[SQL] Backport backtick and smallint JDBC fixes to 1.1
2014-11-10 19:51:07 -0800
Commit: 8a1d818, github.com/apache/spark/pull/3199
Update versions for 1.1.1 release
Andrew Or <[email protected]>
2014-11-10 18:40:34 -0800
Commit: 01d233e
[SPARK-3495][SPARK-3496] Backporting block replication fixes made in master to branch 1.1
Tathagata Das <[email protected]>
2014-11-10 18:23:02 -0800
Commit: be0cc99, github.com/apache/spark/pull/3191
[SPARK-3954][Streaming] Optimization to FileInputDStream
surq <[email protected]>
2014-11-10 17:37:16 -0800
Commit: 3d889df, github.com/apache/spark/pull/2811
[SPARK-3971][SQL] Backport #2843 to branch-1.1
Cheng Lian <[email protected]>, Cheng Lian <[email protected]>, Michael Armbrust <[email protected]>
2014-11-10 17:04:10 -0800
Commit: 64945f8, github.com/apache/spark/pull/3113
[SPARK-4308][SQL] Follow up of #3175 for branch 1.1
Cheng Lian <[email protected]>
2014-11-10 16:57:34 -0800
Commit: b3ef06b, github.com/apache/spark/pull/3176
[SPARK-2548][HOTFIX][Streaming] Removed use of o.a.s.streaming.Durations in branch 1.1
Tathagata Das <[email protected]>
2014-11-10 14:13:42 -0800
Commit: 86b1bd0, github.com/apache/spark/pull/3188
Update RecoverableNetworkWordCount.scala
comcmipi <[email protected]>
2014-11-10 12:33:48 -0800
Commit: 254b135, github.com/apache/spark/pull/2735
SPARK-2548 [STREAMING] JavaRecoverableWordCount is missing
Sean Owen <[email protected]>
2014-11-10 11:47:27 -0800
Commit: cdcf546, github.com/apache/spark/pull/2564
[SPARK-4169] [Core] Accommodate non-English Locales in unit tests
Niklas Wilcke <[email protected]>
2014-11-10 11:37:38 -0800
Commit: dc38def, github.com/apache/spark/pull/3036
[SPARK-4301] StreamingContext should not allow start() to be called after calling stop()
Josh Rosen <[email protected]>
2014-11-08 18:10:23 -0800
Commit: 78cd3ab, github.com/apache/spark/pull/3160
[SPARK-4304] [PySpark] Fix sort on empty RDD
Davies Liu <[email protected]>
2014-11-07 20:53:03 -0800
Commit: 4895f65, github.com/apache/spark/pull/3162
Update JavaCustomReceiver.java
xiao321 <[email protected]>
2014-11-07 12:56:49 -0800
Commit: 4fb26df, github.com/apache/spark/pull/3153
[SPARK-4249][GraphX]fix a problem of EdgePartitionBuilder in Graphx
lianhuiwang <[email protected]>
2014-11-06 10:46:45 -0800
Commit: 0a40eac, github.com/apache/spark/pull/3138
[SPARK-4158] Fix for missing resources.
Brenden Matthews <[email protected]>
2014-11-05 16:02:44 -0800
Commit: c58c1bb, github.com/apache/spark/pull/3024
SPARK-3223 runAsSparkUser cannot change HDFS write permission properly i...
Jongyoul Lee <[email protected]>
2014-11-05 15:49:42 -0800
Commit: 590a943, github.com/apache/spark/pull/3034
[branch-1.1][SPARK-4148][PySpark] fix seed distribution and add some tests for rdd.sample
Xiangrui Meng <[email protected]>
2014-11-05 10:30:10 -0800
Commit: 44751af, github.com/apache/spark/pull/3104
[SPARK-4115][GraphX] Add overrided count for edge counting of EdgeRDD.
luluorta <[email protected]>
2014-11-01 01:22:46 -0700
Commit: 1b282cd, github.com/apache/spark/pull/2975
[SPARK-4097] Fix the race condition of 'thread'
zsxwing <[email protected]>
2014-10-29 14:42:50 -0700
Commit: abdb90b, github.com/apache/spark/pull/2957
[SPARK-4065] Add check for IPython on Windows
Michael Griffiths <[email protected]>
2014-10-28 12:47:21 -0700
Commit: f0c5717, github.com/apache/spark/pull/2910
[SPARK-4107] Fix incorrect handling of read() and skip() return values (branch-1.1 backport)
Josh Rosen <[email protected]>
2014-10-28 12:30:12 -0700
Commit: 286f1ef, github.com/apache/spark/pull/2974
[SPARK-4110] Wrong comments about default settings in spark-daemon.sh
Kousuke Saruta <[email protected]>
2014-10-28 12:29:01 -0700
Commit: dee3317, github.com/apache/spark/pull/2972
[MLlib] SPARK-3987: add test case on objective value for NNLS
coderxiang <[email protected]>
2014-10-27 19:43:39 -0700
Commit: 2ef2f5a, github.com/apache/spark/pull/2965
Fix build breakage introduced by 6c10c2770c718287f9cc2af4109b701fa1057b70
Josh Rosen <[email protected]>
2014-10-25 20:33:17 -0700
Commit: 2eb9d7c
Revert "[SPARK-4056] Upgrade snappy-java to 1.1.1.5"
Josh Rosen <[email protected]>
2014-10-25 17:09:01 -0700
Commit: c1989aa
[SPARK-4056] Upgrade snappy-java to 1.1.1.5
Josh Rosen <[email protected]>, Josh Rosen <[email protected]>
2014-10-24 17:21:08 -0700
Commit: b7541ae, github.com/apache/spark/pull/2911
[SPARK-4080] Only throw IOException from [write|read][Object|External]
Josh Rosen <[email protected]>
2014-10-24 15:06:15 -0700
Commit: 6c10c27, github.com/apache/spark/pull/2932
[SPARK-4006] In long running contexts, we encountered the situation of d...
Tal Sliwowicz <[email protected]>
2014-10-24 13:51:25 -0700
Commit: 59297e9, github.com/apache/spark/pull/2915
[SPARK-4075] [Deploy] Jar url validation is not enough for Jar file
Kousuke Saruta <[email protected]>
2014-10-24 13:08:21 -0700
Commit: 80dde80, github.com/apache/spark/pull/2925
[SPARK-4076] Parameter expansion in spark-config is wrong
Kousuke Saruta <[email protected]>
2014-10-24 13:04:35 -0700
Commit: 386fc46, github.com/apache/spark/pull/2930
[SPARK-2652] [PySpark] donot use KyroSerializer as default serializer
Davies Liu <[email protected]>
2014-10-23 23:58:00 -0700
Commit: 926f8ca, github.com/apache/spark/pull/2916
[SPARK-3426] Fix sort-based shuffle error when spark.shuffle.compress and spark.shuffle.spill.compress settings are different
Josh Rosen <[email protected]>
2014-10-22 14:49:58 -0700
Commit: 5e191fa, github.com/apache/spark/pull/2890
[SPARK-3877][YARN] Throw an exception when application is not successful so that the exit code wil be set to 1 (for branch-1.1)
zsxwing <[email protected]>
2014-10-22 15:08:28 -0700
Commit: eb62094, github.com/apache/spark/pull/2748
[SPARK-4010][Web UI]Spark UI returns 500 in yarn-client mode
GuoQiang Li <[email protected]>
2014-10-20 11:01:26 -0700
Commit: 457ef59, github.com/apache/spark/pull/2858
[SPARK-3948][Shuffle]Fix stream corruption bug in sort-based shuffle
jerryshao <[email protected]>
2014-10-20 10:20:21 -0700
Commit: 12a61d8, github.com/apache/spark/pull/2824
[SPARK-2546] Clone JobConf for each task (branch-1.0 / 1.1 backport)
Josh Rosen <[email protected]>
2014-10-19 00:31:06 -0700
Commit: 2cd40db, github.com/apache/spark/pull/2684
SPARK-3926 [CORE] Result of JavaRDD.collectAsMap() is not Serializable
Sean Owen <[email protected]>
2014-10-18 12:33:20 -0700
Commit: 327404d, github.com/apache/spark/pull/2805
[SPARK-3606] [yarn] Correctly configure AmIpFilter for Yarn HA (1.1 vers...
Marcelo Vanzin <[email protected]>
2014-10-17 00:53:15 -0700
Commit: 0d958f1, github.com/apache/spark/pull/2497
[SPARK-3067] JobProgressPage could not show Fair Scheduler Pools section sometimes
yantangzhai <[email protected]>, YanTangZhai <[email protected]>
2014-10-16 19:25:37 -0700
Commit: 35875e9, github.com/apache/spark/pull/1966
[SPARK-3890][Docs]remove redundant spark.executor.memory in doc
WangTaoTheTonic <[email protected]>, WangTao <[email protected]>
2014-10-16 19:12:39 -0700
Commit: 2c41170, github.com/apache/spark/pull/2745
[SQL]typo in HiveFromSpark
Kun Li <[email protected]>
2014-10-16 19:00:10 -0700
Commit: 61e5903, github.com/apache/spark/pull/2809
SPARK-3807: SparkSql does not work for tables created using custom serde
chirag <[email protected]>
2014-10-13 13:47:26 -0700
Commit: 925e22d, github.com/apache/spark/pull/2674
[SPARK-3899][Doc]fix wrong links in streaming doc
w00228970 <[email protected]>, wangfei <[email protected]>
2014-10-12 23:35:50 -0700
Commit: 4fc6638, github.com/apache/spark/pull/2749
[SPARK-3905][Web UI]The keys for sorting the columns of Executor page ,Stage page Storage page are incorrect
GuoQiang Li <[email protected]>
2014-10-12 22:48:54 -0700
Commit: a36116c, github.com/apache/spark/pull/2763
[SPARK-3121] Wrong implementation of implicit bytesWritableConverter
Jakub Dubovský <[email protected]>, Dubovsky Jakub <[email protected]>
2014-10-12 22:03:26 -0700
Commit: 0e32579, github.com/apache/spark/pull/2712
SPARK-3716 [GraphX] Update Analytics.scala for partitionStrategy assignment
NamelessAnalyst <[email protected]>
2014-10-12 14:18:55 -0700
Commit: 5a21e3e, github.com/apache/spark/pull/2569
[SPARK-3711][SQL] Optimize where in clause filter queries
Yash Datta <[email protected]>
2014-10-09 12:59:14 -0700
Commit: 18ef22a, github.com/apache/spark/pull/2561
[SPARK-3844][UI] Truncate appName in WebUI if it is too long
Xiangrui Meng <[email protected]>
2014-10-09 00:00:24 -0700
Commit: 09d6a81, github.com/apache/spark/pull/2707
[SPARK-3788] [yarn] Fix compareFs to do the right thing for HDFS namespaces (1.1 version).
Marcelo Vanzin <[email protected]>
2014-10-08 08:51:17 -0500
Commit: a44af73, github.com/apache/spark/pull/2650
[SPARK-3829] Make Spark logo image on the header of HistoryPage as a link to HistoryPage's page #1
Kousuke Saruta <[email protected]>
2014-10-07 16:54:49 -0700
Commit: a1f833f, github.com/apache/spark/pull/2690
[SPARK-3777] Display "Executor ID" for Tasks in Stage page
zsxwing <[email protected]>
2014-10-07 16:00:22 -0700
Commit: e8afb73, github.com/apache/spark/pull/2642
[SPARK-3731] [PySpark] fix memory leak in PythonRDD
Davies Liu <[email protected]>
2014-10-07 12:20:12 -0700
Commit: 5531830, github.com/apache/spark/pull/2668
[SPARK-3825] Log more detail when unrolling a block fails
Andrew Or <[email protected]>
2014-10-07 12:52:10 -0700
Commit: 267c7be, github.com/apache/spark/pull/2688
[SPARK-3808] PySpark fails to start in Windows
Masayoshi TSUZUKI <[email protected]>
2014-10-07 11:53:22 -0700
Commit: 3a7875d, github.com/apache/spark/pull/2669
[SPARK-3827] Very long RDD names are not rendered properly in web UI
Hossein <[email protected]>
2014-10-07 11:46:26 -0700
Commit: 82ab4a7, github.com/apache/spark/pull/2687
[SPARK-3792][SQL] Enable JavaHiveQLSuite
scwf <[email protected]>
2014-10-05 17:47:20 -0700
Commit: 964e3aa, github.com/apache/spark/pull/2652
SPARK-1656: Fix potential resource leaks
zsxwing <[email protected]>
2014-10-05 09:55:17 -0700
Commit: c068d90, github.com/apache/spark/pull/577
[SPARK-3597][Mesos] Implement `killTask`.
Brenden Matthews <[email protected]>
2014-10-05 09:49:24 -0700
Commit: d9cf4d0, github.com/apache/spark/pull/2453
[SPARK-3774] typo comment in bin/utils.sh
Masayoshi TSUZUKI <[email protected]>
2014-10-03 13:12:37 -0700
Commit: e4ddede, github.com/apache/spark/pull/2639
[SPARK-3775] Not suitable error message in spark-shell.cmd
Masayoshi TSUZUKI <[email protected]>
2014-10-03 13:09:48 -0700
Commit: f130256, github.com/apache/spark/pull/2640
[SPARK-3535][Mesos] Fix resource handling.
Brenden Matthews <[email protected]>
2014-10-03 12:58:04 -0700
Commit: 6f15097, github.com/apache/spark/pull/2401
[SPARK-3696]Do not override the user-difined conf_dir
WangTaoTheTonic <[email protected]>
2014-10-03 10:42:41 -0700
Commit: d5af9e1, github.com/apache/spark/pull/2541
SPARK-2058: Overriding SPARK_HOME/conf with SPARK_CONF_DIR
EugenCepoi <[email protected]>
2014-10-03 10:03:15 -0700
Commit: 5d991db, github.com/apache/spark/pull/2481
[DEPLOY] SPARK-3759: Return the exit code of the driver process
Eric Eijkelenboom <[email protected]>
2014-10-02 18:04:38 -0700
Commit: 699af62, github.com/apache/spark/pull/2628
[SPARK-3755][Core] avoid trying privileged port when request a non-privileged port
scwf <[email protected]>
2014-10-02 17:47:56 -0700
Commit: 16789f6, github.com/apache/spark/pull/2623
[SQL][Docs] Update the output of printSchema and fix a typo in SQL programming guide.
Yin Huai <[email protected]>
2014-10-02 11:37:24 -0700
Commit: 6869351, github.com/apache/spark/pull/2630
SPARK-3638 | Forced a compatible version of http client in kinesis-asl profile
aniketbhatnagar <[email protected]>
2014-10-01 18:31:18 -0700
Commit: c52c231, github.com/apache/spark/pull/2535
Typo error in KafkaWordCount example
Gaspar Munoz <[email protected]>
2014-10-01 13:47:22 -0700
Commit: 24ee616, github.com/apache/spark/pull/2614
[SPARK-3756] [Core]check exception is caused by an address-port collision properly
scwf <[email protected]>
2014-10-01 11:51:30 -0700
Commit: b4f690d, github.com/apache/spark/pull/2611
SPARK-2626 [DOCS] Stop SparkContext in all examples
Sean Owen <[email protected]>
2014-10-01 11:28:22 -0700
Commit: 13f33cf, github.com/apache/spark/pull/2575
[SPARK-3755][Core] Do not bind port 1 - 1024 to server in spark
scwf <[email protected]>
2014-10-01 11:30:29 -0700
Commit: c8c3b49, github.com/apache/spark/pull/2610
[SPARK-3747] TaskResultGetter could incorrectly abort a stage if it cannot get result for a specific task
Reynold Xin <[email protected]>
2014-10-01 00:29:14 -0700
Commit: a7d2df4, github.com/apache/spark/pull/2599
SPARK-3745 - fix check-license to properly download and check jar
shane knapp <[email protected]>
2014-09-30 13:11:25 -0700
Commit: 06b96d4, github.com/apache/spark/pull/2596
[SPARK-3709] Executors don't always report broadcast block removal properly back to the driver (for branch-1.1)
Reynold Xin <[email protected]>
2014-09-30 12:24:58 -0700
Commit: a8c6e82, github.com/apache/spark/pull/2591
[SPARK-3734] DriverRunner should not read SPARK_HOME from submitter's environment
Josh Rosen <[email protected]>
2014-09-29 23:36:10 -0700
Commit: 48be657, github.com/apache/spark/pull/2586
Fixed the condition in StronglyConnectedComponents Issue: SPARK-3635
oded <[email protected]>
2014-09-29 18:05:53 -0700
Commit: 85dd513, github.com/apache/spark/pull/2486
[graphX] GraphOps: random pick vertex bug
yingjieMiao <[email protected]>
2014-09-29 18:01:27 -0700
Commit: e5ab113, github.com/apache/spark/pull/2553
[SPARK-3032][Shuffle] Fix key comparison integer overflow introduced sorting exception
jerryshao <[email protected]>
2014-09-29 11:25:32 -0700
Commit: df5a62f, github.com/apache/spark/pull/2514
[CORE] Bugfix: LogErr format in DAGScheduler.scala
Zhang, Liye <[email protected]>
2014-09-29 01:13:15 -0700
Commit: 7d88471, github.com/apache/spark/pull/2572
[SPARK-3715][Docs]minor typo
WangTaoTheTonic <[email protected]>
2014-09-28 18:30:13 -0700
Commit: 004b6fa, github.com/apache/spark/pull/2567
Docs : use "--total-executor-cores" rather than "--cores" after spark-shell
CrazyJvm <[email protected]>
2014-09-27 09:41:04 -0700
Commit: d9d94e0, github.com/apache/spark/pull/2540
SPARK-3639 | Removed settings master in examples
aniketbhatnagar <[email protected]>
2014-09-26 09:47:58 -0700
Commit: d6ed5ab, github.com/apache/spark/pull/2536
[SPARK-1853] Show Streaming application code context (file, line number) in Spark Stages UI
Mubarak Seyed <[email protected]>, Tathagata Das <[email protected]>
2014-09-23 15:09:12 -0700
Commit: 505ed6b, github.com/apache/spark/pull/2464
[SPARK-3653] Respect SPARK_*_MEMORY for cluster mode
Andrew Or <[email protected]>
2014-09-23 14:00:33 -0700
Commit: 5bbc621, github.com/apache/spark/pull/2500
SPARK-3612. Executor shouldn't quit if heartbeat message fails to reach ...
Sandy Ryza <[email protected]>
2014-09-23 13:44:18 -0700
Commit: ffd97be, github.com/apache/spark/pull/2487
Update docs to use jsonRDD instead of wrong jsonRdd.
Grega Kespret <[email protected]>
2014-09-22 10:13:44 -0700
Commit: aab0a1d, github.com/apache/spark/pull/2479
[MLLib] Fix example code variable name misspelling in MLLib Feature Extraction guide
RJ Nowling <[email protected]>
2014-09-22 09:10:41 -0700
Commit: 32bb97f, github.com/apache/spark/pull/2459
Revert "[SPARK-3595] Respect configured OutputCommitters when calling saveAsHadoopFile"
Patrick Wendell <[email protected]>
2014-09-21 13:07:20 -0700
Commit: f5bf7de
[SPARK-3595] Respect configured OutputCommitters when calling saveAsHadoopFile
Ian Hummel <[email protected]>
2014-09-21 13:04:36 -0700
Commit: 7a76657, github.com/apache/spark/pull/2450
[Docs] Fix outdated docs for standalone cluster
andrewor14 <[email protected]>, Andrew Or <[email protected]>
2014-09-19 16:02:38 -0700
Commit: fd88353, github.com/apache/spark/pull/2461
[SPARK-2062][GraphX] VertexRDD.apply does not use the mergeFunc
2014-09-18 23:32:32 -0700
Commit: 1687d6b, github.com/apache/spark/pull/1903
[Minor Hot Fix] Move a line in SparkSubmit to the right place
Andrew Or <[email protected]>
2014-09-18 17:49:28 -0700
Commit: cf15b22, github.com/apache/spark/pull/2452
[SPARK-3560] Fixed setting spark.jars system property in yarn-cluster mode
Victsm <[email protected]>, Min Shen <[email protected]>
2014-09-18 15:58:14 -0700
Commit: 832dff6, github.com/apache/spark/pull/2449
[SPARK-3589][Minor]remove redundant code
WangTaoTheTonic <[email protected]>
2014-09-18 12:07:24 -0700
Commit: 2b28692, github.com/apache/spark/pull/2445
[SPARK-3565]Fix configuration item not consistent with document
WangTaoTheTonic <[email protected]>
2014-09-17 21:59:23 -0700
Commit: 32f2222, github.com/apache/spark/pull/2427
[SPARK-3564][WebUI] Display App ID on HistoryPage
Kousuke Saruta <[email protected]>
2014-09-17 16:31:58 -0700
Commit: 3f1f974, github.com/apache/spark/pull/2424
Docs: move HA subsections to a deeper indentation level
Andrew Ash <[email protected]>
2014-09-17 15:07:57 -0700
Commit: 0690410, github.com/apache/spark/pull/2402
[SQL][DOCS] Improve table caching section
Michael Armbrust <[email protected]>
2014-09-17 12:41:49 -0700
Commit: 85e7c52, github.com/apache/spark/pull/2434
[SPARK-3490] Disable SparkUI for tests (backport into 1.1)
Andrew Or <[email protected]>
2014-09-16 18:23:28 -0700
Commit: 937de93, github.com/apache/spark/pull/2415
[SPARK-3555] Fix UISuite race condition
Andrew Or <[email protected]>
2014-09-16 16:03:20 -0700
Commit: 856156b, github.com/apache/spark/pull/2418
[SQL][DOCS] Improve section on thrift-server
Michael Armbrust <[email protected]>
2014-09-16 11:51:46 -0700
Commit: 75158a7, github.com/apache/spark/pull/2384
[SPARK-3518] Remove wasted statement in JsonProtocol
Kousuke Saruta <[email protected]>
2014-09-15 16:11:41 -0700
Commit: 99a6c5e, github.com/apache/spark/pull/2380
SPARK-3039: Allow spark to be built using avro-mapred for hadoop2
Bertrand Bossy <[email protected]>
2014-09-14 21:10:17 -0700
Commit: 78887f9, github.com/apache/spark/pull/1945
[SQL] [Docs] typo fixes
Nicholas Chammas <[email protected]>
2014-09-13 12:34:20 -0700
Commit: 70f93d5, github.com/apache/spark/pull/2367
[SPARK-3515][SQL] Moves test suite setup code to beforeAll rather than in constructor
Cheng Lian <[email protected]>
2014-09-12 20:14:09 -0700
Commit: 44e534e, github.com/apache/spark/pull/2375
[SPARK-3500] [SQL] use JavaSchemaRDD as SchemaRDD._jschema_rdd
Davies Liu <[email protected]>
2014-09-12 19:05:39 -0700
Commit: 9c06c72, github.com/apache/spark/pull/2369
[SPARK-3481] [SQL] Eliminate the error log in local Hive comparison test
Cheng Hao <[email protected]>
2014-09-12 11:29:30 -0700
Commit: 6cbf83c, github.com/apache/spark/pull/2352
Revert "[Spark-3490] Disable SparkUI for tests"
Andrew Or <[email protected]>
2014-09-12 10:40:03 -0700
Commit: f17b795
[SPARK-3465] fix task metrics aggregation in local mode
Davies Liu <[email protected]>
2014-09-11 18:53:26 -0700
Commit: e69deb8, github.com/apache/spark/pull/2338
[SPARK-3429] Don't include the empty string "" as a defaultAclUser
Andrew Ash <[email protected]>
2014-09-11 17:28:36 -0700
Commit: 4245404, github.com/apache/spark/pull/2286
[Spark-3490] Disable SparkUI for tests
Andrew Or <[email protected]>
2014-09-11 17:18:46 -0700
Commit: 2ffc798, github.com/apache/spark/pull/2363
[SPARK-2140] Updating heap memory calculation for YARN stable and alpha.
Chris Cope <[email protected]>
2014-09-11 08:13:07 -0500
Commit: 06fb2d0, github.com/apache/spark/pull/2253
HOTFIX: Changing color on doc menu
Patrick Wendell <[email protected]>
2014-09-10 22:14:55 -0700
Commit: e51ce9a
[SPARK-1919] Fix Windows spark-shell --jars
Andrew Or <[email protected]>
2014-09-02 10:47:05 -0700
Commit: 359cd59, github.com/apache/spark/pull/2211
[SPARK-3061] Fix Maven build under Windows
2014-09-02 10:45:14 -0700
Commit: 23fd3e8, github.com/apache/spark/pull/2165
[SPARK-3345] Do correct parameters for ShuffleFileGroup
Liang-Chi Hsieh <[email protected]>
2014-09-03 17:04:53 -0700
Commit: e5f77ae, github.com/apache/spark/pull/2235
[SPARK-3193]output errer info when Process exit code is not zero in test suite
scwf <[email protected]>
2014-09-09 11:57:01 -0700
Commit: 2426268, github.com/apache/spark/pull/2108
SPARK-2425 Don't kill a still-running Application because of some misbehaving Executors
Mark Hamstra <[email protected]>
2014-09-08 20:51:56 -0700
Commit: e884805, github.com/apache/spark/pull/1360
[SQL] Minor edits to sql programming guide.
Henry Cook <[email protected]>
2014-09-08 14:56:37 -0700
Commit: 7a236dc, github.com/apache/spark/pull/2316
[SPARK-938][doc] Add OpenStack Swift support
Reynold Xin <[email protected]>, Gil Vernik <[email protected]>
2014-09-07 20:56:04 -0700
Commit: 8c6306a, github.com/apache/spark/pull/is
Fixed typos in make-distribution.sh
Cheng Lian <[email protected]>
2014-09-07 20:38:32 -0700
Commit: e45bfa8, github.com/apache/spark/pull/2121
[SPARK-3408] Fixed Limit operator so it works with sort-based shuffle.
Reynold Xin <[email protected]>
2014-09-07 18:42:24 -0700
Commit: d555c2e, github.com/apache/spark/pull/2281
[SQL] Update SQL Programming Guide
Michael Armbrust <[email protected]>, Yin Huai <[email protected]>
2014-09-07 21:34:46 -0400
Commit: 65dae63, github.com/apache/spark/pull/2258
[SPARK-3394] [SQL] Fix crash in TakeOrdered when limit is 0
Eric Liang <[email protected]>
2014-09-07 17:57:59 -0700
Commit: c5d8d82, github.com/apache/spark/pull/2264
[SPARK-2419][Streaming][Docs] More updates to the streaming programming guide
Tathagata Das <[email protected]>, Chris Fregly <[email protected]>
2014-09-06 14:46:43 -0700
Commit: ce4053c, github.com/apache/spark/pull/2307
SPARK-3211 .take() is OOM-prone with empty partitions
Andrew Ash <[email protected]>
2014-09-05 18:52:05 -0700
Commit: 28ce67b, github.com/apache/spark/pull/2117
[Docs] fix minor MLlib case typo
Nicholas Chammas <[email protected]>
2014-09-04 23:37:06 -0700
Commit: 6b128be, github.com/apache/spark/pull/2278
[SPARK-3401][PySpark] Wrong usage of tee command in python/run-tests
Kousuke Saruta <[email protected]>
2014-09-04 10:29:11 -0700
Commit: dbf8120, github.com/apache/spark/pull/2272
[HOTFIX] [SPARK-3400] Revert 9b225ac "fix GraphX EdgeRDD zipPartitions"
Ankur Dave <[email protected]>
2014-09-03 23:49:47 -0700
Commit: 8c40ab5, github.com/apache/spark/pull/2271
[SPARK-3372] [MLlib] MLlib doesn't pass maven build / checkstyle due to multi-byte character contained in Gradient.scala
Kousuke Saruta <[email protected]>
2014-09-03 20:47:00 -0700
Commit: f41c45a, github.com/apache/spark/pull/2248
[SPARK-2419][Streaming][Docs] Updates to the streaming programming guide
Tathagata Das <[email protected]>, Jacek Laskowski <[email protected]>
2014-09-03 17:38:01 -0700
Commit: 3111501, github.com/apache/spark/pull/2254
Release 1.1.0
[SPARK-3320][SQL] Made batched in-memory column buffer building work for SchemaRDDs with empty partitions
Cheng Lian <[email protected]>
2014-08-29 18:16:47 -0700
Commit: aa9364a, github.com/apache/spark/pull/2213
[SPARK-3296][mllib] spark-example should be run-example in head notation of DenseKMeans and SparseNaiveBayes
wangfei <[email protected]>
2014-08-29 17:37:15 -0700
Commit: b0facb5, github.com/apache/spark/pull/2193
[SPARK-3291][SQL]TestcaseName in createQueryTest should not contain ":"
qiping.lqp <[email protected]>
2014-08-29 15:37:43 -0700
Commit: c1333b8, github.com/apache/spark/pull/2191
[SPARK-3269][SQL] Decreases initial buffer size for row set to prevent OOM
Cheng Lian <[email protected]>
2014-08-29 15:36:04 -0700
Commit: 9bae345, github.com/apache/spark/pull/2171
[SPARK-3234][Build] Fixed environment variables that rely on deprecated command line options in make-distribution.sh
Cheng Lian <[email protected]>
2014-08-29 15:29:43 -0700
Commit: cf049ef, github.com/apache/spark/pull/2208
[Docs] SQL doc formatting and typo fixes
Nicholas Chammas <[email protected]>, nchammas <[email protected]>
2014-08-29 15:23:32 -0700
Commit: bfa2dc9, github.com/apache/spark/pull/2201
[SPARK-3307] [PySpark] Fix doc string of SparkContext.broadcast()
Davies Liu <[email protected]>
2014-08-29 11:47:49 -0700
Commit: 98d0716, github.com/apache/spark/pull/2202
HOTFIX: Bump spark-ec2 version to 1.1.0
Patrick Wendell <[email protected]>
2014-08-29 11:20:45 -0700
Commit: c71b5c6
Adding new CHANGES.txt
Patrick Wendell <[email protected]>
2014-08-28 17:17:30 -0700
Commit: 7db87b3
[SPARK-3277] Fix external spilling with LZ4 assertion error
Andrew Or <[email protected]>, Patrick Wendell <[email protected]>
2014-08-28 17:05:21 -0700
Commit: fe4df34, github.com/apache/spark/pull/2187
SPARK-3082. yarn.Client.logClusterResourceDetails throws NPE if requeste...
Sandy Ryza <[email protected]>
2014-08-28 16:18:50 -0700
Commit: f4cbf5e, github.com/apache/spark/pull/1984
[SPARK-3190] Avoid overflow in VertexRDD.count()
Ankur Dave <[email protected]>
2014-08-28 15:17:01 -0700
Commit: 0b9718a, github.com/apache/spark/pull/2106
[SPARK-3264] Allow users to set executor Spark home in Mesos
Andrew Or <[email protected]>
2014-08-28 11:05:44 -0700
Commit: 069ecfe, github.com/apache/spark/pull/2166
[SPARK-3150] Fix NullPointerException in in Spark recovery: Add initializing default values in DriverInfo.init()
Tatiana Borisova <[email protected]>
2014-08-28 10:36:36 -0700
Commit: fd98020, github.com/apache/spark/pull/2062
Additional CHANGES.txt
Patrick Wendell <[email protected]>
2014-08-28 00:19:03 -0700
Commit: a9df703
[SPARK-3230][SQL] Fix udfs that return structs
Michael Armbrust <[email protected]>
2014-08-28 00:15:23 -0700
Commit: 2e8ad99, github.com/apache/spark/pull/2133
[SQL] Fixed 2 comment typos in SQLConf
Cheng Lian <[email protected]>
2014-08-28 00:08:09 -0700
Commit: c0e3bc1, github.com/apache/spark/pull/2172
HOTFIX: Don't build with YARN support for Mapr3
Patrick Wendell <[email protected]>
2014-08-27 15:40:40 -0700
Commit: ad0fab2
[HOTFIX][SQL] Remove cleaning of UDFs
Michael Armbrust <[email protected]>
2014-08-27 23:05:34 -0700
Commit: 233c283, github.com/apache/spark/pull/2174
[HOTFIX] Wait for EOF only for the PySpark shell
Andrew Or <[email protected]>
2014-08-27 23:03:46 -0700
Commit: 54ccd93, github.com/apache/spark/pull/2170
BUILD: Updating CHANGES.txt for Spark 1.1
Patrick Wendell <[email protected]>
2014-08-27 15:55:59 -0700
Commit: 8597e9c
Add line continuation for script to work w/ py2.7.5
Matthew Farrellee <[email protected]>
2014-08-27 15:50:30 -0700
Commit: d4cf7a0, github.com/apache/spark/pull/2139
[SPARK-3235][SQL] Ensure in-memory tables don't always broadcast.
Michael Armbrust <[email protected]>
2014-08-27 15:14:08 -0700
Commit: 9a62cf3, github.com/apache/spark/pull/2147
[SPARK-3065][SQL] Add locale setting to fix results do not match for udf_unix_timestamp format "yyyy MMM dd h:mm:ss a" run with not "America/Los_Angeles" TimeZone in HiveCompatibilitySuite
luogankun <[email protected]>
2014-08-27 15:08:22 -0700
Commit: 5ea260e, github.com/apache/spark/pull/1968
[SQL] [SPARK-3236] Reading Parquet tables from Metastore mangles location
Aaron Davidson <[email protected]>
2014-08-27 15:05:47 -0700
Commit: 7711687, github.com/apache/spark/pull/2150
[SPARK-3252][SQL] Add missing condition for test
viirya <[email protected]>
2014-08-27 14:55:05 -0700
Commit: b3d763b, github.com/apache/spark/pull/2159
[SPARK-3243] Don't use stale spark-driver.* system properties
Andrew Or <[email protected]>
2014-08-27 14:46:56 -0700
Commit: c1ffa3e, github.com/apache/spark/pull/2154
Spark-3213 Fixes issue with spark-ec2 not detecting slaves created with "Launch More like this"
Vida Ha <[email protected]>
2014-08-27 14:26:06 -0700
Commit: 3cb4e17, github.com/apache/spark/pull/2163
[SPARK-3138][SQL] sqlContext.parquetFile should be able to take a single file as parameter
chutium <[email protected]>
2014-08-27 13:13:04 -0700
Commit: 90f8f3e, github.com/apache/spark/pull/2044
[SPARK-3197] [SQL] Reduce the Expression tree object creations for aggregation function (min/max)
Cheng Hao <[email protected]>
2014-08-27 12:50:47 -0700
Commit: 4c7f082, github.com/apache/spark/pull/2113
[SPARK-3118][SQL]add "SHOW TBLPROPERTIES tblname;" and "SHOW COLUMNS (FROM|IN) table_name [(FROM|IN) db_name]" support
u0jing <[email protected]>
2014-08-27 12:47:14 -0700
Commit: 19cda07, github.com/apache/spark/pull/2034
SPARK-3259 - User data should be given to the master
Allan Douglas R. de Oliveira <[email protected]>
2014-08-27 12:43:22 -0700
Commit: 0c94a5b, github.com/apache/spark/pull/2162
[SPARK-2608][Core] Fixed command line option passing issue over Mesos via SPARK_EXECUTOR_OPTS
Cheng Lian <[email protected]>
2014-08-27 12:39:21 -0700
Commit: 935bffe, github.com/apache/spark/pull/2161
[SPARK-3239] [PySpark] randomize the dirs for each process
Davies Liu <[email protected]>
2014-08-27 10:40:35 -0700
Commit: 092121e, github.com/apache/spark/pull/2152
[SPARK-3170][CORE][BUG]:RDD info loss in "StorageTab" and "ExecutorTab"
uncleGen <[email protected]>
2014-08-27 10:32:13 -0700
Commit: 8f8e2a4, github.com/apache/spark/pull/2131
[SPARK-3154][STREAMING] Make FlumePollingInputDStream shutdown cleaner.
Hari Shreedharan <[email protected]>
2014-08-27 02:39:02 -0700
Commit: 1d468df, github.com/apache/spark/pull/2065
[SPARK-3227] [mllib] Added migration guide for v1.0 to v1.1
Joseph K. Bradley <[email protected]>
2014-08-27 01:45:59 -0700
Commit: 7286d57, github.com/apache/spark/pull/2146
[SPARK-2830][MLLIB] doc update for 1.1
Xiangrui Meng <[email protected]>
2014-08-27 01:19:48 -0700
Commit: 7401247, github.com/apache/spark/pull/2151
[SPARK-3237][SQL] Fix parquet filters with UDFs
Michael Armbrust <[email protected]>
2014-08-27 00:59:23 -0700
Commit: ca01de1, github.com/apache/spark/pull/2153
[SPARK-3139] Made ContextCleaner to not block on shuffles
Tathagata Das <[email protected]>
2014-08-27 00:13:38 -0700
Commit: 5cf1e44, github.com/apache/spark/pull/2143
HOTFIX: Minor typo in conf template
Patrick Wendell <[email protected]>
2014-08-26 23:40:50 -0700
Commit: 6f82a4b
[SPARK-3167] Handle special driver configs in Windows (Branch 1.1)
Andrew Or <[email protected]>
2014-08-26 23:06:11 -0700
Commit: e7672f1, github.com/apache/spark/pull/2156
[SPARK-3224] FetchFailed reduce stages should only show up once in failed stages (in UI)
Reynold Xin <[email protected]>, Kay Ousterhout <[email protected]>
2014-08-26 21:59:48 -0700
Commit: 2381e90, github.com/apache/spark/pull/2127
Fix unclosed HTML tag in Yarn docs.
Josh Rosen <[email protected]>
2014-08-26 18:55:00 -0700
Commit: 7726e56
[SPARK-3036][SPARK-3037][SQL] Add MapType/ArrayType containing null value support to Parquet.
Takuya UESHIN <[email protected]>
2014-08-26 18:28:41 -0700
Commit: 8b5af6f, github.com/apache/spark/pull/2032
[Docs] Run tests like in contributing guide
nchammas <[email protected]>
2014-08-26 17:50:04 -0700
Commit: 0d97233, github.com/apache/spark/pull/2149
[SPARK-2964] [SQL] Remove duplicated code from spark-sql and start-thriftserver.sh
Cheng Lian <[email protected]>, Kousuke Saruta <[email protected]>
2014-08-26 17:33:40 -0700
Commit: c0e1f99, github.com/apache/spark/pull/1886
[SPARK-3194][SQL] Add AttributeSet to fix bugs with invalid comparisons of AttributeReferences
Michael Armbrust <[email protected]>
2014-08-26 16:29:14 -0700
Commit: a308a16, github.com/apache/spark/pull/2109
[SPARK-2839][MLlib] Stats Toolkit documentation updated
Burak <[email protected]>
2014-08-26 15:18:42 -0700
Commit: 2715eb7, github.com/apache/spark/pull/2130
[SPARK-3226][MLLIB] doc update for native libraries
Xiangrui Meng <[email protected]>
2014-08-26 15:12:27 -0700
Commit: 5ff9000, github.com/apache/spark/pull/2128
[SPARK-3063][SQL] ExistingRdd should convert Map to catalyst Map.
Takuya UESHIN <[email protected]>