Skip to content

Commit d03cffd

Browse files
committed
KAFKA-15599: Move KafkaMetadataLog to the raft module
1 parent 199772a commit d03cffd

File tree

14 files changed

+2156
-2100
lines changed

14 files changed

+2156
-2100
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2010,6 +2010,7 @@ project(':raft') {
20102010
dependencies {
20112011
implementation project(':server-common')
20122012
implementation project(':clients')
2013+
implementation project(':storage')
20132014
implementation libs.jacksonDatabind
20142015
implementation libs.slf4jApi
20152016

@@ -2230,7 +2231,6 @@ project(':storage') {
22302231
}
22312232

22322233
dependencies {
2233-
implementation project(':metadata')
22342234
implementation project(':storage:storage-api')
22352235
implementation project(':server-common')
22362236
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
@@ -483,6 +483,7 @@
483483
<allow class="org.apache.kafka.common.compress.Compression" exact-match="true" />
484484
<allow pkg="org.apache.kafka.common.config" />
485485
<allow pkg="org.apache.kafka.common.feature" />
486+
<allow pkg="org.apache.kafka.common.internals" />
486487
<allow pkg="org.apache.kafka.common.message" />
487488
<allow pkg="org.apache.kafka.common.metadata" />
488489
<allow pkg="org.apache.kafka.common.metrics" />
@@ -494,7 +495,10 @@
494495
<allow pkg="org.apache.kafka.server.common.serialization" />
495496
<allow pkg="org.apache.kafka.server.config" />
496497
<allow pkg="org.apache.kafka.server.fault"/>
498+
<allow pkg="org.apache.kafka.server.storage.log" />
497499
<allow pkg="org.apache.kafka.server.util" />
500+
<allow pkg="org.apache.kafka.storage.internals.log" />
501+
<allow pkg="org.apache.kafka.storage.log.metrics" />
498502
<allow pkg="org.apache.kafka.test"/>
499503
<allow pkg="com.fasterxml.jackson" />
500504
<allow pkg="net.jqwik"/>

0 commit comments

Comments
 (0)