Java SDK

GreptimeDB Java SDK 使用 gRPC 与数据库通信, 请参考 Java SDK 文档查看更多 SDK 使用的相关内容。

请使用以下信息连接到 GreptimeCloud:

  • Host: <host>
  • Port: 4001
  • Database: <dbname>
  • Username: <username>
  • Password: <password>

下方的代码片段展示了如何使用 Java SDK 建立一个 client 连接对象:

java

  1. String endpoint = "<host>:4001";
  2. AuthInfo authInfo = new AuthInfo("<username>", "<password>");
  3. GreptimeOptions opts = GreptimeOptions.newBuilder(endpoint) //
  4. .authInfo(authInfo)
  5. .writeMaxRetries(1) //
  6. .readMaxRetries(2) //
  7. .routeTableRefreshPeriodSeconds(-1) //
  8. .build();
  9. GreptimeDB greptimeDB = new GreptimeDB();
  10. if (!greptimeDB.init(opts)) {
  11. throw new RuntimeException("Fail to start GreptimeDB client");
  12. }

在创建了 GreptimeDB 客户端之后,你可以在写入数据或查询数据时设置数据库。例如查询数据:

java

  1. QueryRequest request = QueryRequest.newBuilder() //
  2. .exprType(SelectExprType.Sql) //
  3. .ql("SELECT * FROM monitor;") //
  4. .databaseName("<dbname>") //
  5. .build();