Community Articles

Find and share helpful community-sourced technical articles.
Labels (1)
avatar
Rising Star

A Hive Database can contain both transactional and non transactional table. Hence, if we are doing some quick checks to determine if the table is ACID enabled, please run the following command.

# hive -e "describe extended <Database>.<tablename>;" | grep "transactional=true"

If you get an output with the string that you grep for, then the table is transactional.

Example: #hive -e "describe extended default.hello_acid;" | grep "transactional=true"

62763-hiveacidtablegrep.png

6,873 Views