Galaxybase图数据库服务器提示“消息尚未开始”

问题描述 投票:0回答:1

我在使用 Galaxybase 图形数据库时遇到问题。我遇到的错误消息是“消息尚未开始。”

import com.galaxybase.driver.GraphDatabase;
import com.galaxybase.driver.GraphSession;

public class GraphDBExample {
    public static void main(String[] args) {
        try {
            GraphDatabase graphDB = new GraphDatabase("127.0.0.1"); // Connect to the local Galaxybase graph database
            GraphSession session = graphDB.createSession();

            // Execute query or operation statements
            session.execute("MATCH (n:Node) RETURN n");

            // Prematurely closing the connection leads to server-side exception
            session.close();

            graphDB.close();
        } catch (Exception e) {
            // Handle exceptions
            e.printStackTrace();
        }
    }
}
graph-databases
1个回答
0
投票

连接提前关闭,因为它没有正确消耗数据。

如果服务器返回的数据无法批量发送回客户端,则客户端被强制关闭,这会导致服务器抛出异常。

该异常不影响正确性,需要验证客户端是否正确消费数据。

© www.soinside.com 2019 - 2024. All rights reserved.