forked from apache/spark
-
Notifications
You must be signed in to change notification settings - Fork 11
/
CHANGES.txt
7338 lines (5868 loc) · 272 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.3.1
[SQL] Use path.makeQualified in newParquet.
Yin Huai <yhuai@databricks.com>
2015-04-04 23:26:10 +0800
Commit: eb57d4f, github.com/apache/spark/pull/5353
[SPARK-6700] disable flaky test
Davies Liu <davies@databricks.com>
2015-04-03 15:22:21 -0700
Commit: 3366af6, github.com/apache/spark/pull/5356
[SPARK-6688] [core] Always use resolved URIs in EventLoggingListener.
Marcelo Vanzin <vanzin@cloudera.com>
2015-04-03 11:54:31 -0700
Commit: f17a2fe, github.com/apache/spark/pull/5340
[SPARK-6575][SQL] Converted Parquet Metastore tables no longer cache metadata
Yin Huai <yhuai@databricks.com>
2015-04-03 14:40:36 +0800
Commit: 0c1b78b, github.com/apache/spark/pull/5339
[SPARK-6621][Core] Fix the bug that calling EventLoop.stop in EventLoop.onReceive/onError/onStart doesn't call onStop
zsxwing <zsxwing@gmail.com>
2015-04-02 22:54:30 -0700
Commit: ac705aa, github.com/apache/spark/pull/5280
[SPARK-6345][STREAMING][MLLIB] Fix for training with prediction
freeman <the.freeman.lab@gmail.com>
2015-04-02 21:37:44 -0700
Commit: d21f779, github.com/apache/spark/pull/5037
[CORE] The descriptionof jobHistory config should be spark.history.fs.logDirectory
KaiXinXiaoLei <huleilei1@huawei.com>
2015-04-02 20:24:31 -0700
Commit: 17ab6b0, github.com/apache/spark/pull/5332
[SPARK-6575][SQL] Converted Parquet Metastore tables no longer cache metadata
Yin Huai <yhuai@databricks.com>
2015-04-02 20:23:08 -0700
Commit: 0c1c0fb, github.com/apache/spark/pull/5339
[SPARK-6650] [core] Stop ExecutorAllocationManager when context stops.
Marcelo Vanzin <vanzin@cloudera.com>
2015-04-02 19:48:55 -0700
Commit: 0ef46b2, github.com/apache/spark/pull/5311
[SPARK-6686][SQL] Use resolved output instead of names for toDF rename
Michael Armbrust <michael@databricks.com>
2015-04-02 18:30:55 -0700
Commit: 2927af1, github.com/apache/spark/pull/5337
[SPARK-6672][SQL] convert row to catalyst in createDataFrame(RDD[Row], ...)
Xiangrui Meng <meng@databricks.com>
2015-04-02 17:57:01 +0800
Commit: c2694bb, github.com/apache/spark/pull/5329
[SPARK-6618][SPARK-6669][SQL] Lock Hive metastore client correctly.
Yin Huai <yhuai@databricks.com>, Michael Armbrust <michael@databricks.com>
2015-04-02 16:46:50 -0700
Commit: e6ee95c, github.com/apache/spark/pull/5333
[Minor] [SQL] Follow-up of PR #5210
Cheng Lian <lian@databricks.com>
2015-04-02 16:15:34 -0700
Commit: 4f1fe3f, github.com/apache/spark/pull/5219
[SPARK-6655][SQL] We need to read the schema of a data source table stored in spark.sql.sources.schema property
Yin Huai <yhuai@databricks.com>
2015-04-02 16:02:31 -0700
Commit: aecec07, github.com/apache/spark/pull/5313
[SQL] Throw UnsupportedOperationException instead of NotImplementedError
Michael Armbrust <michael@databricks.com>
2015-04-02 16:01:03 -0700
Commit: 78ba245, github.com/apache/spark/pull/5315
SPARK-6414: Spark driver failed with NPE on job cancelation
Hung Lin <hung.lin@gmail.com>
2015-04-02 14:01:43 -0700
Commit: 58e2b3f, github.com/apache/spark/pull/5124
[SPARK-6079] Use index to speed up StatusTracker.getJobIdsForGroup()
Josh Rosen <joshrosen@databricks.com>
2015-03-25 17:40:00 -0700
Commit: a6664dc, github.com/apache/spark/pull/4830
[SPARK-6667] [PySpark] remove setReuseAddress
Davies Liu <davies@databricks.com>
2015-04-02 12:18:33 -0700
Commit: ee2bd70, github.com/apache/spark/pull/5324
Revert "[SPARK-6618][SQL] HiveMetastoreCatalog.lookupRelation should use fine-grained lock"
Cheng Lian <lian@databricks.com>
2015-04-02 12:59:38 +0800
Commit: 1160cc9
[SQL] SPARK-6658: Update DataFrame documentation to refer to correct types
Michael Armbrust <michael@databricks.com>
2015-04-01 18:00:07 -0400
Commit: 223dd3f
[SPARK-6578] Small rewrite to make the logic more clear in MessageWithHeader.transferTo.
Reynold Xin <rxin@databricks.com>
2015-04-01 18:36:06 -0700
Commit: d697b76, github.com/apache/spark/pull/5319
[SPARK-6660][MLLIB] pythonToJava doesn't recognize object arrays
Xiangrui Meng <meng@databricks.com>
2015-04-01 18:17:07 -0700
Commit: 0d1e476, github.com/apache/spark/pull/5318
[SPARK-6553] [pyspark] Support functools.partial as UDF
ksonj <kson@siberie.de>
2015-04-01 17:23:57 -0700
Commit: 98f72df, github.com/apache/spark/pull/5206
[SPARK-6642][MLLIB] use 1.2 lambda scaling and remove addImplicit from NormalEquation
Xiangrui Meng <meng@databricks.com>
2015-04-01 16:47:18 -0700
Commit: bc04fa2, github.com/apache/spark/pull/5314
[SPARK-6578] [core] Fix thread-safety issue in outbound path of network library.
Marcelo Vanzin <vanzin@cloudera.com>
2015-04-01 16:06:11 -0700
Commit: 1c31ebd, github.com/apache/spark/pull/5234
[SPARK-6657] [Python] [Docs] fixed python doc build warnings
Joseph K. Bradley <joseph@databricks.com>
2015-04-01 15:15:47 -0700
Commit: e347a7a, github.com/apache/spark/pull/5317
[SPARK-6651][MLLIB] delegate dense vector arithmetics to the underlying numpy array
Xiangrui Meng <meng@databricks.com>
2015-04-01 13:29:04 -0700
Commit: f50d95a, github.com/apache/spark/pull/5312
SPARK-6626 [DOCS]: Corrected Scala:TwitterUtils parameters
jayson <jayson@ziprecruiter.com>
2015-04-01 11:12:55 +0100
Commit: 7d029cb, github.com/apache/spark/pull/5295
[Doc] Improve Python DataFrame documentation
Reynold Xin <rxin@databricks.com>
2015-03-31 18:31:36 -0700
Commit: e527b35, github.com/apache/spark/pull/5287
[SPARK-6614] OutputCommitCoordinator should clear authorized committer only after authorized committer fails, not after any failure
Josh Rosen <joshrosen@databricks.com>
2015-03-31 16:18:39 -0700
Commit: c4c982a, github.com/apache/spark/pull/5276
[SPARK-6633][SQL] Should be "Contains" instead of "EndsWith" when constructing sources.StringContains
Liang-Chi Hsieh <viirya@gmail.com>
2015-03-31 13:18:07 -0700
Commit: d851646, github.com/apache/spark/pull/5299
[SPARK-5371][SQL] Propagate types after function conversion, before futher resolution
Michael Armbrust <michael@databricks.com>
2015-03-31 11:34:29 -0700
Commit: 5a957fe, github.com/apache/spark/pull/5278
[SPARK-6145][SQL] fix ORDER BY on nested fields
Michael Armbrust <michael@databricks.com>
2015-03-31 11:23:18 -0700
Commit: 045228f, github.com/apache/spark/pull/5189
[SPARK-6575] [SQL] Adds configuration to disable schema merging while converting metastore Parquet tables
Cheng Lian <lian@databricks.com>
2015-03-31 11:21:15 -0700
Commit: 778c876, github.com/apache/spark/pull/5231
[SPARK-6555] [SQL] Overrides equals() and hashCode() for MetastoreRelation
Cheng Lian <lian@databricks.com>
2015-03-31 11:18:25 -0700
Commit: 9ebefb1, github.com/apache/spark/pull/5289
[SPARK-6618][SQL] HiveMetastoreCatalog.lookupRelation should use fine-grained lock
Yin Huai <yhuai@databricks.com>
2015-03-31 16:28:40 +0800
Commit: fd600ce, github.com/apache/spark/pull/5281
[SPARK-6623][SQL] Alias DataFrame.na.drop and DataFrame.na.fill in Python.
Reynold Xin <rxin@databricks.com>
2015-03-31 00:25:23 -0700
Commit: cf651a4, github.com/apache/spark/pull/5284
[SPARK-6625][SQL] Add common string filters to data sources.
Reynold Xin <rxin@databricks.com>
2015-03-31 00:19:51 -0700
Commit: a97d4e6, github.com/apache/spark/pull/5285
[SPARK-6119][SQL] DataFrame support for missing data handling
Reynold Xin <rxin@databricks.com>
2015-03-30 20:47:10 -0700
Commit: 67c885e, github.com/apache/spark/pull/5274
[SPARK-6369] [SQL] Uses commit coordinator to help committing Hive and Parquet tables
Cheng Lian <lian@databricks.com>
2015-03-31 07:48:37 +0800
Commit: fedbfc7, github.com/apache/spark/pull/5139
[SPARK-6603] [PySpark] [SQL] add SQLContext.udf and deprecate inferSchema() and applySchema
Davies Liu <davies@databricks.com>
2015-03-30 15:47:00 -0700
Commit: 30e7c63, github.com/apache/spark/pull/5273
[SPARK-6592][SQL] fix filter for scaladoc to generate API doc for Row class under catalyst dir
CodingCat <zhunansjtu@gmail.com>
2015-03-30 11:54:44 -0700
Commit: f9d4efa, github.com/apache/spark/pull/5252
[SPARK-6571][MLLIB] use wrapper in MatrixFactorizationModel.load
Xiangrui Meng <meng@databricks.com>
2015-03-28 15:08:05 -0700
Commit: 93a7166, github.com/apache/spark/pull/5243
[SPARK-6595][SQL] MetastoreRelation should be a MultiInstanceRelation
Michael Armbrust <michael@databricks.com>
2015-03-30 22:24:12 +0800
Commit: c411530, github.com/apache/spark/pull/5251
[SPARK-6558] Utils.getCurrentUserName returns the full principal name instead of login name
Thomas Graves <tgraves@apache.org>
2015-03-29 12:43:30 +0100
Commit: f8132de, github.com/apache/spark/pull/5229
[SPARK-5750][SPARK-3441][SPARK-5836][CORE] Added documentation explaining shuffle
Ilya Ganelin <ilya.ganelin@capitalone.com>, Ilya Ganelin <ilganeli@gmail.com>
2015-03-30 11:52:02 +0100
Commit: 1c59a4b, github.com/apache/spark/pull/5074
[spark-sql] a better exception message than "scala.MatchError" for unsupported types in Schema creation
Eran Medan <ehrann.mehdan@gmail.com>
2015-03-30 00:02:52 -0700
Commit: 4859c40, github.com/apache/spark/pull/5235
[HOTFIX] Build break due to NoRelation cherry-pick.
Reynold Xin <rxin@databricks.com>
2015-03-29 12:07:28 -0700
Commit: 6181366
[DOC] Improvements to Python docs.
Reynold Xin <rxin@databricks.com>
2015-03-28 23:59:27 -0700
Commit: 3db0844, github.com/apache/spark/pull/5238
[SPARK-6538][SQL] Add missing nullable Metastore fields when merging a Parquet schema
Adam Budde <budde@amazon.com>
2015-03-28 09:14:09 +0800
Commit: 5e04f45, github.com/apache/spark/pull/5214
[SPARK-6564][SQL] SQLContext.emptyDataFrame should contain 0 row, not 1 row
Reynold Xin <rxin@databricks.com>
2015-03-27 14:56:57 -0700
Commit: 7006858, github.com/apache/spark/pull/5226
[SPARK-6544][build] Increment Avro version from 1.7.6 to 1.7.7
Dean Chen <deanchen5@gmail.com>
2015-03-27 14:32:51 +0000
Commit: fefd49f, github.com/apache/spark/pull/5193
[SPARK-6574] [PySpark] fix sql example
Davies Liu <davies@databricks.com>
2015-03-27 11:42:26 -0700
Commit: b902a95, github.com/apache/spark/pull/5230
[SPARK-6550][SQL] Use analyzed plan in DataFrame
Michael Armbrust <michael@databricks.com>
2015-03-27 11:40:00 -0700
Commit: bc75189, github.com/apache/spark/pull/5217
[SPARK-6341][mllib] Upgrade breeze from 0.11.1 to 0.11.2
Yu ISHIKAWA <yuu.ishikawa@gmail.com>
2015-03-27 00:15:02 -0700
Commit: b318858, github.com/apache/spark/pull/5222
[DOCS][SQL] Fix JDBC example
Michael Armbrust <michael@databricks.com>
2015-03-26 14:51:46 -0700
Commit: 54d92b5, github.com/apache/spark/pull/5192
[SPARK-6554] [SQL] Don't push down predicates which reference partition column(s)
Cheng Lian <lian@databricks.com>
2015-03-26 13:11:37 -0700
Commit: 3d54578, github.com/apache/spark/pull/5210
[SPARK-6117] [SQL] Improvements to DataFrame.describe()
Reynold Xin <rxin@databricks.com>
2015-03-26 12:26:13 -0700
Commit: 28e3a1e, github.com/apache/spark/pull/5201
[SPARK-6117] [SQL] add describe function to DataFrame for summary statis...
azagrebin <azagrebin@gmail.com>
2015-03-26 00:25:04 -0700
Commit: 84735c3, github.com/apache/spark/pull/5073
SPARK-6480 [CORE] histogram() bucket function is wrong in some simple edge cases
Sean Owen <sowen@cloudera.com>
2015-03-26 15:00:23 +0000
Commit: aa2d157, github.com/apache/spark/pull/5148
[SPARK-6491] Spark will put the current working dir to the CLASSPATH
guliangliang <guliangliang@qiyi.com>
2015-03-26 13:28:56 +0000
Commit: 5b5f0e2, github.com/apache/spark/pull/5156
[SQL][SPARK-6471]: Metastore schema should only be a subset of parquet schema to support dropping of columns using replace columns
Yash Datta <Yash.Datta@guavus.com>
2015-03-26 21:13:38 +0800
Commit: 836c921, github.com/apache/spark/pull/5141
[SPARK-6465][SQL] Fix serialization of GenericRowWithSchema using kryo
Michael Armbrust <michael@databricks.com>
2015-03-26 18:46:57 +0800
Commit: 8254996, github.com/apache/spark/pull/5191
[SPARK-6536] [PySpark] Column.inSet() in Python
Davies Liu <davies@databricks.com>
2015-03-26 00:01:24 -0700
Commit: 0ba7599, github.com/apache/spark/pull/5190
[SPARK-6463][SQL] AttributeSet.equal should compare size
sisihj <jun.hejun@huawei.com>, Michael Armbrust <michael@databricks.com>
2015-03-25 19:21:54 -0700
Commit: 9edb34f, github.com/apache/spark/pull/5194
[SPARK-6450] [SQL] Fixes metastore Parquet table conversion
Cheng Lian <lian@databricks.com>
2015-03-25 17:40:19 -0700
Commit: 0cd4748, github.com/apache/spark/pull/5183
[SPARK-6409][SQL] It is not necessary that avoid old inteface of hive, because this will make some UDAF can not work.
DoingDone9 <799203320@qq.com>
2015-03-25 11:11:52 -0700
Commit: 4efa6c5, github.com/apache/spark/pull/5131
SPARK-6063 MLlib doesn't pass mvn scalastyle check due to UTF chars in LDAModel.scala
Michael Griffiths <msjgriffiths@gmail.com>, Griffiths, Michael (NYC-RPM) <michael.griffiths@reprisemedia.com>
2015-02-28 14:47:39 +0000
Commit: 6791f42, github.com/apache/spark/pull/4815
[SPARK-6496] [MLLIB] GeneralizedLinearAlgorithm.run(input, initialWeights) should initialize numFeatures
Yanbo Liang <ybliang8@gmail.com>
2015-03-25 17:05:56 +0000
Commit: 2be4255, github.com/apache/spark/pull/5167
[DOCUMENTATION]Fixed Missing Type Import in Documentation
Bill Chambers <wchambers@ischool.berkeley.edu>, anabranch <wac.chambers@gmail.com>
2015-03-24 22:24:35 -0700
Commit: 8e4e2e3, github.com/apache/spark/pull/5179
[SPARK-6469] Improving documentation on YARN local directories usage
Christophe Préaud <christophe.preaud@kelkoo.com>
2015-03-24 17:05:49 -0700
Commit: 6af9408, github.com/apache/spark/pull/5165
[SPARK-3570] Include time to open files in shuffle write time.
Kay Ousterhout <kayousterhout@gmail.com>
2015-03-24 16:29:40 -0700
Commit: e4db5a3, github.com/apache/spark/pull/4550
[SPARK-6088] Correct how tasks that get remote results are shown in UI.
Kay Ousterhout <kayousterhout@gmail.com>
2015-03-24 16:26:43 -0700
Commit: de8b2d4, github.com/apache/spark/pull/4839
[SPARK-6428][SQL] Added explicit types for all public methods in catalyst
Reynold Xin <rxin@databricks.com>
2015-03-24 16:03:55 -0700
Commit: 586e0d9, github.com/apache/spark/pull/5162
[SPARK-6209] Clean up connections in ExecutorClassLoader after failing to load classes (master branch PR)
Josh Rosen <joshrosen@databricks.com>
2015-03-24 14:38:20 -0700
Commit: dcf56aa, github.com/apache/spark/pull/4944
[SPARK-6458][SQL] Better error messages for invalid data sources
Michael Armbrust <michael@databricks.com>
2015-03-24 14:10:56 -0700
Commit: f48c16d, github.com/apache/spark/pull/5158
[SPARK-6376][SQL] Avoid eliminating subqueries until optimization
Michael Armbrust <michael@databricks.com>
2015-03-24 14:08:20 -0700
Commit: df671bc, github.com/apache/spark/pull/5160
[SPARK-6375][SQL] Fix formatting of error messages.
Michael Armbrust <michael@databricks.com>
2015-03-24 13:22:46 -0700
Commit: 92bf888, github.com/apache/spark/pull/5155
Revert "[SPARK-5680][SQL] Sum function on all null values, should return zero"
Michael Armbrust <michael@databricks.com>
2015-03-24 12:32:25 -0700
Commit: 930b667
[SPARK-6054][SQL] Fix transformations of TreeNodes that hold StructTypes
Michael Armbrust <michael@databricks.com>
2015-03-24 12:28:01 -0700
Commit: c699e2b, github.com/apache/spark/pull/5157
[SPARK-6437][SQL] Use completion iterator to close external sorter
Michael Armbrust <michael@databricks.com>
2015-03-24 12:10:30 -0700
Commit: c0101d3, github.com/apache/spark/pull/5161
[SPARK-6459][SQL] Warn when constructing trivially true equals predicate
Michael Armbrust <michael@databricks.com>
2015-03-24 12:09:02 -0700
Commit: f0141ca, github.com/apache/spark/pull/5163
[SPARK-5955][MLLIB] add checkpointInterval to ALS
Xiangrui Meng <meng@databricks.com>
2015-03-20 15:02:57 -0400
Commit: bc92a2e, github.com/apache/spark/pull/5076
[ML][docs][minor] Define LabeledDocument/Document classes in CV example
Peter Rudenko <petro.rudenko@gmail.com>
2015-03-24 16:33:38 +0000
Commit: 4ff5771, github.com/apache/spark/pull/5135
[SPARK-5559] [Streaming] [Test] Remove oppotunity we met flakiness when running FlumeStreamSuite
Kousuke Saruta <sarutak@oss.nttdata.co.jp>
2015-03-24 16:13:25 +0000
Commit: 8722369, github.com/apache/spark/pull/4337
Update the command to use IPython notebook
Cong Yue <yuecong1104@gmail.com>
2015-03-24 12:56:13 +0000
Commit: e545143, github.com/apache/spark/pull/5111
[SPARK-6452] [SQL] Checks for missing attributes and unresolved operator for all types of operator
Cheng Lian <lian@databricks.com>
2015-03-24 01:12:11 -0700
Commit: 6f10142, github.com/apache/spark/pull/5129
[SPARK-6124] Support jdbc connection properties in OPTIONS part of the query
Volodymyr Lyubinets <vlyubin@gmail.com>
2015-03-23 17:00:27 -0700
Commit: 04b2078, github.com/apache/spark/pull/4859
[SPARK-6397][SQL] Check the missingInput simply
Yadong Qi <qiyadong2010@gmail.com>
2015-03-23 18:16:49 +0800
Commit: a29f493, github.com/apache/spark/pull/5132
[SPARK-4985] [SQL] parquet support for date type
Daoyuan Wang <daoyuan.wang@intel.com>
2015-03-23 11:46:16 +0800
Commit: 60b9b96, github.com/apache/spark/pull/3822
[SPARK-6337][Documentation, SQL]Spark 1.3 doc fixes
vinodkc <vinod.kc.in@gmail.com>
2015-03-22 20:00:08 +0000
Commit: 857e8a6, github.com/apache/spark/pull/5112
SPARK-6454 [DOCS] Fix links to pyspark api
Kamil Smuga <smugakamil@gmail.com>, stderr <smugakamil@gmail.com>
2015-03-22 15:56:25 +0000
Commit: 3ba295f, github.com/apache/spark/pull/5120
[SPARK-6408] [SQL] Fix JDBCRDD filtering string literals
ypcat <ypcat6@gmail.com>, Pei-Lun Lee <pllee@appier.com>
2015-03-22 15:49:13 +0800
Commit: e60fbf6, github.com/apache/spark/pull/5087
[SPARK-6428][SQL] Added explicit type for all public methods for Hive module
Reynold Xin <rxin@databricks.com>
2015-03-21 14:30:04 -0700
Commit: 0021d22, github.com/apache/spark/pull/5108
[SPARK-6428][SQL] Added explicit type for all public methods in sql/core
Reynold Xin <rxin@databricks.com>
2015-03-20 15:47:07 -0700
Commit: c964588, github.com/apache/spark/pull/5104
[SPARK-6250][SPARK-6146][SPARK-5911][SQL] Types are now reserved words in DDL parser.
Yin Huai <yhuai@databricks.com>
2015-03-21 13:27:53 -0700
Commit: 102daaf, github.com/apache/spark/pull/5078
[SPARK-5680][SQL] Sum function on all null values, should return zero
Venkata Ramana G <ramana.gollamudihuawei.com>, Venkata Ramana Gollamudi <ramana.gollamudi@huawei.com>
2015-03-21 13:24:24 -0700
Commit: 93975a3, github.com/apache/spark/pull/4466
[SPARK-5320][SQL]Add statistics method at NoRelation (override super).
x1- <viva008@gmail.com>
2015-03-21 13:22:34 -0700
Commit: cba6842, github.com/apache/spark/pull/5105
[SPARK-5821] [SQL] JSON CTAS command should throw error message when delete path failure
Yanbo Liang <ybliang8@gmail.com>, Yanbo Liang <yanbohappy@gmail.com>
2015-03-21 11:23:28 +0800
Commit: 8de90c7, github.com/apache/spark/pull/4610
[SPARK-6315] [SQL] Also tries the case class string parser while reading Parquet schema
Cheng Lian <lian@databricks.com>
2015-03-21 11:18:45 +0800
Commit: b75943f, github.com/apache/spark/pull/5034
[SPARK-5821] [SQL] ParquetRelation2 CTAS should check if delete is successful
Yanbo Liang <ybliang8@gmail.com>
2015-03-21 10:53:04 +0800
Commit: df83e21, github.com/apache/spark/pull/5107
[SPARK-6421][MLLIB] _regression_train_wrapper does not test initialWeights correctly
lewuathe <lewuathe@me.com>
2015-03-20 17:18:18 -0400
Commit: aff9f8d, github.com/apache/spark/pull/5101
[SPARK-6286][Mesos][minor] Handle missing Mesos case TASK_ERROR
Jongyoul Lee <jongyoul@gmail.com>
2015-03-20 12:24:34 +0000
Commit: db812d9, github.com/apache/spark/pull/5088
[SPARK-6222][Streaming] Dont delete checkpoint data when doing pre-batch-start checkpoint
Tathagata Das <tathagata.das1565@gmail.com>
2015-03-19 02:15:50 -0400
Commit: 03e263f, github.com/apache/spark/pull/5008
[SPARK-6325] [core,yarn] Do not change target executor count when killing executors.
Marcelo Vanzin <vanzin@cloudera.com>
2015-03-18 09:18:28 -0400
Commit: 1723f05, github.com/apache/spark/pull/5018
[SPARK-6286][minor] Handle missing Mesos case TASK_ERROR.
Iulian Dragos <jaguarul@gmail.com>
2015-03-18 09:15:33 -0400
Commit: ff0a7f4, github.com/apache/spark/pull/5000
[SPARK-6247][SQL] Fix resolution of ambiguous joins caused by new aliases
Michael Armbrust <michael@databricks.com>
2015-03-17 19:47:51 -0700
Commit: ba8352c, github.com/apache/spark/pull/5062
[SPARK-6383][SQL]Fixed compiler and errors in Dataframe examples
Tijo Thomas <tijoparacka@gmail.com>
2015-03-17 18:50:19 -0700
Commit: cee6d08, github.com/apache/spark/pull/5068
[SPARK-6366][SQL] In Python API, the default save mode for save and saveAsTable should be "error" instead of "append".
Yin Huai <yhuai@databricks.com>
2015-03-18 09:41:06 +0800
Commit: 3ea38bc, github.com/apache/spark/pull/5053
[SPARK-6330] [SQL] Add a test case for SPARK-6330
Pei-Lun Lee <pllee@appier.com>
2015-03-18 08:34:46 +0800
Commit: 9d88f0c, github.com/apache/spark/pull/5039
[SPARK-6336] LBFGS should document what convergenceTol means
lewuathe <lewuathe@me.com>
2015-03-17 12:11:57 -0700
Commit: 476c4e1, github.com/apache/spark/pull/5033
[SPARK-6365] jetty-security also needed for SPARK_PREPEND_CLASSES to work
Imran Rashid <irashid@cloudera.com>
2015-03-17 12:03:54 -0500
Commit: ac0e7cc, github.com/apache/spark/pull/5071
[SPARK-6313] Add config option to disable file locks/fetchFile cache to ...
nemccarthy <nathan@nemccarthy.me>
2015-03-17 09:33:11 -0700
Commit: febb123, github.com/apache/spark/pull/5036
[SPARK-3266] Use intermediate abstract classes to fix type erasure issues in Java APIs
Josh Rosen <joshrosen@databricks.com>
2015-03-17 09:18:57 -0700
Commit: 29e39e1, github.com/apache/spark/pull/5050
[SPARK-6331] Load new master URL if present when recovering streaming context from checkpoint
Tathagata Das <tathagata.das1565@gmail.com>
2015-03-17 05:31:27 -0700
Commit: 95f8d1c, github.com/apache/spark/pull/5024
[SQL][docs][minor] Fixed sample code in SQLContext scaladoc
Lomig Mégard <lomig.megard@gmail.com>
2015-03-16 23:52:42 -0700
Commit: 426816b, github.com/apache/spark/pull/5051
[SPARK-6299][CORE] ClassNotFoundException in standalone mode when running groupByKey with class defined in REPL
Kevin (Sangwoo) Kim <sangwookim.me@gmail.com>
2015-03-16 23:49:23 -0700
Commit: 5c16ced, github.com/apache/spark/pull/5046
[SPARK-6077] Remove streaming tab while stopping StreamingContext
lisurprise <zhichao.li@intel.com>
2015-03-16 13:10:32 -0700
Commit: 47cce98, github.com/apache/spark/pull/4828
[SPARK-6330] Fix filesystem bug in newParquet relation
Volodymyr Lyubinets <vlyubin@gmail.com>
2015-03-16 12:13:18 -0700
Commit: 67fa6d1, github.com/apache/spark/pull/5020
SPARK-6245 [SQL] jsonRDD() of empty RDD results in exception
Sean Owen <sowen@cloudera.com>
2015-03-11 14:09:09 +0000
Commit: 684ff24, github.com/apache/spark/pull/4971
[SPARK-6300][Spark Core] sc.addFile(path) does not support the relative path.
DoingDone9 <799203320@qq.com>
2015-03-16 12:27:15 +0000
Commit: 724aab4, github.com/apache/spark/pull/4993
[SPARK-3619] Part 2. Upgrade to Mesos 0.21 to work around MESOS-1688
Jongyoul Lee <jongyoul@gmail.com>
2015-03-15 15:46:55 +0000
Commit: 43fcab0, github.com/apache/spark/pull/4361
[SPARK-6210] [SQL] use prettyString as column name in agg()
Davies Liu <davies@databricks.com>
2015-03-14 00:43:33 -0700
Commit: ad47563, github.com/apache/spark/pull/5006
[SPARK-6275][Documentation]Miss toDF() function in docs/sql-programming-guide.md
zzcclp <xm_zzc@sina.com>
2015-03-12 15:07:15 +0000
Commit: 3012781, github.com/apache/spark/pull/4977
[SPARK-6133] Make sc.stop() idempotent
Andrew Or <andrew@databricks.com>
2015-03-03 15:09:57 -0800
Commit: a08588c, github.com/apache/spark/pull/4871
[SPARK-6132][HOTFIX] ContextCleaner InterruptedException should be quiet
Andrew Or <andrew@databricks.com>
2015-03-03 20:49:45 -0800
Commit: 338bea7, github.com/apache/spark/pull/4882
[SPARK-6132] ContextCleaner race condition across SparkContexts
Andrew Or <andrew@databricks.com>
2015-03-03 13:44:05 -0800
Commit: 3cdc8a3, github.com/apache/spark/pull/4869
[SPARK-6087][CORE] Provide actionable exception if Kryo buffer is not large enough
Lev Khomich <levkhomich@gmail.com>
2015-03-10 10:55:42 +0000
Commit: 9846790, github.com/apache/spark/pull/4947
[SPARK-6036][CORE] avoid race condition between eventlogListener and akka actor system
Zhang, Liye <liye.zhang@intel.com>
2015-02-26 23:11:43 -0800
Commit: f81611d, github.com/apache/spark/pull/4785
SPARK-4044 [CORE] Thriftserver fails to start when JAVA_HOME points to JRE instead of JDK
Sean Owen <sowen@cloudera.com>
2015-03-13 17:59:31 +0000
Commit: 4aa4132, github.com/apache/spark/pull/4981
SPARK-4300 [CORE] Race condition during SparkWorker shutdown
Sean Owen <sowen@cloudera.com>
2015-02-26 14:08:56 -0800
Commit: a3493eb, github.com/apache/spark/pull/4787
[SPARK-6194] [SPARK-677] [PySpark] fix memory leak in collect()
Davies Liu <davies@databricks.com>
2015-03-09 16:24:06 -0700
Commit: 170af49, github.com/apache/spark/pull/4923
SPARK-4704 [CORE] SparkSubmitDriverBootstrap doesn't flush output
Sean Owen <sowen@cloudera.com>
2015-02-26 12:56:54 -0800
Commit: dbee7e1, github.com/apache/spark/pull/4788
[SPARK-6278][MLLIB] Mention the change of objective in linear regression
Xiangrui Meng <meng@databricks.com>
2015-03-13 10:27:28 -0700
Commit: 214f681, github.com/apache/spark/pull/4978
[SPARK-5310] [SQL] [DOC] Parquet section for the SQL programming guide
Cheng Lian <lian@databricks.com>
2015-03-13 21:34:50 +0800
Commit: dc287f3, github.com/apache/spark/pull/5001
[mllib] [python] Add LassoModel to __all__ in regression.py
Joseph K. Bradley <joseph@databricks.com>
2015-03-12 16:46:29 -0700
Commit: 23069bd, github.com/apache/spark/pull/4970
[SPARK-6294] fix hang when call take() in JVM on PythonRDD
Davies Liu <davies@databricks.com>
2015-03-12 01:34:38 -0700
Commit: 850e694, github.com/apache/spark/pull/4987
[SPARK-6296] [SQL] Added equals to Column
Volodymyr Lyubinets <vlyubin@gmail.com>
2015-03-12 00:55:26 -0700
Commit: d9e141c, github.com/apache/spark/pull/4988
[SPARK-6128][Streaming][Documentation] Updates to Spark Streaming Programming Guide
Tathagata Das <tathagata.das1565@gmail.com>
2015-03-11 18:48:21 -0700
Commit: bdc4682, github.com/apache/spark/pull/4956
[SPARK-6274][Streaming][Examples] Added examples streaming + sql examples.
Tathagata Das <tathagata.das1565@gmail.com>
2015-03-11 11:19:51 -0700
Commit: ac61466, github.com/apache/spark/pull/4975
[SPARK-5183][SQL] Update SQL Docs with JDBC and Migration Guide
Michael Armbrust <michael@databricks.com>
2015-03-10 18:13:09 -0700
Commit: edbcb6f, github.com/apache/spark/pull/4958
Minor doc: Remove the extra blank line in data types javadoc.
Reynold Xin <rxin@databricks.com>
2015-03-10 17:25:04 -0700
Commit: 7295192, github.com/apache/spark/pull/4955
[SPARK-5310][Doc] Update SQL Programming Guide to include DataFrames.
Reynold Xin <rxin@databricks.com>
2015-03-09 16:16:16 -0700
Commit: bc53d3d, github.com/apache/spark/pull/4954
[Docs] Replace references to SchemaRDD with DataFrame
Reynold Xin <rxin@databricks.com>
2015-03-09 13:29:19 -0700
Commit: 5e58f76, github.com/apache/spark/pull/4952
Preparing development version 1.3.1-SNAPSHOT
Patrick Wendell <patrick@databricks.com>
2015-03-05 23:02:08 +0000
Commit: c152f9a
Release 1.3.0
[SQL] Make Strategies a public developer API
Michael Armbrust <michael@databricks.com>
2015-03-05 14:50:25 -0800
Commit: 556e0de, github.com/apache/spark/pull/4920
[SPARK-6163][SQL] jsonFile should be backed by the data source API
Yin Huai <yhuai@databricks.com>
2015-03-05 14:49:44 -0800
Commit: 083fed5, github.com/apache/spark/pull/4896
[SPARK-6145][SQL] fix ORDER BY on nested fields
Wenchen Fan <cloud0fan@outlook.com>, Michael Armbrust <michael@databricks.com>
2015-03-05 14:49:01 -0800
Commit: e358f55, github.com/apache/spark/pull/4918
[SPARK-6175] Fix standalone executor log links when ephemeral ports or SPARK_PUBLIC_DNS are used
Josh Rosen <joshrosen@databricks.com>
2015-03-05 12:04:00 -0800
Commit: 988b498, github.com/apache/spark/pull/4903
SPARK-6182 [BUILD] spark-parent pom needs to be published for both 2.10 and 2.11
Sean Owen <sowen@cloudera.com>
2015-03-05 11:31:48 -0800
Commit: ae315d2, github.com/apache/spark/pull/4912
Revert "[SPARK-6153] [SQL] promote guava dep for hive-thriftserver"
Cheng Lian <lian@databricks.com>
2015-03-05 17:58:18 +0800
Commit: f8205d3
[SPARK-6153] [SQL] promote guava dep for hive-thriftserver
Daoyuan Wang <daoyuan.wang@intel.com>
2015-03-05 16:35:17 +0800
Commit: b92d925, github.com/apache/spark/pull/4884
Updating CHANGES file
Patrick Wendell <patrick@databricks.com>
2015-03-04 21:19:49 -0800
Commit: 87eac3c
SPARK-5143 [BUILD] [WIP] spark-network-yarn 2.11 depends on spark-network-shuffle 2.10
Sean Owen <sowen@cloudera.com>
2015-03-04 21:00:51 -0800
Commit: f509159, github.com/apache/spark/pull/4876
[SPARK-6149] [SQL] [Build] Excludes Guava 15 referenced by jackson-module-scala_2.10
Cheng Lian <lian@databricks.com>
2015-03-04 20:52:58 -0800
Commit: a0aa24a, github.com/apache/spark/pull/4890
[SPARK-6144] [core] Fix addFile when source files are on "hdfs:"
Marcelo Vanzin <vanzin@cloudera.com>, trystanleftwich <trystan@atscale.com>
2015-03-04 12:58:39 -0800
Commit: 3fc74f4, github.com/apache/spark/pull/4894
[SPARK-6134][SQL] Fix wrong datatype for casting FloatType and default LongType value in defaultPrimitive
Liang-Chi Hsieh <viirya@gmail.com>
2015-03-04 20:23:43 +0800
Commit: bfa4e31, github.com/apache/spark/pull/4870
[SPARK-6136] [SQL] Removed JDBC integration tests which depends on docker-client
Cheng Lian <lian@databricks.com>
2015-03-04 19:39:02 +0800
Commit: 035243d, github.com/apache/spark/pull/4872
[SPARK-6141][MLlib] Upgrade Breeze from 0.10 to 0.11 to fix convergence bug
Xiangrui Meng <meng@databricks.com>, DB Tsai <dbtsai@alpinenow.com>, DB Tsai <dbtsai@dbtsai.com>
2015-03-03 23:52:02 -0800
Commit: 9f24977, github.com/apache/spark/pull/4879
[SPARK-5949] HighlyCompressedMapStatus needs more classes registered w/ kryo
Imran Rashid <irashid@cloudera.com>
2015-03-03 15:33:19 -0800
Commit: 9a0b75c, github.com/apache/spark/pull/4877
SPARK-1911 [DOCS] Warn users if their assembly jars are not built with Java 6
Sean Owen <sowen@cloudera.com>
2015-03-03 13:40:11 -0800
Commit: 8446ad0, github.com/apache/spark/pull/4874
Revert "[SPARK-5423][Core] Cleanup resources in DiskMapIterator.finalize to ensure deleting the temp file"
Andrew Or <andrew@databricks.com>
2015-03-03 13:04:15 -0800
Commit: ee4929d
Adding CHANGES.txt for Spark 1.3
Patrick Wendell <patrick@databricks.com>
2015-03-03 02:19:19 -0800
Commit: ce7158c
BUILD: Minor tweaks to internal build scripts
Patrick Wendell <patrick@databricks.com>
2015-03-03 00:38:12 -0800
Commit: ae60eb9
HOTFIX: Bump HBase version in MapR profiles.
Patrick Wendell <patrick@databricks.com>
2015-03-03 01:38:07 -0800
Commit: 1aa8461
[SPARK-5537][MLlib][Docs] Add user guide for multinomial logistic regression
DB Tsai <dbtsai@alpinenow.com>
2015-03-02 22:37:12 -0800
Commit: 841d2a2, github.com/apache/spark/pull/4866
[SPARK-6120] [mllib] Warnings about memory in tree, ensemble model save
Joseph K. Bradley <joseph@databricks.com>
2015-03-02 22:33:51 -0800
Commit: 81648a7, github.com/apache/spark/pull/4864
[SPARK-6097][MLLIB] Support tree model save/load in PySpark/MLlib
Xiangrui Meng <meng@databricks.com>
2015-03-02 22:27:01 -0800
Commit: 62c53be, github.com/apache/spark/pull/4854
[SPARK-5310][SQL] Fixes to Docs and Datasources API
Reynold Xin <rxin@databricks.com>, Michael Armbrust <michael@databricks.com>
2015-03-02 22:14:08 -0800
Commit: 4e6e008, github.com/apache/spark/pull/4868
[SPARK-5950][SQL]Insert array into a metastore table saved as parquet should work when using datasource api
Yin Huai <yhuai@databricks.com>
2015-03-02 19:31:55 -0800
Commit: 1b490e9, github.com/apache/spark/pull/4826
[SPARK-6127][Streaming][Docs] Add Kafka to Python api docs
Tathagata Das <tathagata.das1565@gmail.com>
2015-03-02 18:40:46 -0800
Commit: ffd0591, github.com/apache/spark/pull/4860
[SPARK-5537] Add user guide for multinomial logistic regression
Xiangrui Meng <meng@databricks.com>, DB Tsai <dbtsai@alpinenow.com>
2015-03-02 18:10:50 -0800
Commit: 11389f0, github.com/apache/spark/pull/4801
[SPARK-6121][SQL][MLLIB] simpleString for UDT
Xiangrui Meng <meng@databricks.com>
2015-03-02 17:14:34 -0800
Commit: 1b8ab57, github.com/apache/spark/pull/4858
[SPARK-6048] SparkConf should not translate deprecated configs on set
Andrew Or <andrew@databricks.com>
2015-03-02 16:36:42 -0800
Commit: ea69cf2, github.com/apache/spark/pull/4799
[SPARK-6066] Make event log format easier to parse
Andrew Or <andrew@databricks.com>
2015-03-02 16:34:32 -0800
Commit: 8100b79, github.com/apache/spark/pull/4821
[SPARK-6082] [SQL] Provides better error message for malformed rows when caching tables
Cheng Lian <lian@databricks.com>
2015-03-02 16:18:00 -0800
Commit: 866f281, github.com/apache/spark/pull/4842
[SPARK-6114][SQL] Avoid metastore conversions before plan is resolved
Michael Armbrust <michael@databricks.com>
2015-03-02 16:10:54 -0800
Commit: 3899c7c, github.com/apache/spark/pull/4855
[SPARK-6050] [yarn] Relax matching of vcore count in received containers.
Marcelo Vanzin <vanzin@cloudera.com>
2015-03-02 16:41:43 -0600
Commit: 650d1e7, github.com/apache/spark/pull/4818
[SPARK-6040][SQL] Fix the percent bug in tablesample
q00251598 <qiyadong@huawei.com>
2015-03-02 13:16:29 -0800
Commit: a83b9bb, github.com/apache/spark/pull/4789
[Minor] Fix doc typo for describing primitiveTerm effectiveness condition
Liang-Chi Hsieh <viirya@gmail.com>
2015-03-02 13:11:17 -0800
Commit: f92876a, github.com/apache/spark/pull/4762
SPARK-5390 [DOCS] Encourage users to post on Stack Overflow in Community Docs
Sean Owen <sowen@cloudera.com>
2015-03-02 21:10:08 +0000
Commit: 58e7198, github.com/apache/spark/pull/4843
[DOCS] Refactored Dataframe join comment to use correct parameter ordering
Paul Power <paul.power@peerside.com>
2015-03-02 13:08:47 -0800
Commit: 54ac243, github.com/apache/spark/pull/4847
[SPARK-6080] [PySpark] correct LogisticRegressionWithLBFGS regType parameter for pyspark
Yanbo Liang <ybliang8@gmail.com>
2015-03-02 10:17:24 -0800
Commit: 4ffaf85, github.com/apache/spark/pull/4831
[SPARK-5741][SQL] Support the path contains comma in HiveContext
q00251598 <qiyadong@huawei.com>
2015-03-02 10:13:11 -0800
Commit: f476108, github.com/apache/spark/pull/4532
[SPARK-6111] Fixed usage string in documentation.
Kenneth Myers <myerske@us.ibm.com>
2015-03-02 17:25:24 +0000
Commit: b2b7f01, github.com/apache/spark/pull/4852
[SPARK-6052][SQL]In JSON schema inference, we should always set containsNull of an ArrayType to true
Yin Huai <yhuai@databricks.com>
2015-03-02 23:18:07 +0800
Commit: a3fef2c, github.com/apache/spark/pull/4806
[SPARK-6073][SQL] Need to refresh metastore cache after append data in CreateMetastoreDataSourceAsSelect
Yin Huai <yhuai@databricks.com>
2015-03-02 22:42:18 +0800
Commit: c59871c, github.com/apache/spark/pull/4824
[Streaming][Minor]Fix some error docs in streaming examples
Saisai Shao <saisai.shao@intel.com>
2015-03-02 08:49:19 +0000
Commit: 1fe677a, github.com/apache/spark/pull/4837
[SPARK-6083] [MLLib] [DOC] Make Python API example consistent in NaiveBayes
MechCoder <manojkumarsivaraj334@gmail.com>
2015-03-01 16:28:15 -0800
Commit: 6a2fc85, github.com/apache/spark/pull/4834
[SPARK-6053][MLLIB] support save/load in PySpark's ALS
Xiangrui Meng <meng@databricks.com>
2015-03-01 16:26:57 -0800
Commit: b570d98, github.com/apache/spark/pull/4811
[SPARK-6074] [sql] Package pyspark sql bindings.
Marcelo Vanzin <vanzin@cloudera.com>
2015-03-01 11:05:10 +0000
Commit: bb16618, github.com/apache/spark/pull/4822
SPARK-5984: Fix TimSort bug causes ArrayOutOfBoundsException
Evan Yu <ehotou@gmail.com>
2015-02-28 18:55:34 -0800
Commit: 317694c, github.com/apache/spark/pull/4804
[SPARK-5775] [SQL] BugFix: GenericRow cannot be cast to SpecificMutableRow when nested data and partitioned table
Cheng Lian <lian@databricks.com>, Cheng Lian <liancheng@users.noreply.github.com>, Yin Huai <yhuai@databricks.com>
2015-02-28 21:15:43 +0800
Commit: aa39460, github.com/apache/spark/pull/4792
[SPARK-5979][SPARK-6032] Smaller safer --packages fix
Burak Yavuz <brkyvz@gmail.com>
2015-02-27 22:59:35 -0800
Commit: 5a55c96, github.com/apache/spark/pull/4802
[SPARK-6070] [yarn] Remove unneeded classes from shuffle service jar.
Marcelo Vanzin <vanzin@cloudera.com>
2015-02-27 22:44:11 -0800
Commit: 1747e0a, github.com/apache/spark/pull/4820
[SPARK-6055] [PySpark] fix incorrect __eq__ of DataType
Davies Liu <davies@databricks.com>
2015-02-27 20:07:17 -0800
Commit: 49f2187, github.com/apache/spark/pull/4808
[SPARK-5751] [SQL] Sets SPARK_HOME as SPARK_PID_DIR when running Thrift server test suites
Cheng Lian <lian@databricks.com>
2015-02-28 08:41:49 +0800
Commit: 5d19cf0, github.com/apache/spark/pull/4758
[Streaming][Minor] Remove useless type signature of Java Kafka direct stream API
Saisai Shao <saisai.shao@intel.com>
2015-02-27 13:01:42 -0800
Commit: ceebe3c, github.com/apache/spark/pull/4817
[SPARK-4587] [mllib] [docs] Fixed save,load calls in ML guide examples
Joseph K. Bradley <joseph@databricks.com>