[hive] branch master updated (a7e937e -> 68daf79)

2021-06-23 Thread kgyrtkirk
This is an automated email from the ASF dual-hosted git repository.

kgyrtkirk pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git.


from a7e937e  HIVE-25085: MetaStore Clients no longer shared across 
sessions. (#2238) (Steve Carlin reviewed by Kishen Das and Zoltan Haindrich)
 add 68daf79  HIVE-25101: Remove HBase libraries from Hive distribution 
(#2259) (Istvan Toth reviewed by Zoltan Haindrich)

No new revisions were added by this update.

Summary of changes:
 bin/hive   | 85 +-
 common/pom.xml |  4 +
 druid-handler/pom.xml  |  5 ++
 hbase-handler/pom.xml  |  8 ++
 itests/hive-unit/pom.xml   |  2 +
 llap-server/pom.xml| 15 
 .../llap/cli/service/AsyncTaskCopyAuxJars.java | 21 +++---
 .../llap/cli/service/LlapServiceCommandLine.java   | 14 
 pom.xml|  7 ++
 ql/pom.xml | 13 +++-
 .../hive/ql/exec/spark/HiveSparkClientFactory.java |  6 +-
 11 files changed, 129 insertions(+), 51 deletions(-)


[hive] branch master updated (2aafcdd -> a7e937e)

2021-06-23 Thread kgyrtkirk
This is an automated email from the ASF dual-hosted git repository.

kgyrtkirk pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git.


from 2aafcdd  HIVE-25216: Vectorized reading of ORC tables via Iceberg 
(Adam Szita, reviewed by Peter Vary)
 add a7e937e  HIVE-25085: MetaStore Clients no longer shared across 
sessions. (#2238) (Steve Carlin reviewed by Kishen Das and Zoltan Haindrich)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/hadoop/hive/ql/metadata/Hive.java   |  8 ++
 .../hadoop/hive/ql/session/SessionState.java   | 22 +--
 .../hive/service/cli/operation/SQLOperation.java   |  7 -
 .../hive/service/cli/session/HiveSessionImpl.java  | 32 ++
 4 files changed, 42 insertions(+), 27 deletions(-)


[hive] branch master updated (57b633a -> 2aafcdd)

2021-06-23 Thread szita
This is an automated email from the ASF dual-hosted git repository.

szita pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git.


from 57b633a  HIVE-25234: Implement ALTER TABLE ... SET PARTITION SPEC to 
change partitioning on Iceberg tables (#2382) (Laszlo Pinter, reviewed by 
Marton Bod and Peter Vary)
 add 2aafcdd  HIVE-25216: Vectorized reading of ORC tables via Iceberg 
(Adam Szita, reviewed by Peter Vary)

No new revisions were added by this update.

Summary of changes:
 .../iceberg/mr/hive/HiveIcebergInputFormat.java|  53 ++-
 .../apache/iceberg/mr/hive/HiveIcebergSerDe.java   |   4 -
 .../vector/HiveIcebergVectorizedRecordReader.java  |  74 
 .../mr/hive/vector/HiveVectorizedReader.java   | 138 
 .../mr/hive/vector/VectorizedRowBatchIterator.java |  91 +
 .../mapred/AbstractMapredIcebergRecordReader.java  |  70 
 .../mr/mapred/MapredIcebergInputFormat.java|  58 ++-
 .../iceberg/mr/mapreduce/IcebergInputFormat.java   |  52 ++-
 .../TestHiveIcebergStorageHandlerWithEngine.java   |  25 +-
 .../negative/create_iceberg_table_failure.q|   2 -
 .../queries/positive/vectorized_iceberg_read.q |  34 ++
 .../negative/create_iceberg_table_failure.q.out|   5 -
 .../results/positive/vectorized_iceberg_read.q.out | 170 +
 .../hive/ql/exec/vector/VectorizedRowBatchCtx.java | 390 +++--
 14 files changed, 912 insertions(+), 254 deletions(-)
 create mode 100644 
iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/vector/HiveIcebergVectorizedRecordReader.java
 create mode 100644 
iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/vector/HiveVectorizedReader.java
 create mode 100644 
iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/vector/VectorizedRowBatchIterator.java
 create mode 100644 
iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/mapred/AbstractMapredIcebergRecordReader.java
 delete mode 100644 
iceberg/iceberg-handler/src/test/queries/negative/create_iceberg_table_failure.q
 create mode 100644 
iceberg/iceberg-handler/src/test/queries/positive/vectorized_iceberg_read.q
 delete mode 100644 
iceberg/iceberg-handler/src/test/results/negative/create_iceberg_table_failure.q.out
 create mode 100644 
iceberg/iceberg-handler/src/test/results/positive/vectorized_iceberg_read.q.out


[hive] branch master updated (e7de6de -> 57b633a)

2021-06-23 Thread lpinter
This is an automated email from the ASF dual-hosted git repository.

lpinter pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git.


from e7de6de  HIVE-25208: Refactor Iceberg commit to the MoveTask/MoveWork 
(Peter Vary reviewed by Marton Bod and Marta Kuczora)
 add 57b633a  HIVE-25234: Implement ALTER TABLE ... SET PARTITION SPEC to 
change partitioning on Iceberg tables (#2382) (Laszlo Pinter, reviewed by 
Marton Bod and Peter Vary)

No new revisions were added by this update.

Summary of changes:
 .../src/test/results/negative/hbase_ddl.q.out  |  2 +-
 .../iceberg/mr/hive/HiveIcebergMetaHook.java   | 50 +++-
 .../apache/iceberg/mr/hive/IcebergTableUtil.java   | 62 +++
 .../hive/TestHiveIcebergStorageHandlerNoScan.java  | 89 +-
 .../hadoop/hive/ql/parse/AlterClauseParser.g   |  8 ++
 .../org/apache/hadoop/hive/ql/parse/HiveParser.g   |  9 ++-
 .../ddl/table/AbstractBaseAlterTableAnalyzer.java  |  9 ++-
 .../hadoop/hive/ql/ddl/table/AlterTableType.java   |  3 +-
 .../set/AlterTableSetPartitionSpecAnalyzer.java}   | 42 +-
 .../set/AlterTableSetPartitionSpecDesc.java}   | 16 ++--
 .../set/AlterTableSetPartitionSpecOperation.java}  | 14 ++--
 .../apache/hadoop/hive/ql/plan/HiveOperation.java  |  1 +
 .../authorization/plugin/HiveOperationType.java|  1 +
 .../plugin/sqlstd/Operation2Privilege.java |  2 +
 .../results/clientnegative/alter_non_native.q.out  |  2 +-
 15 files changed, 246 insertions(+), 64 deletions(-)
 copy 
ql/src/java/org/apache/hadoop/hive/ql/ddl/table/{storage/cluster/AlterTableIntoBucketsAnalyzer.java
 => partition/set/AlterTableSetPartitionSpecAnalyzer.java} (60%)
 copy 
ql/src/java/org/apache/hadoop/hive/ql/ddl/table/{storage/skewed/AlterTableNotSkewedDesc.java
 => partition/set/AlterTableSetPartitionSpecDesc.java} (70%)
 copy 
ql/src/java/org/apache/hadoop/hive/ql/ddl/table/{misc/owner/AlterTableSetOwnerOperation.java
 => partition/set/AlterTableSetPartitionSpecOperation.java} (72%)


[hive] branch master updated (5159f5d -> e7de6de)

2021-06-23 Thread pvary
This is an automated email from the ASF dual-hosted git repository.

pvary pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git.


from 5159f5d  HIVE-25207. Expose incremental load statistics via JMX. 
(#2356)(Ayush Saxena, reviewed by Aasha Medhi)
 add e7de6de  HIVE-25208: Refactor Iceberg commit to the MoveTask/MoveWork 
(Peter Vary reviewed by Marton Bod and Marta Kuczora)

No new revisions were added by this update.

Summary of changes:
 .../iceberg/mr/hive/HiveIcebergMetaHook.java   | 72 +-
 .../iceberg/mr/hive/HiveIcebergStorageHandler.java | 65 +++
 .../org/apache/hadoop/hive/ql/exec/MoveTask.java   | 54 +++-
 .../hive/ql/metadata/HiveStorageHandler.java   | 21 +++
 .../hadoop/hive/ql/parse/SemanticAnalyzer.java | 19 +-
 .../apache/hadoop/hive/ql/parse/TaskCompiler.java  |  6 +-
 6 files changed, 142 insertions(+), 95 deletions(-)


[hive] branch master updated (d7a6175 -> 5159f5d)

2021-06-23 Thread aasha
This is an automated email from the ASF dual-hosted git repository.

aasha pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git.


from d7a6175  HIVE-25274: TestLimitOperator fails if default engine is Tez 
(#2417) (Laszlo Bodor reviewed by Mahesh Kumar Behera)
 add 5159f5d  HIVE-25207. Expose incremental load statistics via JMX. 
(#2356)(Ayush Saxena, reviewed by Aasha Medhi)

No new revisions were added by this update.

Summary of changes:
 .../hive/ql/parse/TestReplicationScenarios.java|  48 +++-
 .../hadoop/hive/ql/exec/repl/ReplLoadWork.java | 126 -
 .../hive/ql/exec/repl/ReplLoadWorkMBean.java   |  76 +
 .../hadoop/hive/ql/exec/repl/ReplStatsTracker.java |  15 +++
 .../repl/metric/ReplicationMetricCollector.java|  22 
 5 files changed, 284 insertions(+), 3 deletions(-)
 create mode 100644 
ql/src/java/org/apache/hadoop/hive/ql/exec/repl/ReplLoadWorkMBean.java