[
https://issues.apache.org/jira/browse/HIVE-21841?focusedWorklogId=261147&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-261147
]
ASF GitHub Bot logged work on HIVE-21841:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 17/Jun/19 05:16
Start Date: 17/Jun/19 05:16
Worklog Time Spent: 10m
Work Description: maheshk114 commented on pull request #668: HIVE-21841 :
Add configuration to specify the hostname of HMS leader …to run housekeeping
tasks in.
URL: https://github.com/apache/hive/pull/668#discussion_r294132096
##########
File path:
standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/MetaStoreTestUtils.java
##########
@@ -75,7 +79,16 @@ public static void startMetaStore(final int port,
@Override
public void run() {
try {
- HiveMetaStore.startMetaStore(port, bridge, finalConf);
+ Lock startLock = null;
+ Condition startCondition = null;
+ AtomicBoolean startedServing = null;
+ if (withHouseKeepingThreads) {
+ startLock = new ReentrantLock();
+ startCondition = startLock.newCondition();
+ startedServing = new AtomicBoolean();
Review comment:
its better to initialize AtomicBoolean with false ..
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 261147)
Time Spent: 40m (was: 0.5h)
> Leader election in HMS to run housekeeping tasks.
> -------------------------------------------------
>
> Key: HIVE-21841
> URL: https://issues.apache.org/jira/browse/HIVE-21841
> Project: Hive
> Issue Type: New Feature
> Affects Versions: 4.0.0
> Reporter: Ashutosh Bapat
> Assignee: Ashutosh Bapat
> Priority: Major
> Labels: pull-request-available
> Fix For: 4.0.0
>
> Attachments: HIVE-21841.01.patch, HIVE-21841.02.patch
>
> Time Spent: 40m
> Remaining Estimate: 0h
>
> HMS performs housekeeping tasks. When there are multiple HMSes we need to
> have a leader HMS elected which will carry out those housekeeping tasks.
> These tasks include execution of compaction tasks, auto-discovering
> partitions for external tables, generation of compaction tasks, repl thread
> etc.
> Note that, though the code for compaction tasks, auto-discovery of partitions
> etc. is in Hive, the actual tasks are initiated by an HMS configured to do
> so. So, leader election is required only for HMS and not for HS2.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)