Last active
May 21, 2019 12:03
-
-
Save kumar-de/9fec3c91820f3e32a12fed77b9010ac7 to your computer and use it in GitHub Desktop.
sample mounting of parquet file as a table in Impala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE EXTERNAL TABLE table_name ( | |
vehicle_id String, | |
start_time String, | |
av0 Double | |
) | |
STORED AS parquet | |
LOCATION '/path/in/hdfs/without//hdfs://'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment