Skip to content

Commit bdc03b0

Browse files
committed
KAFKA-15599: Move KafkaMetadataLog to the raft module
1 parent b704280 commit bdc03b0

File tree

14 files changed

+2136
-2109
lines changed

14 files changed

+2136
-2109
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2024,6 +2024,7 @@ project(':raft') {
20242024
dependencies {
20252025
implementation project(':server-common')
20262026
implementation project(':clients')
2027+
implementation project(':storage')
20272028
implementation libs.jacksonDatabind
20282029
implementation libs.slf4jApi
20292030

@@ -2244,7 +2245,6 @@ project(':storage') {
22442245
}
22452246

22462247
dependencies {
2247-
implementation project(':metadata')
22482248
implementation project(':storage:storage-api')
22492249
implementation project(':server-common')
22502250
implementation project(':clients')

checkstyle/import-control-storage.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@
9494
<allow pkg="com.yammer.metrics.core" />
9595
<allow pkg="org.apache.kafka.common" />
9696
<allow pkg="org.apache.kafka.config" />
97-
<allow pkg="org.apache.kafka.image" />
98-
<allow pkg="org.apache.kafka.metadata" />
9997
<allow pkg="org.apache.kafka.server"/>
10098
<allow pkg="org.apache.kafka.storage.internals"/>
10199
<allow pkg="org.apache.kafka.storage.log.metrics"/>

checkstyle/import-control.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,7 @@
486486
<allow class="org.apache.kafka.common.compress.Compression" exact-match="true" />
487487
<allow pkg="org.apache.kafka.common.config" />
488488
<allow pkg="org.apache.kafka.common.feature" />
489+
<allow pkg="org.apache.kafka.common.internals" />
489490
<allow pkg="org.apache.kafka.common.message" />
490491
<allow pkg="org.apache.kafka.common.metadata" />
491492
<allow pkg="org.apache.kafka.common.metrics" />
@@ -497,7 +498,10 @@
497498
<allow pkg="org.apache.kafka.server.common.serialization" />
498499
<allow pkg="org.apache.kafka.server.config" />
499500
<allow pkg="org.apache.kafka.server.fault"/>
501+
<allow pkg="org.apache.kafka.server.storage.log" />
500502
<allow pkg="org.apache.kafka.server.util" />
503+
<allow pkg="org.apache.kafka.storage.internals.log" />
504+
<allow pkg="org.apache.kafka.storage.log.metrics" />
501505
<allow pkg="org.apache.kafka.test"/>
502506
<allow pkg="com.fasterxml.jackson" />
503507
<allow pkg="net.jqwik"/>

0 commit comments

Comments
 (0)