You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "stack (JIRA)" <ji...@apache.org> on 2018/03/21 22:09:13 UTC

[jira] [Updated] (HBASE-17064) Add TaskMonitor#getTasks() variant which accepts type selection

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

stack updated HBASE-17064:
--------------------------
    Fix Version/s:     (was: 3.0.0)

> Add TaskMonitor#getTasks() variant which accepts type selection
> ---------------------------------------------------------------
>
>                 Key: HBASE-17064
>                 URL: https://issues.apache.org/jira/browse/HBASE-17064
>             Project: HBase
>          Issue Type: Improvement
>            Reporter: Ted Yu
>            Assignee: Reid Chan
>            Priority: Minor
>              Labels: ui
>             Fix For: 2.0.0-alpha-2, 2.0.0
>
>         Attachments: HBASE-17064.master.001.patch
>
>
> In TaskMonitorTmpl.jamon :
> {code}
> List<? extends MonitoredTask> tasks = taskMonitor.getTasks();
> Iterator<? extends MonitoredTask> iter = tasks.iterator();
> // apply requested filter
> while (iter.hasNext()) {
>   MonitoredTask t = iter.next();
>   if (filter.equals("general")) {
>     if (t instanceof MonitoredRPCHandler)
>       iter.remove();
> {code}
> This means when user refreshes rs-status page, regardless of the type of filter, we always traverse and clone MonitoredTask's.
> getTasks() is synchronized :
> {code}
>   public synchronized List<MonitoredTask> getTasks() {
> {code}
> A variant of getTasks() can be added which takes the type of filter so that unnecessary cloning is avoided.



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