Skip to Content
Data Lake for Enterprises
book

Data Lake for Enterprises

by Vivek Mishra, Tomcy John, Pankaj Misra
May 2017
Beginner to intermediate
596 pages
15h 2m
English
Packt Publishing
Content preview from Data Lake for Enterprises

Parquet data visualization as Hive tables

Parquet data files, once ingested, can be easily viewed using Hive tables by creating Hive external tables using the scripts given here. This can be executed via the Hue UI (Hive Query Builder) as detailed in earlier chapters:

SET mapred.input.dir.recursive=true;CREATE EXTERNAL TABLE customer(id int, first_name string, last_name string, dob BIGINT)STORED AS PARQUET LOCATION '/datalake/raw/customer';CREATE EXTERNAL TABLE address(  id string,                               customerId string,                               street1 string,                               street2 string,                               city string,                               state string,                               country string,                               zipCode string                               )STORED AS PARQUET LOCATION '/datalake/raw/address';CREATE EXTERNAL TABLE contact(id string, cell string, phone string, email string)STORED AS PARQUET LOCATION ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

The Enterprise Big Data Lake

The Enterprise Big Data Lake

Alex Gorelik
Operationalizing the Data Lake

Operationalizing the Data Lake

Holden Ackerman, Jon King
Data Lakes

Data Lakes

Anne Laurent, Dominique Laurent, Cédrine Madera

Publisher Resources

ISBN: 9781787281349Supplemental Content