Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ingester-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.greptime</groupId>
<artifactId>greptimedb-ingester</artifactId>
<version>0.14.0</version>
<version>0.14.2</version>
</parent>

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

<artifactId>ingester-bulk-protocol</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 @@ -21,7 +21,7 @@
<parent>
<groupId>io.greptime</groupId>
<artifactId>greptimedb-ingester</artifactId>
<version>0.14.0</version>
<version>0.14.2</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 @@ -21,7 +21,7 @@
<parent>
<groupId>io.greptime</groupId>
<artifactId>greptimedb-ingester</artifactId>
<version>0.14.0</version>
<version>0.14.2</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 @@ -21,7 +21,7 @@
<parent>
<groupId>io.greptime</groupId>
<artifactId>greptimedb-ingester</artifactId>
<version>0.14.0</version>
<version>0.14.2</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 @@ -21,7 +21,7 @@
<parent>
<groupId>io.greptime</groupId>
<artifactId>greptimedb-ingester</artifactId>
<version>0.14.0</version>
<version>0.14.2</version>
</parent>

<artifactId>ingester-protocol</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ingester-protocol/src/main/java/io/greptime/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public final class Util {

static {
RW_LOGGING = new AtomicBoolean(SystemPropertyUtil.getBool(Keys.RW_LOGGING, false));
REPORT_PERIOD_MIN = SystemPropertyUtil.getInt(Keys.REPORT_PERIOD, 30);
REPORT_PERIOD_MIN = SystemPropertyUtil.getInt(Keys.REPORT_PERIOD, 10);
DISPLAY = ThreadPoolUtil.newScheduledBuilder()
.poolName("display_self")
.coreThreads(1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

client.version=0.14.0
client.version=0.14.2
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 @@ -27,6 +27,6 @@ public class UtilTest {
@Test
public void testClientVersion() {
String ver = Util.clientVersion();
Assert.assertEquals("0.14.0", ver);
Assert.assertEquals("0.14.2", ver);
}
}
2 changes: 1 addition & 1 deletion ingester-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.greptime</groupId>
<artifactId>greptimedb-ingester</artifactId>
<version>0.14.0</version>
<version>0.14.2</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 @@ -21,7 +21,7 @@

<groupId>io.greptime</groupId>
<artifactId>greptimedb-ingester</artifactId>
<version>0.14.0</version>
<version>0.14.2</version>
<packaging>pom</packaging>

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