Read Parquet files from Scala without using Spark

前端 未结 3 620
终归单人心
终归单人心 2020-12-10 11:21

Is it possible to read parquet files from Scala without using Apache Spark?

I found a project which allows us to read and write avro files using plain scala.

3条回答
  •  有刺的猬
    2020-12-10 11:38

    Yes, you don't have to use Spark to read/write Parquet. Just use parquet lib directly from your Scala code (and that's what Spark is doing anyway): http://search.maven.org/#search%7Cga%7C1%7Cparquet

提交回复
热议问题