我们当前正在使用EBS卷来存储我们的工件,并且已经超出了16TB的卷大小,并希望为Artifactory添加更多存储。将另一个EBS卷添加到现有单节点工件实例(v5.8.4)的最佳方法是什么。我尝试将下面的双碎片配置为binarystore.xml,但是在下面的“状态感知”信息下看到了这两个碎片。
已使用:0 /未定义NaN(NaN%)
<config version="4">
<chain>
<provider id="file-system" type="file-system"> <!-- This is a file-system filestore -->
<provider id="sharding" type="sharding"> <!-- This is a sharding provider -->
<sub-provider id="shard1" type="state-aware"/> <!-- There are two mounts -->
<sub-provider id="shard2" type="state-aware"/>
</provider>
</provider>
</chain>
// Specify the read and write strategy and redundancy for the sharding binary provider
<provider id="sharding" type="sharding">
<readBehavior>roundRobin</readBehavior>
<writeBehavior>percentageFreeSpace</writeBehavior>
<redundancy>1</redundancy>
</provider>
//For each sub-provider (mount), specify the filestore location
<provider id="shard1" type="state-aware">
<fileStoreDir>/opt/docker/artifactory/data/filestore</fileStoreDir> <!--current filestore-->
</provider>
<provider id="shard2" type="state-aware">
<fileStoreDir>/artifactoryfilestore2</fileStoreDir> <!--new EBS volume mount-->
</provider>
</config>
请问我的方法是否正确/不正确,以增加Artifactory的空间,是否需要在下面的二进制分片配置中进行任何更改?
谢谢, NR