简体   繁体   English

我的openshift v3说“已达到存储配额限制”

[英]My openshift v3 says “Storage quota limit has been reached”

I got a project at Openshift v2 that includes a mysql. 我在Openshift v2上有一个包含mysql的项目。 I migrated it to Openshift v3 (free), and all seems to be fine. 我将其迁移到Openshift v3(免费),一切似乎都很好。 But in the webconsole it says: 但在网络控制台中却说:

Storage quota limit has been reached. 已达到存储配额限制。 You will not be able to create any new storage. 您将无法创建任何新的存储。

But when I run a size_check_select : 但是当我运行size_check_select

SELECT table_schema "DB Name"
       , Round(Sum(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" 
  FROM information_schema.tables 
 GROUP BY table_schema; 

+--------------------+---------------+
| DB Name            | DB Size in MB |
+--------------------+---------------+
| information_schema |           0.2 |
| jbossas            |          10.3 |
| mysql              |           0.8 |
| performance_schema |           0.0 |
| sys                |           0.0 |
+--------------------+---------------+

It looks like I just use below 11MB how come I get this warning? 看来我只使用11MB以下的内存,我怎么得到这个警告? Is something eating memory? 有吃东西的记忆吗? Am I in trouble? 我有麻烦吗?

It is not talking about the amount of space you have used on the volume, but how many storage volumes you have claimed. 它不是在谈论您在该卷上使用了多少空间,而是在谈论您已声明多少存储卷。

Run: 跑:

oc get pvc

or look under Storage in the web console. 或在Web控制台中的“ 存储”下查看。 It likely shows you have 1 persistent volume claims, which in starter tier is all you are allowed. 它可能表明您有1个持久性批量声明,在初级用户级别中,这是您所允许的。 Thus it is warning you that you are at your limit. 因此,这警告您,您已处于极限。

You can look under Resources->Quota to see how much of the provided resources you have used and how much is still available. 您可以在“ 资源”->“配额”下查看以查看已使用的所提供资源的多少以及仍然可用的资源。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM