Book Image

Apache Hive Cookbook

Book Image

Apache Hive Cookbook

Overview of this book

Hive was developed by Facebook and later open sourced in Apache community. Hive provides SQL like interface to run queries on Big Data frameworks. Hive provides SQL like syntax also called as HiveQL that includes all SQL capabilities like analytical functions which are the need of the hour in today’s Big Data world. This book provides you easy installation steps with different types of metastores supported by Hive. This book has simple and easy to learn recipes for configuring Hive clients and services. You would also learn different Hive optimizations including Partitions and Bucketing. The book also covers the source code explanation of latest Hive version. Hive Query Language is being used by other frameworks including spark. Towards the end you will cover integration of Hive with these frameworks.
Table of Contents (19 chapters)
Apache Hive Cookbook
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface
Index

Deleting data


In this recipe, you will learn how to delete data from a table in Hive.

Deleting data from a Hive table is the traditional way of deleting data in a table in any RDBMS. Deleting data in a table can only be performed if the table supports ACID properties.

Note

Deletion is not possible on tables that are created using the SORTED BY clause.

The general format of deleting data in a table is as follows:

DELETE FROM tablename [WHERE expression]

Where:

  • tablename: This is the name of the table

  • WHERE expression: This is an optional clause. Only rows that match the WHERE clause will be deleted

Getting ready

This recipe requires having Hive installed as described in the Installing Hive recipe of Chapter 1, Developing Hive. You will also need the Hive CLI or Beeline client to run the commands.

This recipe requires transactions enabled, so refer to Enabling transactions in Hive for that.

How to do it...

Follow the next step to delete data in a table in Hive:

DELETE FROM sales WHERE id = 1;

How it...