使用asinfo将额外的设备添加到命名空间

时间:2017-08-24 16:36:33

标签: aerospike

根据我在配置文档中看到的,使用以下命令在同一名称空间中配置多个设备很容易:

namespace <namespace-name> {
    memory-size <SIZE>G         # Maximum memory allocation for primary
                                # and secondary indexes.
    storage-engine device {     # Configure the storage-engine to use persistence
        device /dev/<device>    # raw device. Maximum size is 2 TiB
        # device /dev/<device>  # (optional) another raw device.
        write-block-size 128K   # adjust block size to make it efficient for SSDs.
    }
}

无论如何,如果不重新启动asd服务,我能做到吗?例如,使用asinfo工具?

1 个答案:

答案 0 :(得分:3)

不,您无法动态添加设备。

用户也在这里发布: https://discuss.aerospike.com/t/adding-extra-device-to-namespace-using-asinfo/4525