You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Andrew Purtell (JIRA)" <ji...@apache.org> on 2019/02/01 20:14:01 UTC

[jira] [Updated] (HBASE-21357) RS should abort if OOM in Reader thread

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

Andrew Purtell updated HBASE-21357:
-----------------------------------
    Fix Version/s:     (was: 1.5.0)

> RS should abort if OOM in Reader thread
> ---------------------------------------
>
>                 Key: HBASE-21357
>                 URL: https://issues.apache.org/jira/browse/HBASE-21357
>             Project: HBase
>          Issue Type: Bug
>          Components: regionserver
>    Affects Versions: 1.4.8
>            Reporter: Allan Yang
>            Assignee: Allan Yang
>            Priority: Critical
>             Fix For: 1.3.3, 1.4.9, 1.2.9
>
>         Attachments: HBASE-21357.branch-1.001.patch, HBASE-21357.branch-1.001.patch
>
>
> It is a bit strange, we will abort the RS if OOM in Listener thread, Responder thread and in CallRunner thread, only not in Reader thread... 
> We should abort RS if OOM happens in Reader thread, too. If not, the reader thread exists because of OOM, and the selector closes. Later connection select to this reader will be ignored
> {code}
> try {
>               if (key.isValid()) {
>                 if (key.isAcceptable())
>                   doAccept(key);
>               }
>             } catch (IOException ignored) {
>               if (LOG.isTraceEnabled()) LOG.trace("ignored", ignored);
>             }
> {code}
> Leaving the client (or Master and other RS)'s call wait until SocketTimeout.



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