没有可用的 DSEFS 位置可写入数据
There are no available DSEFS locations to write data to
我的 datastax docker 图片有问题。我试图在 ddsefs 上复制文件,但出现此错误:
dsefs dsefs://127.0.1.1:5598/ > cp file:orifile.text destFile.text
Server error: java.io.IOException: There are no available DSEFS locations to write data to. DSEFS nodes are either unavailable or low on free space. Check node health and connectivity, add more storage space and/or adjust min_free_space if needed.
你能帮帮我吗?
此致,
卢卡
它基本上是说您没有给它足够的免费存储空间 space。 min_free_space
设置了一些保留(通过 dse.yaml
配置),DSEFS 永远不会触及。因此,如果 min_free_space
设置大于您节点上的实际可用存储 space,您将收到此错误。
我的 datastax docker 图片有问题。我试图在 ddsefs 上复制文件,但出现此错误:
dsefs dsefs://127.0.1.1:5598/ > cp file:orifile.text destFile.text
Server error: java.io.IOException: There are no available DSEFS locations to write data to. DSEFS nodes are either unavailable or low on free space. Check node health and connectivity, add more storage space and/or adjust min_free_space if needed.
你能帮帮我吗?
此致, 卢卡
它基本上是说您没有给它足够的免费存储空间 space。 min_free_space
设置了一些保留(通过 dse.yaml
配置),DSEFS 永远不会触及。因此,如果 min_free_space
设置大于您节点上的实际可用存储 space,您将收到此错误。