I have a bunch of parquet files and I'm trying to load them into hive with the following query:
CREATE EXTERNAL TABLE `events` (
// ... fields ...
)
PARTITIONED BY (... partition columns ...)
SORED AS PARQUET
LOCATION '/path/to/parquet/files';
It creates the table, but it doesn't load the data at the location. Is there something wrong with the query?