Created 07-15-2016 04:07 PM
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.
Created 07-17-2016 05:26 PM
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
Created 07-17-2016 05:26 PM
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
Created 07-17-2016 05:51 PM
This is a current limitation with ACID transactions supported only in ORC format.