The HBase Client Failed to Connect to the Server for a Long Time
Question
A HBase server is faulty and cannot provide services. In this case, when a table operation is performed on the HBase client, why is the operation suspended and no response is received for a long time?
Answer
Problem Analysis
When the HBase server malfunctions, the table operation request from the HBase client is tried for several times and times out. The default timeout value is Integer.MAX_VALUE (2147483647 ms). The table operation request is retired constantly during such a long period of time and is suspended at last.
Solution
The HBase client provides two configuration items to configure the retry and timeout of the client. Table 1 describes them.
Set the following parameters in the Client installation path/HBase/hbase/conf/hbase-site.xml configuration file:
Parameter |
Description |
Default Value |
---|---|---|
hbase.client.operation.timeout |
Client operation timeout period You need to manually add the information to the configuration file. |
2147483647 ms |
hbase.client.retries.number |
Maximum retry times supported by all retryable operations. |
35 |
Figure 1 describes the working principles of retry and timeout.
The process indicates that a suspension occurs if the preceding parameters are not configured based on site requirements. It is recommended that a proper timeout period be set based on scenarios. If the operation takes a long time, set a long timeout period. If the operation takes a shot time, set a short timeout period. The number of retries can be set to (hbase.client.retries.number)*60*1000(ms). The timeout period can be slightly greater than hbase.client.operation.timeout.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot