[jira] [Commented] (HIVE-14878) integrate MM tables into ACID: add separate ACID type

2017-11-13 Thread Lefty Leverenz (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-14878?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16250717#comment-16250717
 ] 

Lefty Leverenz commented on HIVE-14878:
---

No doc needed:  This changes the description of 
*hive.txn.operational.properties* but it doesn't need to be documented because 
it's for internal use only.  (See HIVE-14035 comments, 21-22 Aug. 2016.)

HIVE-17458 changes the description again.

> integrate MM tables into ACID: add separate ACID type
> -
>
> Key: HIVE-14878
> URL: https://issues.apache.org/jira/browse/HIVE-14878
> Project: Hive
>  Issue Type: Sub-task
>Reporter: Sergey Shelukhin
>Assignee: Wei Zheng
> Fix For: hive-14535
>
> Attachments: HIVE-14878.1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HIVE-14878) integrate MM tables into ACID: add separate ACID type

2017-03-07 Thread Wei Zheng (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-14878?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15900244#comment-15900244
 ] 

Wei Zheng commented on HIVE-14878:
--

Because "INSERT_ONLY" is not full ACID for sure, and strictly speaking it's not 
"NOT_ACID" either (as we planned to use some of the ACID framework), thus the 
differentiation. Now I tend to categorize it to "NOT_ACID" since it's just 
plain INSERT as before :)

> integrate MM tables into ACID: add separate ACID type
> -
>
> Key: HIVE-14878
> URL: https://issues.apache.org/jira/browse/HIVE-14878
> Project: Hive
>  Issue Type: Sub-task
>Reporter: Sergey Shelukhin
>Assignee: Wei Zheng
> Fix For: hive-14535
>
> Attachments: HIVE-14878.1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (HIVE-14878) integrate MM tables into ACID: add separate ACID type

2017-03-07 Thread Eugene Koifman (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-14878?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15900011#comment-15900011
 ] 

Eugene Koifman commented on HIVE-14878:
---

[~wzheng] why does this need the addition of AcidUtils.Operation.INSERT_ONLY?
>From what I see all usages of it are 
to change

{noformat}
if (conf.getWriteType() == AcidUtils.Operation.NOT_ACID) {
{noformat}

to

{noformat}
if (conf.getWriteType() == AcidUtils.Operation.NOT_ACID ||
  conf.getWriteType() == AcidUtils.Operation.INSERT_ONLY) {
{noformat}

> integrate MM tables into ACID: add separate ACID type
> -
>
> Key: HIVE-14878
> URL: https://issues.apache.org/jira/browse/HIVE-14878
> Project: Hive
>  Issue Type: Sub-task
>Reporter: Sergey Shelukhin
>Assignee: Wei Zheng
> Fix For: hive-14535
>
> Attachments: HIVE-14878.1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (HIVE-14878) integrate MM tables into ACID: add separate ACID type

2016-10-20 Thread Wei Zheng (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-14878?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15592317#comment-15592317
 ] 

Wei Zheng commented on HIVE-14878:
--

Our plan is to update the document when the feature is merged to master. Thanks 
[~leftylev] for tracking!

> integrate MM tables into ACID: add separate ACID type
> -
>
> Key: HIVE-14878
> URL: https://issues.apache.org/jira/browse/HIVE-14878
> Project: Hive
>  Issue Type: Sub-task
>Reporter: Sergey Shelukhin
>Assignee: Wei Zheng
> Fix For: hive-14535
>
> Attachments: HIVE-14878.1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14878) integrate MM tables into ACID: add separate ACID type

2016-10-20 Thread Lefty Leverenz (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-14878?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15591168#comment-15591168
 ] 

Lefty Leverenz commented on HIVE-14878:
---

How shall we track doc issues for this branch?  Some unnumbered branches have 
their own TODOC label and others have a separate JIRA issue for documentation.

Anyway, this should be documented when the branch gets merged into master.

* new table property "transactional_properties"="insert_only"
* new description for configuration property *hive.txn.operational.properties*

> integrate MM tables into ACID: add separate ACID type
> -
>
> Key: HIVE-14878
> URL: https://issues.apache.org/jira/browse/HIVE-14878
> Project: Hive
>  Issue Type: Sub-task
>Reporter: Sergey Shelukhin
>Assignee: Wei Zheng
> Fix For: hive-14535
>
> Attachments: HIVE-14878.1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14878) integrate MM tables into ACID: add separate ACID type

2016-10-18 Thread Wei Zheng (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-14878?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15586256#comment-15586256
 ] 

Wei Zheng commented on HIVE-14878:
--

CREATE TABLE statement for the new table type
{code}
CREATE TABLE t1 (c1 int, c2 string)
TBLPROPERTIES ("transactional"="true", 
"transactional_properties"="insert_only");
{code}

> integrate MM tables into ACID: add separate ACID type
> -
>
> Key: HIVE-14878
> URL: https://issues.apache.org/jira/browse/HIVE-14878
> Project: Hive
>  Issue Type: Sub-task
>Reporter: Sergey Shelukhin
>Assignee: Wei Zheng
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)