In a previous post, I documented How to export complete Hive table to a local file? While being required to get … More
Category: Apache Hive
How to export complete Hive table to a local file?
Generally, solutions provided over the internet point towards: hive -e ‘select * from dbname.tablename;’ > /path/to/datadump.csv However, this will not … More
How to ingest JSON data to Hive?
Given JSON Data { “Person”: { “FirstName”: “Piyush”, “LastName”: “Routray”, “date”: [1990, 10, 28] }, “Friends”: [{ “Name”: “Vaibhav”, “State”: … More