[ 
https://issues.apache.org/jira/browse/HDFS-14350?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ayush Saxena resolved HDFS-14350.
---------------------------------
    Fix Version/s:     (was: 3.2.0)
       Resolution: Duplicate

> dfs.datanode.ec.reconstruction.threads not take effect
> ------------------------------------------------------
>
>                 Key: HDFS-14350
>                 URL: https://issues.apache.org/jira/browse/HDFS-14350
>             Project: Hadoop HDFS
>          Issue Type: Bug
>          Components: datanode, ec
>    Affects Versions: 3.2.0
>            Reporter: hunshenshi
>            Assignee: hunshenshi
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> In ErasureCodingWorker, stripedReconstructionPool is create by 
> {code:java}
> initializeStripedBlkReconstructionThreadPool(conf.getInt(
>     DFSConfigKeys.DFS_DN_EC_RECONSTRUCTION_THREADS_KEY,
>     DFSConfigKeys.DFS_DN_EC_RECONSTRUCTION_THREADS_DEFAULT));
> private void initializeStripedBlkReconstructionThreadPool(int numThreads) {
>   LOG.debug("Using striped block reconstruction; pool threads={}",
>       numThreads);
>   stripedReconstructionPool = DFSUtilClient.getThreadPoolExecutor(2,
>       numThreads, 60, new LinkedBlockingQueue<>(),
>       "StripedBlockReconstruction-", false);
>   stripedReconstructionPool.allowCoreThreadTimeOut(true);
> }{code}
> so stripedReconstructionPool is a ThreadPoolExecutor, and the queue is a 
> LinkedBlockingQueue, then the active thread is awalys 2, the 
> dfs.datanode.ec.reconstruction.threads not take effect.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-dev-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-dev-h...@hadoop.apache.org

Reply via email to