Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Why Hive supports ACID properties in ORC File Format only(before 0.14 version) ?

avatar
Rising Star

Hi,

I just want to know why hive supports insert,update,delete in ORC file format only .I am using hive 0.12 version .i want to know how it is accepting ACID properties with ORC file only.

1 ACCEPTED SOLUTION

avatar
Expert Contributor
@AnjiReddy Anumolu

Hive transactions are supported starting hive 0.13. However, the integration was completely done for ORC file format for the first release. Look below from the wiki:

Only ORC file format is supported in this first release.  The feature has been built such that transactions can be used by any storage format that can determine how updates or deletes apply to base records (basically, that has an explicit or implicit row id), but so far the integration work has only been done for ORC.

Source:

https://cwiki.apache.org/confluence/display/Hive/Hive+Transactions

View solution in original post

2 REPLIES 2

avatar
Expert Contributor
@AnjiReddy Anumolu

Hive transactions are supported starting hive 0.13. However, the integration was completely done for ORC file format for the first release. Look below from the wiki:

Only ORC file format is supported in this first release.  The feature has been built such that transactions can be used by any storage format that can determine how updates or deletes apply to base records (basically, that has an explicit or implicit row id), but so far the integration work has only been done for ORC.

Source:

https://cwiki.apache.org/confluence/display/Hive/Hive+Transactions

avatar
@Hari Rongali

This is a current limitation with ACID transactions supported only in ORC format.