[SPARK-12198] [SparkR] SparkR support read.parquet and deprecate parquetFile - #10191
[SPARK-12198] [SparkR] SparkR support read.parquet and deprecate parquetFile#10191yanboliang wants to merge 2 commits into
Conversation
|
LGTM |
|
Jenkins, test this please. |
|
Test build #47321 has finished for PR 10191 at commit
|
There was a problem hiding this comment.
nit: sort - this should go after read.df
|
looks good otherwise. are we adding a generic read() method? |
|
@felixcheung, what do you mean "a generic read() method"? we have read.df() yet? |
|
sure - read.df doesn't match DataFrameReader so there are certain sources that it couldn't handle |
|
@felixcheung, could you detail more about "read.df doesn't match DataFrameReader"? The only exception is JDBC source? |
|
Test build #47401 has finished for PR 10191 at commit
|
|
+1 @sun-rui Only |
|
sorry that's unrelated to this PR. Opened SPARK-12224 and SPARK-12232 |
|
looks good. |
|
LGTM. Thanks @yanboliang -- Merging this to master and branch-1.6 |
|
Test build #47518 has finished for PR 10191 at commit
|
…etFile SparkR support ```read.parquet``` and deprecate ```parquetFile```. This change is similar with #10145 for ```jsonFile```. Author: Yanbo Liang <ybliang8@gmail.com> Closes #10191 from yanboliang/spark-12198. (cherry picked from commit eeb5872) Signed-off-by: Shivaram Venkataraman <shivaram@cs.berkeley.edu>
SparkR support
read.parquetand deprecateparquetFile. This change is similar with #10145 forjsonFile.