Skip to content

Commit

Permalink
0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fengjiachun committed Jan 10, 2024
1 parent e520dad commit c67e087
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion docs/metrics-display.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ By default, 2 files are generated in the program's working directory
```
--- GreptimeDB Client ---
id=1
version=0.5.0
version=0.5.1
endpoints=[127.0.0.1:4001]
database=public
rpcOptions=RpcOptions{useRpcSharedPool=false, defaultRpcTimeout=10000, maxInboundMessageSize=268435456, flowControlWindow=268435456, idleTimeoutSeconds=300, keepAliveTimeSeconds=9223372036854775807, keepAliveTimeoutSeconds=3, keepAliveWithoutCalls=false, limitKind=None, initialLimit=64, maxLimit=1024, longRttWindow=100, smoothing=0.2, blockOnLimit=false, logOnLimitChange=true, enableMetricInterceptor=false}
Expand Down
2 changes: 1 addition & 1 deletion ingester-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>greptimedb-ingester</artifactId>
<groupId>io.greptime</groupId>
<version>0.5.0</version>
<version>0.5.1</version>
</parent>

<artifactId>ingester-all</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ingester-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>greptimedb-ingester</artifactId>
<groupId>io.greptime</groupId>
<version>0.5.0</version>
<version>0.5.1</version>
</parent>

<artifactId>ingester-common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ingester-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>greptimedb-ingester</artifactId>
<groupId>io.greptime</groupId>
<version>0.5.0</version>
<version>0.5.1</version>
</parent>

<artifactId>ingester-example</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ingester-grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>greptimedb-ingester</artifactId>
<groupId>io.greptime</groupId>
<version>0.5.0</version>
<version>0.5.1</version>
</parent>

<artifactId>ingester-grpc</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ingester-protocol/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>greptimedb-ingester</artifactId>
<groupId>io.greptime</groupId>
<version>0.5.0</version>
<version>0.5.1</version>
</parent>

<artifactId>ingester-protocol</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* A stream writer to continuously write data to the database,
* typically used in data import scenarios. After completion,
* the stream needs to be closed(Call StreamWriter#completed()),
* the stream needs to be closed(Call `StreamWriter#completed()`),
* and the write result can be obtained from the database server.
*
* @author jiachun.fjc
Expand Down
4 changes: 2 additions & 2 deletions ingester-protocol/src/main/java/io/greptime/Write.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ default StreamWriter<Table, WriteOk> streamWriter(int maxPointsPerSecond) {
}

/**
* Create a stream to continuously write data to the database, typically used in data import
* scenarios. After completion, the stream needs to be closed(Call StreamWriter#completed()),
* Create a `Stream` to continuously write data to the database, typically used in data import
* scenarios. After completion, the stream needs to be closed(Call `StreamWriter#completed()`),
* and the write result can be obtained from the database server.
*
* @param maxPointsPerSecond the max number of points that can be written per second,
Expand Down
3 changes: 1 addition & 2 deletions ingester-protocol/src/main/java/io/greptime/WritePOJO.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,9 @@ default StreamWriter<List<?>, WriteOk> streamWriterPOJOs(int maxPointsPerSecond)
}

/**
* Create a stream to continuously write data to the database, typically used in data import
* Create a `Stream` to continuously write data to the database, typically used in data import
* scenarios. After completion, the stream needs to be closed(Call `StreamWriter#completed()`),
* and the write result can be obtained from the database server.
* Create a `Stream` to write POJO data.
* <p>
* It is important to note that each write operation can write a List of POJOs. However,
* the POJO objects in the List must have the same type. If you need to write different types
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
client.version=0.5.0
client.version=0.5.1
2 changes: 1 addition & 1 deletion ingester-protocol/src/test/java/io/greptime/UtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ public class UtilTest {
@Test
public void testClientVersion() {
String ver = Util.clientVersion();
Assert.assertEquals("0.5.0", ver);
Assert.assertEquals("0.5.1", ver);
}
}
2 changes: 1 addition & 1 deletion ingester-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>greptimedb-ingester</artifactId>
<groupId>io.greptime</groupId>
<version>0.5.0</version>
<version>0.5.1</version>
</parent>

<artifactId>ingester-rpc</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.greptime</groupId>
<artifactId>greptimedb-ingester</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
<packaging>pom</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down

0 comments on commit c67e087

Please sign in to comment.