Java
Install the Java Development Kit(JDK)
Make sure that your system has JDK 8 or later installed. For more information on how to check your version of Java and install the JDK, see the Oracle Overview of JDK Installation documentation
Create the Project
This guide demonstrates how to add Java SDK dependencies using Maven. It is advisable to utilize an integrated development environment (IDE) like Intellij IDEA or Eclipse IDE for easier configuration of Maven in building and running your project.
If you are not using an IDE, see Building Maven for more information on how to set up your project.
Add GreptiemDB Java SDK as a Dependency
If you are using Maven, add the following to your pom.xml dependencies list:
<dependencies>
<dependency>
<groupId>io.greptime</groupId>
<artifactId>greptimedb-all</artifactId>
<version>${latest_version}</version>
</dependency>
</dependencies>
The latest version can be viewed here.
After configuring your dependencies, make sure they are available to your project. This may require refreshing the project in your IDE or running the dependency manager.
Connect to the Database
Now, we can create a file to contain your application called QuickStart.java
in the base package directory of you project. Use the following sample code to connect database, replacing the value of endpoints
variable with your real connection string.
java
package io.greptime.example;
import io.greptime.GreptimeDB;
import io.greptime.models.AuthInfo;
import io.greptime.models.ColumnDataType;
import io.greptime.models.Err;
import io.greptime.models.QueryOk;
import io.greptime.models.QueryRequest;
import io.greptime.models.Result;
import io.greptime.models.SelectExprType;
import io.greptime.models.SelectRows;
import io.greptime.models.SemanticType;
import io.greptime.models.TableName;
import io.greptime.models.TableSchema;
import io.greptime.models.WriteOk;
import io.greptime.models.WriteRows;
import io.greptime.options.GreptimeOptions;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
/**
* @author jiachun.fjc
*/
public class QuickStart {
private static final Logger LOG = LoggerFactory.getLogger(QuickStart.class);
public static void main(String[] args) throws Exception {
String endpoint = "127.0.0.1:4001";
AuthInfo authInfo = new AuthInfo("username", "password");
GreptimeOptions opts = GreptimeOptions.newBuilder(endpoint) //
.authInfo(authInfo) // By default, no authentication is required; you can remove this line.
.writeMaxRetries(1) //
.readMaxRetries(2) //
.routeTableRefreshPeriodSeconds(-1) //
.build();
GreptimeDB greptimeDB = new GreptimeDB();
if (!greptimeDB.init(opts)) {
throw new RuntimeException("Fail to start GreptimeDB client");
}
}
}
See Java SDK in reference to get more configurations and metrics.
Write Data
Please refer to write data.
Query Data
Please refer to Query data.