[ https://issues.apache.org/jira/browse/HIVE-15269?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15833759#comment-15833759 ]
Hive QA commented on HIVE-15269: -------------------------------- Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12848797/HIVE-15269.18.patch {color:green}SUCCESS:{color} +1 due to 5 test(s) being added or modified. {color:red}ERROR:{color} -1 due to 6 failed/errored test(s), 10978 tests executed *Failed tests:* {noformat} TestDerbyConnector - did not produce a TEST-*.xml file (likely timed out) (batchId=235) org.apache.hadoop.hive.cli.TestEncryptedHDFSCliDriver.testCliDriver[encryption_join_with_different_encryption_keys] (batchId=159) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[offset_limit_ppd_optimizer] (batchId=151) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[schema_evol_text_vec_part] (batchId=149) org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver[explainuser_3] (batchId=93) org.apache.hadoop.hive.cli.TestPerfCliDriver.testCliDriver[query23] (batchId=223) {noformat} Test results: https://builds.apache.org/job/PreCommit-HIVE-Build/3119/testReport Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/3119/console Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-3119/ 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: 6 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12848797 - PreCommit-HIVE-Build > Dynamic Min-Max runtime-filtering for Tez > ----------------------------------------- > > Key: HIVE-15269 > URL: https://issues.apache.org/jira/browse/HIVE-15269 > Project: Hive > Issue Type: New Feature > Reporter: Jason Dere > Assignee: Deepak Jaiswal > Attachments: HIVE-15269.10.patch, HIVE-15269.11.patch, > HIVE-15269.12.patch, HIVE-15269.13.patch, HIVE-15269.14.patch, > HIVE-15269.15.patch, HIVE-15269.16.patch, HIVE-15269.17.patch, > HIVE-15269.18.patch, HIVE-15269.1.patch, HIVE-15269.2.patch, > HIVE-15269.3.patch, HIVE-15269.4.patch, HIVE-15269.5.patch, > HIVE-15269.6.patch, HIVE-15269.7.patch, HIVE-15269.8.patch, HIVE-15269.9.patch > > > If a dimension table and fact table are joined: > {noformat} > select * > from store join store_sales on (store.id = store_sales.store_id) > where store.s_store_name = 'My Store' > {noformat} > One optimization that can be done is to get the min/max store id values that > come out of the scan/filter of the store table, and send this min/max value > (via Tez edge) to the task which is scanning the store_sales table. > We can add a BETWEEN(min, max) predicate to the store_sales TableScan, where > this predicate can be pushed down to the storage handler (for example for ORC > formats). Pushing a min/max predicate to the ORC reader would allow us to > avoid having to entire whole row groups during the table scan. -- This message was sent by Atlassian JIRA (v6.3.4#6332)