Solr - "maxWriteMBPerSec" 配置值是兆字节还是兆比特?

Solr - Is the "maxWriteMBPerSec" config value in megabytes or megabits?

文档没有定义 "maxWriteMBPerSec" 是使用兆字节还是兆比特。我认为它的字节和位会很小,但有人可以确认一下吗?

以兆字节为单位。来自 the Lucene source code for RateLimiter.SimpleRateLimiter:

double secondsToPause = (bytes/1024./1024.) / mbPerSec;