You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Erik Krogen (JIRA)" <ji...@apache.org> on 2018/12/18 17:56:06 UTC

[jira] [Created] (HADOOP-16013) DecayRpcScheduler decay thread should run as a daemon

Erik Krogen created HADOOP-16013:
------------------------------------

             Summary: DecayRpcScheduler decay thread should run as a daemon
                 Key: HADOOP-16013
                 URL: https://issues.apache.org/jira/browse/HADOOP-16013
             Project: Hadoop Common
          Issue Type: Bug
          Components: ipc
    Affects Versions: 3.3.0
            Reporter: Erik Krogen
            Assignee: Erik Krogen


{{DecayRpcScheduler}} sets up a {{Timer}} to schedule a decay of the weights it tracks:
{code}
    // Setup delay timer
    Timer timer = new Timer();
    DecayTask task = new DecayTask(this, timer);
    timer.scheduleAtFixedRate(task, decayPeriodMillis, decayPeriodMillis);
{code}
However this Timer is not set up as a daemon thread. I have seen this cause my JVM to refuse to exit when running, for example, NNThroughputBenchmark with FairCallQueue enabled.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org