[ https://issues.apache.org/jira/browse/HIVE-26537?focusedWorklogId=828254&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-828254 ]
ASF GitHub Bot logged work on HIVE-26537: ----------------------------------------- Author: ASF GitHub Bot Created on: 23/Nov/22 02:14 Start Date: 23/Nov/22 02:14 Worklog Time Spent: 10m Work Description: saihemanth-cloudera commented on code in PR #3599: URL: https://github.com/apache/hive/pull/3599#discussion_r1029969026 ########## standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift: ########## @@ -2602,21 +2665,29 @@ service ThriftHiveMetastore extends fb303.FacebookService Partition append_partition_with_environment_context(1:string db_name, 2:string tbl_name, 3:list<string> part_vals, 4:EnvironmentContext environment_context) throws (1:InvalidObjectException o1, 2:AlreadyExistsException o2, 3:MetaException o3) + Partition append_partition_req(1:AppendPartitionsRequest appendPartitionsReq) + throws (1:InvalidObjectException o1, 2:AlreadyExistsException o2, 3:MetaException o3) Partition append_partition_by_name(1:string db_name, 2:string tbl_name, 3:string part_name) throws (1:InvalidObjectException o1, 2:AlreadyExistsException o2, 3:MetaException o3) Partition append_partition_by_name_with_environment_context(1:string db_name, 2:string tbl_name, 3:string part_name, 4:EnvironmentContext environment_context) throws (1:InvalidObjectException o1, 2:AlreadyExistsException o2, 3:MetaException o3) + Partition append_partition_by_name_req(1:AppendPartitionRequest appendPartitionRequest) + throws (1:InvalidObjectException o1, 2:AlreadyExistsException o2, 3:MetaException o3) bool drop_partition(1:string db_name, 2:string tbl_name, 3:list<string> part_vals, 4:bool deleteData) throws(1:NoSuchObjectException o1, 2:MetaException o2) bool drop_partition_with_environment_context(1:string db_name, 2:string tbl_name, 3:list<string> part_vals, 4:bool deleteData, 5:EnvironmentContext environment_context) throws(1:NoSuchObjectException o1, 2:MetaException o2) + bool drop_partition_req(1:DropPartitionRequest dropPartitionReq) + throws(1:NoSuchObjectException o1, 2:MetaException o2) bool drop_partition_by_name(1:string db_name, 2:string tbl_name, 3:string part_name, 4:bool deleteData) throws(1:NoSuchObjectException o1, 2:MetaException o2) bool drop_partition_by_name_with_environment_context(1:string db_name, 2:string tbl_name, 3:string part_name, 4:bool deleteData, 5:EnvironmentContext environment_context) throws(1:NoSuchObjectException o1, 2:MetaException o2) + bool drop_partition_by_name_req(1:DropPartitionRequest dropPartitionReq) Review Comment: Yeah but both the APIs does different things. we cannot club both the APIs. Issue Time Tracking ------------------- Worklog Id: (was: 828254) Time Spent: 3.5h (was: 3h 20m) > Deprecate older APIs in the HMS > ------------------------------- > > Key: HIVE-26537 > URL: https://issues.apache.org/jira/browse/HIVE-26537 > Project: Hive > Issue Type: Improvement > Affects Versions: 4.0.0-alpha-1, 4.0.0-alpha-2 > Reporter: Sai Hemanth Gantasala > Assignee: Sai Hemanth Gantasala > Priority: Major > Labels: pull-request-available > Time Spent: 3.5h > Remaining Estimate: 0h > > This Jira is to track the clean-up(deprecate older APIs and point the HMS > client to the newer APIs) work in the hive metastore server. > More details will be added here soon. -- This message was sent by Atlassian Jira (v8.20.10#820010)