[ https://issues.apache.org/jira/browse/HIVE-17523?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16184168#comment-16184168 ]
Hive QA commented on HIVE-17523: -------------------------------- Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12889393/HIVE-17523.2.patch {color:green}SUCCESS:{color} +1 due to 1 test(s) being added or modified. {color:red}ERROR:{color} -1 due to 8 failed/errored test(s), 11089 tests executed *Failed tests:* {noformat} org.apache.hadoop.hive.cli.TestAccumuloCliDriver.testCliDriver[accumulo_predicate_pushdown] (batchId=232) org.apache.hadoop.hive.cli.TestAccumuloCliDriver.testCliDriver[accumulo_single_sourced_multi_insert] (batchId=232) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[optimize_nullscan] (batchId=162) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[union_fast_stats] (batchId=157) org.apache.hadoop.hive.cli.TestMiniSparkOnYarnCliDriver.testCliDriver[spark_explainuser_1] (batchId=171) org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver[explainanalyze_2] (batchId=101) org.apache.hadoop.hive.cli.TestPerfCliDriver.testCliDriver[query23] (batchId=236) org.apache.hadoop.hive.cli.TestPerfCliDriver.testCliDriver[query64] (batchId=236) {noformat} Test results: https://builds.apache.org/job/PreCommit-HIVE-Build/7022/testReport Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/7022/console Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-7022/ Messages: {noformat} Executing org.apache.hive.ptest.execution.TestCheckPhase Executing org.apache.hive.ptest.execution.PrepPhase Executing org.apache.hive.ptest.execution.ExecutionPhase Executing org.apache.hive.ptest.execution.ReportingPhase Tests exited with: TestsFailedException: 8 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12889393 - PreCommit-HIVE-Build > Insert into druid table hangs Hive server2 in an infinit loop > -------------------------------------------------------------- > > Key: HIVE-17523 > URL: https://issues.apache.org/jira/browse/HIVE-17523 > Project: Hive > Issue Type: Bug > Components: Druid integration > Reporter: slim bouguerra > Assignee: Nishant Bangarwa > Labels: pull-request-available > Attachments: HIVE-17523.2.patch, HIVE-17523.patch > > > Inserting data via insert into table backed by druid can lead to a Hive > server hang. > This is due to some bug in the naming of druid segments partitions. > To reproduce the issue > {code} > drop table login_hive; > create table login_hive(`timecolumn` timestamp, `userid` string, `num_l` > double); > insert into login_hive values ('2015-01-01 00:00:00', 'user1', 5); > insert into login_hive values ('2015-01-01 01:00:00', 'user2', 4); > insert into login_hive values ('2015-01-01 02:00:00', 'user3', 2); > insert into login_hive values ('2015-01-02 00:00:00', 'user1', 1); > insert into login_hive values ('2015-01-02 01:00:00', 'user2', 2); > insert into login_hive values ('2015-01-02 02:00:00', 'user3', 8); > insert into login_hive values ('2015-01-03 00:00:00', 'user1', 5); > insert into login_hive values ('2015-01-03 01:00:00', 'user2', 9); > insert into login_hive values ('2015-01-03 04:00:00', 'user3', 2); > insert into login_hive values ('2015-03-09 00:00:00', 'user3', 5); > insert into login_hive values ('2015-03-09 01:00:00', 'user1', 0); > insert into login_hive values ('2015-03-09 05:00:00', 'user2', 0); > drop table login_druid; > CREATE TABLE login_druid > STORED BY 'org.apache.hadoop.hive.druid.DruidStorageHandler' > TBLPROPERTIES ("druid.datasource" = "druid_login_test_tmp", > "druid.segment.granularity" = "DAY", "druid.query.granularity" = "HOUR") > AS > select `timecolumn` as `__time`, `userid`, `num_l` FROM login_hive; > select * FROM login_druid; > insert into login_druid values ('2015-03-09 05:00:00', 'user4', 0); > {code} > This patch unifies the logic of pushing and segments naming by using Druid > data segment pusher as much as possible. > This patch also has some minor code refactoring and test enhancements. > -- This message was sent by Atlassian JIRA (v6.4.14#64029)