weizhouapache commented on PR #8481:
URL: https://github.com/apache/cloudstack/pull/8481#issuecomment-1886726914
> > Yes @GutoVeronezi, there are global settings to (1) notify users, or (2)
disable new volume allocation, if allocated capacity or actual used capacity
reaches a threshold.
> > The thresholds are around 75% or 85%, so users have enough time to get
more storage or clean the storage.
>
> ok, I thought only overprovisioned threshold would be signalled. I don't
know of an extra guard on the actual threshold , but then again we would expect
operators to do their due diligence. Sorry for the over-paranoia.
no worries @DaanHoogland
I think this is a frequently asked question for many users.
```
mysql> select name,default_value,description from configuration where name
like "cluster.storage%" or name like "pool.storage%";
+----------------------------------------------------------+---------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| name | default_value |
description
|
+----------------------------------------------------------+---------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| cluster.storage.allocated.capacity.notificationthreshold | 0.75 |
Percentage (as a value between 0 and 1) of allocated storage utilization above
which alerts will be sent about low storage available.
|
| cluster.storage.capacity.notificationthreshold | 0.75 |
Percentage (as a value between 0 and 1) of storage utilization above which
alerts will be sent about low storage available.
|
| cluster.storage.operations.exclude | false |
Exclude cluster from storage operations
|
| pool.storage.allocated.capacity.disablethreshold | 0.85 |
Percentage (as a value between 0 and 1) of allocated storage utilization above
which allocators will disable using the pool for low allocated storage
available. |
| pool.storage.capacity.disablethreshold | 0.85 |
Percentage (as a value between 0 and 1) of storage utilization above which
allocators will disable using the pool for low storage available.
|
+----------------------------------------------------------+---------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
5 rows in set (0.00 sec)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]