[jira] [Created] (HBASE-28371) Suppress the noisy logging on HBaseAdmin#postOperationResult

2024-02-15 Thread Rajeshbabu Chintaguntla (Jira)
Rajeshbabu Chintaguntla created HBASE-28371:
---

 Summary: Suppress the noisy logging on 
HBaseAdmin#postOperationResult
 Key: HBASE-28371
 URL: https://issues.apache.org/jira/browse/HBASE-28371
 Project: HBase
  Issue Type: Bug
Reporter: Rajeshbabu Chintaguntla
Assignee: Rajeshbabu Chintaguntla


While testing 2.6.0 found that for every admin operation there is INFO log of 
operation status which is noisy. Would be better to suppress by making it debug.
{noformat}

hbase:002:0> create 't','f'
2024-02-16 06:02:38,887 INFO  [main] client.HBaseAdmin: Operation: CREATE, 
Table Name: default:t, procId: 65 completed
Created table t

{noformat}
{noformat}

hbase:006:0> flush 't'
2024-02-16 06:03:16,294 INFO  [main] client.HBaseAdmin: Operation: FLUSH, Table 
Name: default:t, procId: 68 completed
Took 0.3733 seconds

{noformat}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (HBASE-28370) Default user quotas are refreshing too frequently

2024-02-15 Thread Ray Mattingly (Jira)
Ray Mattingly created HBASE-28370:
-

 Summary: Default user quotas are refreshing too frequently
 Key: HBASE-28370
 URL: https://issues.apache.org/jira/browse/HBASE-28370
 Project: HBase
  Issue Type: Improvement
Reporter: Ray Mattingly


In [https://github.com/apache/hbase/pull/5666] we introduced default user 
quotas, but I accidentally called UserQuotaState's default constructor rather 
than passing in the current timestamp. The consequence is that we're constantly 
refreshing these default user quotas, and this can be a bottleneck for 
horizontal cluster scalability.

This should be a 1 line fix in QuotaUtil's buildDefaultUserQuotaState method.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)