This repository has been archived by the owner on Oct 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
CHANGES.txt
6610 lines (5287 loc) · 245 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.0
[SQL] Make Strategies a public developer API
Michael Armbrust <[email protected]>
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 <[email protected]>
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 <[email protected]>, Michael Armbrust <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
2015-03-05 17:58:18 +0800
Commit: f8205d3
[SPARK-6153] [SQL] promote guava dep for hive-thriftserver
Daoyuan Wang <[email protected]>
2015-03-05 16:35:17 +0800
Commit: b92d925, github.com/apache/spark/pull/4884
Updating CHANGES file
Patrick Wendell <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>, trystanleftwich <[email protected]>
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 <[email protected]>
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 <[email protected]>
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
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
2015-03-03 13:04:15 -0800
Commit: ee4929d
Adding CHANGES.txt for Spark 1.3
Patrick Wendell <[email protected]>
2015-03-03 02:19:19 -0800
Commit: ce7158c
BUILD: Minor tweaks to internal build scripts
Patrick Wendell <[email protected]>
2015-03-03 00:38:12 -0800
Commit: ae60eb9
HOTFIX: Bump HBase version in MapR profiles.
Patrick Wendell <[email protected]>
2015-03-03 01:38:07 -0800
Commit: 1aa8461
[SPARK-5537][MLlib][Docs] Add user guide for multinomial logistic regression
DB Tsai <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>, Michael Armbrust <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>, DB Tsai <[email protected]>
2015-03-02 18:10:50 -0800
Commit: 11389f0, github.com/apache/spark/pull/4801
[SPARK-6121][SQL][MLLIB] simpleString for UDT
Xiangrui Meng <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
2015-03-02 10:13:11 -0800
Commit: f476108, github.com/apache/spark/pull/4532
[SPARK-6111] Fixed usage string in documentation.
Kenneth Myers <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
2015-03-01 16:26:57 -0800
Commit: b570d98, github.com/apache/spark/pull/4811
[SPARK-6074] [sql] Package pyspark sql bindings.
Marcelo Vanzin <[email protected]>
2015-03-01 11:05:10 +0000
Commit: bb16618, github.com/apache/spark/pull/4822
SPARK-5984: Fix TimSort bug causes ArrayOutOfBoundsException
Evan Yu <[email protected]>
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
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
2015-02-27 13:00:36 -0800
Commit: 117e10c, github.com/apache/spark/pull/4816
[SPARK-6058][Yarn] Log the user class exception in ApplicationMaster
zsxwing <[email protected]>
2015-02-27 13:31:46 +0000
Commit: bff8088, github.com/apache/spark/pull/4813
fix spark-6033, clarify the spark.worker.cleanup behavior in standalone mode
许鹏 <[email protected]>
2015-02-26 23:05:56 -0800
Commit: b8db84c, github.com/apache/spark/pull/4803
SPARK-2168 [Spark core] Use relative URIs for the app links in the History Server.
Lukasz Jastrzebski <[email protected]>
2015-02-26 22:38:06 -0800
Commit: 485b919, github.com/apache/spark/pull/4778
[SPARK-6024][SQL] When a data source table has too many columns, it's schema cannot be stored in metastore.
Yin Huai <[email protected]>
2015-02-26 20:46:05 -0800
Commit: 6200f07, github.com/apache/spark/pull/4795
[SPARK-6037][SQL] Avoiding duplicate Parquet schema merging
Liang-Chi Hsieh <[email protected]>
2015-02-27 11:06:47 +0800
Commit: 25a109e, github.com/apache/spark/pull/4786
SPARK-4579 [WEBUI] Scheduling Delay appears negative
Sean Owen <[email protected]>
2015-02-26 17:35:09 -0800
Commit: b83a93e, github.com/apache/spark/pull/4796
[SPARK-5951][YARN] Remove unreachable driver memory properties in yarn client mode
mohit.goyal <[email protected]>
2015-02-26 14:27:47 -0800
Commit: 5b426cb, github.com/apache/spark/pull/4730
Add a note for context termination for History server on Yarn
moussa taifi <[email protected]>
2015-02-26 14:19:43 -0800
Commit: 297c3ef, github.com/apache/spark/pull/4721
[SPARK-6018] [YARN] NoSuchMethodError in Spark app is swallowed by YARN AM
Cheolsoo Park <[email protected]>
2015-02-26 13:53:49 -0800
Commit: fe79674, github.com/apache/spark/pull/4773
[SPARK-6027][SPARK-5546] Fixed --jar and --packages not working for KafkaUtils and improved error message
Tathagata Das <[email protected]>
2015-02-26 13:46:07 -0800
Commit: 731a997, github.com/apache/spark/pull/4779
Modify default value description for spark.scheduler.minRegisteredResourcesRatio on docs.
Li Zhihui <[email protected]>
2015-02-26 13:07:07 -0800
Commit: 62652dc, github.com/apache/spark/pull/4781
[SPARK-5363] Fix bug in PythonRDD: remove() inside iterator is not safe
Davies Liu <[email protected]>
2015-02-26 11:54:17 -0800
Commit: 5d309ad, github.com/apache/spark/pull/4776
[SPARK-6015] fix links to source code in Python API docs
Davies Liu <[email protected]>
2015-02-26 10:45:29 -0800
Commit: dafb3d2, github.com/apache/spark/pull/4772
[SPARK-6007][SQL] Add numRows param in DataFrame.show()
Jacky Li <[email protected]>
2015-02-26 10:40:58 -0800
Commit: 7c779d8, github.com/apache/spark/pull/4767
[SPARK-6016][SQL] Cannot read the parquet table after overwriting the existing table when spark.sql.parquet.cacheMetadata=true
Yin Huai <[email protected]>
2015-02-27 01:01:32 +0800
Commit: b5c5e93, github.com/apache/spark/pull/4775
[SPARK-6023][SQL] ParquetConversions fails to replace the destination MetastoreRelation of an InsertIntoTable node to ParquetRelation2
Yin Huai <[email protected]>
2015-02-26 22:39:49 +0800
Commit: e0f5fb0, github.com/apache/spark/pull/4782
[SPARK-5976][MLLIB] Add partitioner to factors returned by ALS
Xiangrui Meng <[email protected]>
2015-02-25 23:43:29 -0800
Commit: a51d9db, github.com/apache/spark/pull/4748
[SPARK-1182][Docs] Sort the configuration parameters in configuration.md
Brennon York <[email protected]>
2015-02-25 16:12:56 -0800
Commit: 56fa38a, github.com/apache/spark/pull/3863
[SPARK-5724] fix the misconfiguration in AkkaUtils
CodingCat <[email protected]>
2015-02-23 11:29:25 +0000
Commit: b32a653, github.com/apache/spark/pull/4512
[SPARK-5974] [SPARK-5980] [mllib] [python] [docs] Update ML guide with save/load, Python GBT
Joseph K. Bradley <[email protected]>
2015-02-25 16:13:17 -0800
Commit: a1b4856, github.com/apache/spark/pull/4750
[SPARK-5926] [SQL] make DataFrame.explain leverage queryExecution.logical
Yanbo Liang <[email protected]>
2015-02-25 15:37:13 -0800
Commit: 5bd4b49, github.com/apache/spark/pull/4707
[SPARK-5999][SQL] Remove duplicate Literal matching block
Liang-Chi Hsieh <[email protected]>
2015-02-25 15:22:33 -0800
Commit: 6fff9b8, github.com/apache/spark/pull/4760
[SPARK-6010] [SQL] Merging compatible Parquet schemas before computing splits
Cheng Lian <[email protected]>
2015-02-25 15:15:22 -0800
Commit: 016f1f8, github.com/apache/spark/pull/4768
[SPARK-5944] [PySpark] fix version in Python API docs
Davies Liu <[email protected]>
2015-02-25 15:13:34 -0800
Commit: 9aca3c6, github.com/apache/spark/pull/4731
[SPARK-5982] Remove incorrect Local Read Time Metric
Kay Ousterhout <[email protected]>
2015-02-25 14:55:24 -0800
Commit: 791df93, github.com/apache/spark/pull/4749
[SPARK-1955][GraphX]: VertexRDD can incorrectly assume index sharing
Brennon York <[email protected]>
2015-02-25 14:11:12 -0800
Commit: 8073767, github.com/apache/spark/pull/4705
SPARK-5930 [DOCS] Documented default of spark.shuffle.io.retryWait is confusing
Sean Owen <[email protected]>
2015-02-25 12:20:44 -0800
Commit: eaffc6e, github.com/apache/spark/pull/4769
[SPARK-5996][SQL] Fix specialized outbound conversions
Michael Armbrust <[email protected]>
2015-02-25 10:13:40 -0800
Commit: fada683, github.com/apache/spark/pull/4757
[SPARK-5994] [SQL] Python DataFrame documentation fixes
Davies Liu <[email protected]>
2015-02-24 20:51:55 -0800
Commit: 5c421e0, github.com/apache/spark/pull/4756
[SPARK-5286][SQL] SPARK-5286 followup
Yin Huai <[email protected]>
2015-02-24 19:51:36 -0800
Commit: e7a748e, github.com/apache/spark/pull/4755
[SPARK-5993][Streaming][Build] Fix assembly jar location of kafka-assembly
Tathagata Das <[email protected]>
2015-02-24 19:10:37 -0800
Commit: 1e94894, github.com/apache/spark/pull/4753
[SPARK-5985][SQL] DataFrame sortBy -> orderBy in Python.
Reynold Xin <[email protected]>
2015-02-24 18:59:23 -0800
Commit: 5e233b2, github.com/apache/spark/pull/4752
[SPARK-5904][SQL] DataFrame Java API test suites.
Reynold Xin <[email protected]>
2015-02-24 18:51:41 -0800
Commit: 78a1781, github.com/apache/spark/pull/4751
[SPARK-5751] [SQL] [WIP] Revamped HiveThriftServer2Suite for robustness
Cheng Lian <[email protected]>
2015-02-25 08:34:55 +0800
Commit: 17ee246, github.com/apache/spark/pull/4720
[SPARK-5973] [PySpark] fix zip with two RDDs with AutoBatchedSerializer
Davies Liu <[email protected]>
2015-02-24 14:50:00 -0800
Commit: 91bf0f8, github.com/apache/spark/pull/4745
[SPARK-5952][SQL] Lock when using hive metastore client
Michael Armbrust <[email protected]>
2015-02-24 13:39:29 -0800
Commit: 641423d, github.com/apache/spark/pull/4746
[MLLIB] Change x_i to y_i in Variance's user guide
Xiangrui Meng <[email protected]>
2015-02-24 11:38:59 -0800
Commit: a4ff445, github.com/apache/spark/pull/4740
[SPARK-5965] Standalone Worker UI displays {{USER_JAR}}
Andrew Or <[email protected]>
2015-02-24 11:08:07 -0800
Commit: eaf7bf9, github.com/apache/spark/pull/4739
[Spark-5967] [UI] Correctly clean JobProgressListener.stageIdToActiveJobIds
Tathagata Das <[email protected]>
2015-02-24 11:02:47 -0800
Commit: 28dd53b, github.com/apache/spark/pull/4741
[SPARK-5532][SQL] Repartition should not use external rdd representation
Michael Armbrust <[email protected]>
2015-02-24 10:52:18 -0800
Commit: e46096b, github.com/apache/spark/pull/4738
[SPARK-5910][SQL] Support for as in selectExpr
Michael Armbrust <[email protected]>
2015-02-24 10:49:51 -0800
Commit: ba5d60d, github.com/apache/spark/pull/4736
[SPARK-5968] [SQL] Suppresses ParquetOutputCommitter WARN logs
Cheng Lian <[email protected]>
2015-02-24 10:45:38 -0800
Commit: 2b562b0, github.com/apache/spark/pull/4744
[SPARK-5958][MLLIB][DOC] update block matrix user guide
Xiangrui Meng <[email protected]>
2015-02-23 22:08:44 -0800
Commit: dd42558, github.com/apache/spark/pull/4737
[SPARK-5873][SQL] Allow viewing of partially analyzed plans in queryExecution
Michael Armbrust <[email protected]>
2015-02-23 17:34:54 -0800
Commit: 2d7786e, github.com/apache/spark/pull/4684
[SPARK-5935][SQL] Accept MapType in the schema provided to a JSON dataset.
Yin Huai <[email protected]>, Yin Huai <[email protected]>
2015-02-23 17:16:34 -0800
Commit: 33ccad2, github.com/apache/spark/pull/4710
[SPARK-5912] [docs] [mllib] Small fixes to ChiSqSelector docs
Joseph K. Bradley <[email protected]>
2015-02-23 16:15:57 -0800
Commit: ae97040, github.com/apache/spark/pull/4732
[MLLIB] SPARK-5912 Programming guide for feature selection
Alexander Ulanov <[email protected]>
2015-02-23 12:09:40 -0800
Commit: 8355773, github.com/apache/spark/pull/4709
[SPARK-5939][MLLib] make FPGrowth example app take parameters
Jacky Li <[email protected]>
2015-02-23 08:47:28 -0800
Commit: 33b9084, github.com/apache/spark/pull/4714
[SPARK-5943][Streaming] Update the test to use new API to reduce the warning
Saisai Shao <[email protected]>
2015-02-23 11:27:27 +0000
Commit: 67b7f79, github.com/apache/spark/pull/4722
[EXAMPLES] fix typo.
Makoto Fukuhara <[email protected]>
2015-02-23 09:24:33 +0000
Commit: f172387, github.com/apache/spark/pull/4724
Revert "[SPARK-4808] Removing minimum number of elements read before spill check"
Andrew Or <[email protected]>
2015-02-22 09:44:52 -0800
Commit: 4186dd3
SPARK-5669 [BUILD] Reverse exclusion of JBLAS libs for 1.3
Sean Owen <[email protected]>
2015-02-22 09:09:06 +0000
Commit: eed7389, github.com/apache/spark/pull/4715
[DataFrame] [Typo] Fix the typo
Cheng Hao <[email protected]>
2015-02-22 08:56:30 +0000
Commit: 04d3b32, github.com/apache/spark/pull/4717
[DOCS] Fix typo in API for custom InputFormats based on the “new” MapReduce API
Alexander <[email protected]>
2015-02-22 08:53:05 +0000
Commit: c5a5c6f, github.com/apache/spark/pull/4718
[SPARK-5937][YARN] Fix ClientSuite to set YARN mode, so that the correct class is used in t...
Hari Shreedharan <[email protected]>
2015-02-21 10:01:01 -0800
Commit: 76e3e65, github.com/apache/spark/pull/4711
SPARK-5841 [CORE] [HOTFIX 2] Memory leak in DiskBlockManager
2015-02-21 09:59:28 -0800
Commit: 932338e, github.com/apache/spark/pull/4690
[SPARK-5909][SQL] Add a clearCache command to Spark SQL's cache manager
Yin Huai <[email protected]>
2015-02-20 16:20:02 +0800
Commit: b9a6c5c, github.com/apache/spark/pull/4694
[SPARK-5898] [SPARK-5896] [SQL] [PySpark] create DataFrame from pandas and tuple/list
Davies Liu <[email protected]>
2015-02-20 15:35:05 -0800
Commit: 913562a, github.com/apache/spark/pull/4679
[SPARK-5867] [SPARK-5892] [doc] [ml] [mllib] Doc cleanups for 1.3 release
Joseph K. Bradley <[email protected]>
2015-02-20 02:31:32 -0800
Commit: 8c12f31, github.com/apache/spark/pull/4675
[SPARK-4808] Removing minimum number of elements read before spill check
mcheah <[email protected]>
2015-02-19 18:09:22 -0800
Commit: 0382dcc, github.com/apache/spark/pull/4420
[SPARK-5900][MLLIB] make PIC and FPGrowth Java-friendly
Xiangrui Meng <[email protected]>
2015-02-19 18:06:16 -0800
Commit: ba941ce, github.com/apache/spark/pull/4695
SPARK-5570: No docs stating that `new SparkConf().set("spark.driver.memory", ...) will not work
Ilya Ganelin <[email protected]>
2015-02-19 15:50:58 -0800
Commit: c5f3b9e, github.com/apache/spark/pull/4665
SPARK-4682 [CORE] Consolidate various 'Clock' classes
Sean Owen <[email protected]>
2015-02-19 15:35:23 -0800
Commit: bd49e8b, github.com/apache/spark/pull/4514
[Spark-5889] Remove pid file after stopping service.
Zhan Zhang <[email protected]>
2015-02-19 23:13:02 +0000
Commit: ff8976e, github.com/apache/spark/pull/4676
[SPARK-5902] [ml] Made PipelineStage.transformSchema public instead of private to ml
Joseph K. Bradley <[email protected]>
2015-02-19 12:46:27 -0800
Commit: 0c494cf, github.com/apache/spark/pull/4682
[SPARK-5904][SQL] DataFrame API fixes.
Reynold Xin <[email protected]>
2015-02-19 12:09:44 -0800
Commit: 55d91d9, github.com/apache/spark/pull/4686
[SPARK-5825] [Spark Submit] Remove the double checking instance name when stopping the service
Cheng Hao <[email protected]>
2015-02-19 12:07:51 -0800
Commit: fe00eb6, github.com/apache/spark/pull/4611
[SPARK-5423][Core] Cleanup resources in DiskMapIterator.finalize to ensure deleting the temp file
zsxwing <[email protected]>
2015-02-19 18:37:31 +0000
Commit: 25fae8e, github.com/apache/spark/pull/4219
[SPARK-5816] Add huge compatibility warning in DriverWrapper
Andrew Or <[email protected]>
2015-02-19 09:56:25 -0800
Commit: f93d4d9, github.com/apache/spark/pull/4687
SPARK-5548: Fix for AkkaUtilsSuite failure - attempt 2
Jacek Lewandowski <[email protected]>
2015-02-19 09:53:36 -0800
Commit: fbcb949, github.com/apache/spark/pull/4653
[SPARK-5846] Correctly set job description and pool for SQL jobs
Kay Ousterhout <[email protected]>
2015-02-19 09:49:34 +0800
Commit: 092b45f, github.com/apache/spark/pull/4630
[SPARK-5879][MLLIB] update PIC user guide and add a Java example
Xiangrui Meng <[email protected]>
2015-02-18 16:29:32 -0800
Commit: a64f374, github.com/apache/spark/pull/4680
[SPARK-5722] [SQL] [PySpark] infer int as LongType
Davies Liu <[email protected]>
2015-02-18 14:17:04 -0800
Commit: 470cba8, github.com/apache/spark/pull/4666
[SPARK-5840][SQL] HiveContext cannot be serialized due to tuple extraction
Reynold Xin <[email protected]>
2015-02-18 14:02:32 -0800
Commit: b86e44c, github.com/apache/spark/pull/4628
[SPARK-5507] Added documentation for BlockMatrix
Burak Yavuz <[email protected]>
2015-02-18 10:11:08 -0800
Commit: 56f8f29, github.com/apache/spark/pull/4664
[SPARK-5519][MLLIB] add user guide with example code for fp-growth
Xiangrui Meng <[email protected]>
2015-02-18 10:09:56 -0800
Commit: 661fbd3, github.com/apache/spark/pull/4661
SPARK-5669 [BUILD] [HOTFIX] Spark assembly includes incompatibly licensed libgfortran, libgcc code via JBLAS
Sean Owen <[email protected]>
2015-02-18 14:41:44 +0000
Commit: 9f256ce, github.com/apache/spark/pull/4673
SPARK-4610 addendum: [Minor] [MLlib] Minor doc fix in GBT classification example
MechCoder <[email protected]>
2015-02-18 10:13:28 +0000
Commit: 3997e74, github.com/apache/spark/pull/4672
[SPARK-5878] fix DataFrame.repartition() in Python
Davies Liu <[email protected]>
2015-02-18 01:00:54 -0800
Commit: aca7991, github.com/apache/spark/pull/4667
Avoid deprecation warnings in JDBCSuite.
Tor Myklebust <[email protected]>
2015-02-18 01:00:13 -0800
Commit: 9a565b8, github.com/apache/spark/pull/4668
[Minor] [SQL] Cleans up DataFrame variable names and toDF() calls
Cheng Lian <[email protected]>
2015-02-17 23:36:20 -0800
Commit: 2bd33ce, github.com/apache/spark/pull/4670
[SPARK-5731][Streaming][Test] Fix incorrect test in DirectKafkaStreamSuite
Tathagata Das <[email protected]>
2015-02-17 22:44:16 -0800
Commit: f8f9a64, github.com/apache/spark/pull/4597
[SPARK-5723][SQL]Change the default file format to Parquet for CTAS statements.
Yin Huai <[email protected]>
2015-02-17 18:14:33 -0800
Commit: 6e82c46, github.com/apache/spark/pull/4639
Preparing development version 1.3.1-SNAPSHOT
Patrick Wendell <[email protected]>
2015-02-18 01:52:06 +0000
Commit: 2ab0ba0
Preparing Spark release v1.3.0-rc1
Patrick Wendell <[email protected]>
2015-02-18 01:52:06 +0000
Commit: f97b0d4
[SPARK-5875][SQL]logical.Project should not be resolved if it contains aggregates or generators
Yin Huai <[email protected]>
2015-02-17 17:50:39 -0800
Commit: e8284b2, github.com/apache/spark/pull/4663
Revert "Preparing Spark release v1.3.0-snapshot1"
Patrick Wendell <[email protected]>
2015-02-17 17:48:47 -0800
Commit: 7320605
Revert "Preparing development version 1.3.1-SNAPSHOT"
Patrick Wendell <[email protected]>
2015-02-17 17:48:43 -0800
Commit: 932ae4d
[SPARK-4454] Revert getOrElse() cleanup in DAGScheduler.getCacheLocs()
Josh Rosen <[email protected]>
2015-02-17 17:45:16 -0800
Commit: 7e5e4d8
[SPARK-4454] Properly synchronize accesses to DAGScheduler cacheLocs map
Josh Rosen <[email protected]>
2015-02-17 17:39:58 -0800
Commit: 07a401a, github.com/apache/spark/pull/4660
[SPARK-5811] Added documentation for maven coordinates and added Spark Packages support
Burak Yavuz <[email protected]>, Davies Liu <[email protected]>
2015-02-17 17:15:43 -0800
Commit: cb90584, github.com/apache/spark/pull/4662
[SPARK-5785] [PySpark] narrow dependency for cogroup/join in PySpark
Davies Liu <[email protected]>
2015-02-17 16:54:57 -0800
Commit: 8120235, github.com/apache/spark/pull/4629
[SPARK-5852][SQL]Fail to convert a newly created empty metastore parquet table to a data source parquet table.
Yin Huai <[email protected]>, Cheng Hao <[email protected]>
2015-02-17 15:47:59 -0800
Commit: 07d8ef9, github.com/apache/spark/pull/4655
[SPARK-5872] [SQL] create a sqlCtx in pyspark shell
Davies Liu <[email protected]>
2015-02-17 15:44:37 -0800
Commit: 0dba382, github.com/apache/spark/pull/4659
[SPARK-5871] output explain in Python
Davies Liu <[email protected]>
2015-02-17 13:48:38 -0800
Commit: cb06160, github.com/apache/spark/pull/4658
[SPARK-4172] [PySpark] Progress API in Python
Davies Liu <[email protected]>
2015-02-17 13:36:43 -0800
Commit: 35e23ff, github.com/apache/spark/pull/3027
[SPARK-5868][SQL] Fix python UDFs in HiveContext and checks in SQLContext
Michael Armbrust <[email protected]>
2015-02-17 13:23:45 -0800
Commit: e65dc1f, github.com/apache/spark/pull/4657
[SQL] [Minor] Update the HiveContext Unittest
Cheng Hao <[email protected]>
2015-02-17 12:25:35 -0800
Commit: 0135651, github.com/apache/spark/pull/4584
[Minor][SQL] Use same function to check path parameter in JSONRelation
Liang-Chi Hsieh <[email protected]>
2015-02-17 12:24:13 -0800
Commit: d74d5e8, github.com/apache/spark/pull/4649
[SPARK-5862][SQL] Only transformUp the given plan once in HiveMetastoreCatalog
Liang-Chi Hsieh <[email protected]>
2015-02-17 12:23:18 -0800
Commit: 62063b7, github.com/apache/spark/pull/4651
[Minor] fix typo in SQL document
CodingCat <[email protected]>
2015-02-17 12:16:52 -0800
Commit: 5636c4a, github.com/apache/spark/pull/4656
[SPARK-5864] [PySpark] support .jar as python package
Davies Liu <[email protected]>
2015-02-17 12:05:06 -0800
Commit: 71cf6e2, github.com/apache/spark/pull/4652
SPARK-5841 [CORE] [HOTFIX] Memory leak in DiskBlockManager
Sean Owen <[email protected]>
2015-02-17 19:40:06 +0000
Commit: e64afcd, github.com/apache/spark/pull/4648
[SPARK-5661]function hasShutdownDeleteTachyonDir should use shutdownDeleteTachyonPaths to determine whether contains file
xukun 00228947 <[email protected]>, viper-kun <[email protected]>
2015-02-17 18:59:41 +0000
Commit: 420bc9b, github.com/apache/spark/pull/4418
[SPARK-5778] throw if nonexistent metrics config file provided
Ryan Williams <[email protected]>
2015-02-17 10:57:16 -0800
Commit: 2bf2b56, github.com/apache/spark/pull/4571
[SPARK-5859] [PySpark] [SQL] fix DataFrame Python API
Davies Liu <[email protected]>
2015-02-17 10:22:48 -0800
Commit: 4a581aa, github.com/apache/spark/pull/4645
[SPARK-5166][SPARK-5247][SPARK-5258][SQL] API Cleanup / Documentation
Michael Armbrust <[email protected]>
2015-02-17 10:21:17 -0800
Commit: cd3d415, github.com/apache/spark/pull/4642
[SPARK-5858][MLLIB] Remove unnecessary first() call in GLM
Xiangrui Meng <[email protected]>
2015-02-17 10:17:45 -0800
Commit: 97cb568, github.com/apache/spark/pull/4647
SPARK-5856: In Maven build script, launch Zinc with more memory
Patrick Wendell <[email protected]>
2015-02-17 10:10:01 -0800
Commit: 8240629, github.com/apache/spark/pull/4643
Revert "[SPARK-5363] [PySpark] check ending mark in non-block way"
Josh Rosen <[email protected]>
2015-02-17 07:48:27 -0800
Commit: aeb85cd
[SPARK-5826][Streaming] Fix Configuration not serializable problem
jerryshao <[email protected]>
2015-02-17 10:45:18 +0000
Commit: b8da5c3, github.com/apache/spark/pull/4612
HOTFIX: Style issue causing build break
Patrick Wendell <[email protected]>
2015-02-16 22:10:39 -0800
Commit: e9241fa
[SPARK-5802][MLLIB] cache transformed data in glm
Xiangrui Meng <[email protected]>
2015-02-16 22:09:04 -0800
Commit: dfe0fa0, github.com/apache/spark/pull/4593
[SPARK-5853][SQL] Schema support in Row.
Reynold Xin <[email protected]>
2015-02-16 20:42:57 -0800
Commit: d0701d9, github.com/apache/spark/pull/4640
SPARK-5850: Remove experimental label for Scala 2.11 and FlumePollingStream
Patrick Wendell <[email protected]>
2015-02-16 20:33:33 -0800
Commit: c6a7069, github.com/apache/spark/pull/4638
[SPARK-5363] [PySpark] check ending mark in non-block way
Davies Liu <[email protected]>
2015-02-16 20:32:03 -0800
Commit: baad6b3, github.com/apache/spark/pull/4601
[SQL] Various DataFrame doc changes.
Reynold Xin <[email protected]>
2015-02-16 19:00:30 -0800
Commit: e355b54, github.com/apache/spark/pull/4636
[SPARK-5849] Handle more types of invalid JSON requests in SubmitRestProtocolMessage.parseAction
Josh Rosen <[email protected]>
2015-02-16 18:08:02 -0800
Commit: 385a339, github.com/apache/spark/pull/4637
[SPARK-3340] Deprecate ADD_JARS and ADD_FILES
azagrebin <[email protected]>
2015-02-16 18:06:19 -0800
Commit: d8c70fb, github.com/apache/spark/pull/4616
[SPARK-5788] [PySpark] capture the exception in python write thread
Davies Liu <[email protected]>
2015-02-16 17:57:14 -0800
Commit: c2a9a61, github.com/apache/spark/pull/4577
SPARK-5848: tear down the ConsoleProgressBar timer
Matt Whelan <[email protected]>
2015-02-17 00:59:49 +0000
Commit: 52994d8, github.com/apache/spark/pull/4635
[SPARK-4865][SQL]Include temporary tables in SHOW TABLES
Yin Huai <[email protected]>
2015-02-16 15:59:23 -0800
Commit: 8a94bf7, github.com/apache/spark/pull/4618
[SQL] Optimize arithmetic and predicate operators
kai <[email protected]>
2015-02-16 15:58:05 -0800
Commit: 639a3c2, github.com/apache/spark/pull/4472
[SPARK-5839][SQL]HiveMetastoreCatalog does not recognize table names and aliases of data source tables.
Yin Huai <[email protected]>
2015-02-16 15:54:01 -0800
Commit: a15a0a0, github.com/apache/spark/pull/4626
[SPARK-5746][SQL] Check invalid cases for the write path of data source API
Yin Huai <[email protected]>
2015-02-16 15:51:59 -0800
Commit: 4198654, github.com/apache/spark/pull/4617
HOTFIX: Break in Jekyll build from #4589
Patrick Wendell <[email protected]>
2015-02-16 15:43:56 -0800
Commit: ad8fd4f
[SPARK-2313] Use socket to communicate GatewayServer port back to Python driver
Josh Rosen <[email protected]>
2015-02-16 15:25:11 -0800
Commit: b70b8ba, github.com/apache/spark/pull/3424.
SPARK-5357: Update commons-codec version to 1.10 (current)
Matt Whelan <[email protected]>
2015-02-16 23:05:34 +0000
Commit: 8c45619, github.com/apache/spark/pull/4153
SPARK-5841: remove DiskBlockManager shutdown hook on stop
Matt Whelan <[email protected]>
2015-02-16 22:54:32 +0000
Commit: dd977df, github.com/apache/spark/pull/4627
[SPARK-5833] [SQL] Adds REFRESH TABLE command
Cheng Lian <[email protected]>
2015-02-16 12:52:05 -0800
Commit: 864d77e, github.com/apache/spark/pull/4624
[SPARK-5296] [SQL] Add more filter types for data sources API
Cheng Lian <[email protected]>
2015-02-16 12:48:55 -0800
Commit: 363a9a7, github.com/apache/spark/pull/4623
[SQL] Add fetched row count in SparkSQLCLIDriver
OopsOutOfMemory <[email protected]>
2015-02-16 12:34:09 -0800
Commit: 0368494, github.com/apache/spark/pull/4604
[SQL] Initial support for reporting location of error in sql string
Michael Armbrust <[email protected]>
2015-02-16 12:32:56 -0800
Commit: 63fa123, github.com/apache/spark/pull/4587
[SPARK-5824] [SQL] add null format in ctas and set default col comment to null
Daoyuan Wang <[email protected]>
2015-02-16 12:31:36 -0800
Commit: c2eaaea, github.com/apache/spark/pull/4609
[SQL] [Minor] Update the SpecificMutableRow.copy
Cheng Hao <[email protected]>
2015-02-16 12:21:08 -0800
Commit: 1a88955, github.com/apache/spark/pull/4619
SPARK-5795 [STREAMING] api.java.JavaPairDStream.saveAsNewAPIHadoopFiles may not friendly to java
Sean Owen <[email protected]>
2015-02-16 19:32:31 +0000
Commit: fef2267, github.com/apache/spark/pull/4608
[SPARK-5799][SQL] Compute aggregation function on specified numeric columns
Liang-Chi Hsieh <[email protected]>
2015-02-16 10:06:11 -0800
Commit: 0165e9d, github.com/apache/spark/pull/4592
[SPARK-4553] [SPARK-5767] [SQL] Wires Parquet data source with the newly introduced write support for data source API
Cheng Lian <[email protected]>
2015-02-16 01:38:31 -0800
Commit: 78f7edb, github.com/apache/spark/pull/4563
[Minor] [SQL] Renames stringRddToDataFrame to stringRddToDataFrameHolder for consistency
Cheng Lian <[email protected]>
2015-02-16 01:33:37 -0800
Commit: 066301c, github.com/apache/spark/pull/4613
[Ml] SPARK-5804 Explicitly manage cache in Crossvalidator k-fold loop
Peter Rudenko <[email protected]>
2015-02-16 00:07:23 -0800
Commit: 0d93205, github.com/apache/spark/pull/4595
[Ml] SPARK-5796 Don't transform data on a last estimator in Pipeline
Peter Rudenko <[email protected]>
2015-02-15 20:51:32 -0800
Commit: 9cf7d70, github.com/apache/spark/pull/4590
SPARK-5815 [MLLIB] Deprecate SVDPlusPlus APIs that expose DoubleMatrix from JBLAS
Sean Owen <[email protected]>
2015-02-15 20:41:27 -0800
Commit: db3c539, github.com/apache/spark/pull/4614
[SPARK-5769] Set params in constructors and in setParams in Python ML pipelines
Xiangrui Meng <[email protected]>
2015-02-15 20:29:26 -0800
Commit: d710991, github.com/apache/spark/pull/4564
SPARK-5669 [BUILD] Spark assembly includes incompatibly licensed libgfortran, libgcc code via JBLAS
Sean Owen <[email protected]>
2015-02-15 09:15:48 -0800
Commit: 4e099d7, github.com/apache/spark/pull/4453
[MLLIB][SPARK-5502] User guide for isotonic regression
martinzapletal <[email protected]>
2015-02-15 09:10:03 -0800
Commit: d96e188, github.com/apache/spark/pull/4536