Return-Path: X-Original-To: apmail-hive-dev-archive@www.apache.org Delivered-To: apmail-hive-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DAEB011480 for ; Mon, 14 Apr 2014 19:14:30 +0000 (UTC) Received: (qmail 18226 invoked by uid 500); 14 Apr 2014 19:13:57 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 17884 invoked by uid 500); 14 Apr 2014 19:13:49 -0000 Mailing-List: contact dev-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list dev@hive.apache.org Received: (qmail 17804 invoked by uid 500); 14 Apr 2014 19:13:47 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 17776 invoked by uid 99); 14 Apr 2014 19:13:46 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Apr 2014 19:13:46 +0000 Date: Mon, 14 Apr 2014 19:13:46 +0000 (UTC) From: "Pardeep Kumar (JIRA)" To: hive-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HIVE-5317) Implement insert, update, and delete in Hive with full ACID support MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HIVE-5317?page=3Dcom.atlassian.= jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D13968= 698#comment-13968698 ]=20 Pardeep Kumar commented on HIVE-5317: ------------------------------------- Will these features be supported on all Hive file formats i.e. Sequencefile= , Text, ORC, RC etc. > Implement insert, update, and delete in Hive with full ACID support > ------------------------------------------------------------------- > > Key: HIVE-5317 > URL: https://issues.apache.org/jira/browse/HIVE-5317 > Project: Hive > Issue Type: New Feature > Reporter: Owen O'Malley > Assignee: Owen O'Malley > Attachments: InsertUpdatesinHive.pdf > > > Many customers want to be able to insert, update and delete rows from Hiv= e tables with full ACID support. The use cases are varied, but the form of = the queries that should be supported are: > * INSERT INTO tbl SELECT =E2=80=A6 > * INSERT INTO tbl VALUES ... > * UPDATE tbl SET =E2=80=A6 WHERE =E2=80=A6 > * DELETE FROM tbl WHERE =E2=80=A6 > * MERGE INTO tbl USING src ON =E2=80=A6 WHEN MATCHED THEN ... WHEN NOT MA= TCHED THEN ... > * SET TRANSACTION LEVEL =E2=80=A6 > * BEGIN/END TRANSACTION > Use Cases > * Once an hour, a set of inserts and updates (up to 500k rows) for variou= s dimension tables (eg. customer, inventory, stores) needs to be processed.= The dimension tables have primary keys and are typically bucketed and sort= ed on those keys. > * Once a day a small set (up to 100k rows) of records need to be deleted = for regulatory compliance. > * Once an hour a log of transactions is exported from a RDBS and the fact= tables need to be updated (up to 1m rows) to reflect the new data. The tr= ansactions are a combination of inserts, updates, and deletes. The table is= partitioned and bucketed. -- This message was sent by Atlassian JIRA (v6.2#6252)