Re: parquetFile and wilcards

2014-10-13 Thread Nicholas Chammas
SPARK-3928: Support wildcard matches on Parquet files https://issues.apache.org/jira/browse/SPARK-3928 On Wed, Sep 24, 2014 at 2:14 PM, Michael Armbrust mich...@databricks.com wrote: We could certainly do this. The comma separated support is something I added. On Wed, Sep 24, 2014 at 10:20

parquetFile and wilcards

2014-09-24 Thread Marius Soutier
Hello, sc.textFile and so on support wildcards in their path, but apparently sqlc.parquetFile() does not. I always receive “File /file/to/path/*/input.parquet does not exist. Is this normal or a bug? Is there are a workaround? Thanks - Marius

Re: parquetFile and wilcards

2014-09-24 Thread Michael Armbrust
This behavior is inherited from the parquet input format that we use. You could list the files manually and pass them as a comma separated list. On Wed, Sep 24, 2014 at 7:46 AM, Marius Soutier mps@gmail.com wrote: Hello, sc.textFile and so on support wildcards in their path, but

Re: parquetFile and wilcards

2014-09-24 Thread Marius Soutier
Thank you, that works! On 24.09.2014, at 19:01, Michael Armbrust mich...@databricks.com wrote: This behavior is inherited from the parquet input format that we use. You could list the files manually and pass them as a comma separated list. On Wed, Sep 24, 2014 at 7:46 AM, Marius Soutier

Re: parquetFile and wilcards

2014-09-24 Thread Nicholas Chammas
Does it make sense for us to open a JIRA to track enhancing the Parquet input format to support wildcards? Or is this something outside of Spark's control? Nick On Wed, Sep 24, 2014 at 1:01 PM, Michael Armbrust mich...@databricks.com wrote: This behavior is inherited from the parquet input

Re: parquetFile and wilcards

2014-09-24 Thread Michael Armbrust
We could certainly do this. The comma separated support is something I added. On Wed, Sep 24, 2014 at 10:20 AM, Nicholas Chammas nicholas.cham...@gmail.com wrote: Does it make sense for us to open a JIRA to track enhancing the Parquet input format to support wildcards? Or is this something