Match语句返回提示Storage Error

运行如下查询:
CREATE TAG INDEX IF NOT EXISTS processindex ON windows_process();
CREATE TAG INDEX IF NOT EXISTS fileindex ON windows_file();
MATCH --(v:linux_process)–(w:linux_file) RETURN (v);

其中CREATE INDEX语句均可以正确返回,MATCH语句返回的错误如下:
ResultSet(ExecutionResponse(
error_code=-8,
latency_in_us=64972030,
space_name=b’data_graph’,
error_msg=b’Storage Error: part: 10, error: E_RPC_FAILURE(-3).’))

环境:
nebula 版本:nebula 2.0 GA
部署方式:单机
硬件信息
磁盘 500G
CPU、内存信息 40C 128G

建完索引立马查询可能信息还没更新到缓存,重试一下应该就没问题了

重试后返回错误:
Connect 127.0.0.1:9669 failed: socket error connecting to host 127.0.0.1, port 9669 ((‘127.0.0.1’, 9669)): timeout(‘timed out’)

看着是服务没有起来 在安装目录./scripts/nebula.service status all 看一下状态

如果服务没有起来的话,create index应该不会执行成功,但是实际上执行成功了;而且在studio里使用图探索搜索VID是可以返回结果的。