Java SDK
The GreptimeDB Java SDK uses gRPC to communicate with the database. For more information on how to use the SDK, please refer to the Java SDK documentation.
To connect to GreptimeCloud, using information below:
- Host:
<host>
- Port:
4001
- Database:
<dbname>
- Username:
<username>
- Password: Your GreptimeCloud service password
The following code snippet shows how to create a client.
java
String endpoint = "<host>:4001";
AuthInfo authInfo = new AuthInfo("<username>", "*Your GreptimeCloud service password*");
GreptimeOptions opts = GreptimeOptions.newBuilder(endpoint) //
.authInfo(authInfo)
.writeMaxRetries(1) //
.readMaxRetries(2) //
.routeTableRefreshPeriodSeconds(-1) //
.build();
GreptimeDB greptimeDB = new GreptimeDB();
if (!greptimeDB.init(opts)) {
throw new RuntimeException("Fail to start GreptimeDB client");
}
After creating a GreptimeDB client, you can set database while writing data or querying data. For example query data:
java
QueryRequest request = QueryRequest.newBuilder() //
.exprType(SelectExprType.Sql) //
.ql("SELECT * FROM monitor;") //
.databaseName("<dbname>") //
.build();
当前内容版权归 GreptimeDB 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 GreptimeDB .