Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
Release 4.15.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
streamnativebot committed Apr 11, 2024
1 parent b085ad1 commit 0db9ee8
Show file tree
Hide file tree
Showing 127 changed files with 3,428 additions and 2,587 deletions.
44 changes: 22 additions & 22 deletions bookkeeper-benchmark/conf/log4j2.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
Expand All @@ -20,25 +20,25 @@
-->
<Configuration status="warn" monitorInterval="10">
<Appenders>
<Console name="CONSOLE" target="SYSTEM_OUT">
<PatternLayout pattern="%d{ISO8601} - %-5p - [%t:%C{1}@%L] - %m%n"/>
</Console>
<File name="TRACEFILE" fileName="bookkeeper_trace.log">
<PatternLayout pattern="%d{ISO8601} - %-5p [%t:%C{1}@%L][%ndc] - %m%n"/>
</File>
<RollingFile name="ROLLINGFILE" fileName="bookkeeper-benchmark.log" filePattern="bookkeeper-benchmark.log%d{.yyyy-MM-dd}">
<PatternLayout pattern="%d{ISO8601} - %-5p - [%t:%C{1}@%L] - %m%n"/>
<Policies>
<TimeBasedTriggeringPolicy modulate="true"/>
</Policies>
<DefaultRolloverStrategy max="100"/>
</RollingFile>
</Appenders>
<Loggers>
<Root level="ERROR">
<AppenderRef ref="CONSOLE"/>
</Root>
<Logger name="org.apache.bookkeeper.benchmark" level="INFO"/>
</Loggers>
<Appenders>
<Console name="CONSOLE" target="SYSTEM_OUT">
<PatternLayout pattern="%d{ISO8601} - %-5p - [%t:%C{1}@%L] - %m%n"/>
</Console>
<File name="TRACEFILE" fileName="bookkeeper_trace.log">
<PatternLayout pattern="%d{ISO8601} - %-5p [%t:%C{1}@%L][%ndc] - %m%n"/>
</File>
<RollingFile name="ROLLINGFILE" fileName="bookkeeper-benchmark.log" filePattern="bookkeeper-benchmark.log%d{.yyyy-MM-dd}">
<PatternLayout pattern="%d{ISO8601} - %-5p - [%t:%C{1}@%L] - %m%n"/>
<Policies>
<TimeBasedTriggeringPolicy modulate="true"/>
</Policies>
<DefaultRolloverStrategy max="100"/>
</RollingFile>
</Appenders>
<Loggers>
<Root level="ERROR">
<AppenderRef ref="CONSOLE"/>
</Root>
<Logger name="org.apache.bookkeeper.benchmark" level="INFO"/>
</Loggers>
</Configuration>
57 changes: 40 additions & 17 deletions bookkeeper-benchmark/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0"?>
<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
Expand All @@ -15,15 +15,14 @@
See the License for the specific language governing permissions and
limitations under the License.
-->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>bookkeeper</artifactId>
<groupId>org.apache.bookkeeper</groupId>
<version>4.15.6-SNAPSHOT</version>
<groupId>io.streamnative</groupId>
<version>4.15.5.1</version>
</parent>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-benchmark</artifactId>
<name>Apache BookKeeper :: Benchmark</name>
<properties>
Expand All @@ -40,16 +39,40 @@
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>testtools</artifactId>
<version>${project.parent.version}</version>
<scope>test</scope>
Expand All @@ -61,26 +84,26 @@
<scope>test</scope>
</dependency>
<dependency>
<!-- needed by ZooKeeper server -->
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<scope>test</scope>
<!-- needed by ZooKeeper server -->
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<!-- needed by ZooKeeper server -->
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<scope>test</scope>
<!-- needed by ZooKeeper server -->
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-server</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
Expand Down
18 changes: 14 additions & 4 deletions bookkeeper-common-allocator/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
Expand All @@ -18,14 +18,14 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper</artifactId>
<version>4.15.6-SNAPSHOT</version>
<version>4.15.5.1</version>
</parent>
<artifactId>bookkeeper-common-allocator</artifactId>
<name>Apache BookKeeper :: Common :: Allocator</name>
<dependencies>
<dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</dependency>
Expand All @@ -49,6 +49,16 @@
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down
22 changes: 16 additions & 6 deletions bookkeeper-common/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
Expand All @@ -18,20 +18,20 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper</artifactId>
<version>4.15.6-SNAPSHOT</version>
<version>4.15.5.1</version>
</parent>
<artifactId>bookkeeper-common</artifactId>
<name>Apache BookKeeper :: Common</name>
<dependencies>
<dependency>
<groupId>org.apache.bookkeeper.stats</groupId>
<groupId>io.streamnative.stats</groupId>
<artifactId>bookkeeper-stats-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>cpu-affinity</artifactId>
<version>${project.parent.version}</version>
</dependency>
Expand Down Expand Up @@ -75,7 +75,7 @@
<artifactId>rxjava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>testtools</artifactId>
<version>${project.parent.version}</version>
<scope>test</scope>
Expand Down Expand Up @@ -106,6 +106,16 @@
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down
Loading

0 comments on commit 0db9ee8

Please sign in to comment.