Galaxybase图形数据库客户端连接中断问题

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

我在使用 Galaxybase 图形数据库时遇到问题。我收到的错误消息是“与 [127.0.0.1] 的连接将中断,客户端消耗的缓冲区没有超过 900000 毫秒。”

Here's  the code I'm using to connect to the Galaxybase graph database:

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");

            session.close(); // Close the session

            graphDB.close(); // Close the database connection
        } catch (Exception e) {
            // Handle exceptions
            e.printStackTrace();
        }
    }
}
graph-databases
1个回答
0
投票
  1. 验证是否是由于代码编写错误导致无法正常消耗全部数据。
  2. 如果有业务需要更长的处理时间,可以通过配置“write.controller.max.waiting”进行调整。默认值为 900,000 毫秒。
© www.soinside.com 2019 - 2024. All rights reserved.