C0urante opened a new pull request, #13137:
URL: https://github.com/apache/kafka/pull/13137
[Jira](https://issues.apache.org/jira/browse/KAFKA-10586)
Implements the internal REST API changes described in
[KIP-710](https://cwiki.apache.org/confluence/display/KAFKA/KIP-710%3A+Full+suppo
C0urante commented on PR #13137:
URL: https://github.com/apache/kafka/pull/13137#issuecomment-1398797302
@gharris1727 @viktorsomogyi @mimaison would you mind taking a look at this
when you have a moment?
--
This is an automated message from the Apache Git Service.
To respond to the messag
hachikuji opened a new pull request, #13138:
URL: https://github.com/apache/kafka/pull/13138
This patch contains a few cleanups in the new refactored consumer logic:
- Use `CompletableFuture` instead of `RequestFuture` in
`NetworkClientDelegate`. This is a much more extensible API and
philipnee commented on code in PR #13138:
URL: https://github.com/apache/kafka/pull/13138#discussion_r1082970121
##
clients/src/main/java/org/apache/kafka/clients/consumer/internals/NetworkClientDelegate.java:
##
@@ -97,8 +97,8 @@ private void trySend(final long currentTimeMs) {
kirktrue commented on code in PR #12813:
URL: https://github.com/apache/kafka/pull/12813#discussion_r1082997576
##
clients/src/main/java/org/apache/kafka/clients/producer/internals/Sender.java:
##
@@ -641,7 +643,7 @@ private void completeBatch(ProducerBatch batch,
ProduceRespon
kirktrue commented on code in PR #12813:
URL: https://github.com/apache/kafka/pull/12813#discussion_r1082997268
##
clients/src/main/java/org/apache/kafka/clients/producer/internals/Sender.java:
##
@@ -552,9 +552,11 @@ private void handleProduceResponse(ClientResponse
response,
kirktrue commented on code in PR #12813:
URL: https://github.com/apache/kafka/pull/12813#discussion_r1082998126
##
clients/src/test/java/org/apache/kafka/clients/producer/internals/SenderTest.java:
##
@@ -2519,7 +2519,7 @@ public void testInflightBatchesExpireOnDeliveryTimeout()
hachikuji commented on code in PR #13138:
URL: https://github.com/apache/kafka/pull/13138#discussion_r1083069990
##
clients/src/main/java/org/apache/kafka/clients/consumer/internals/NetworkClientDelegate.java:
##
@@ -97,8 +97,8 @@ private void trySend(final long currentTimeMs) {
ableegoldman commented on PR #13134:
URL: https://github.com/apache/kafka/pull/13134#issuecomment-1398999167
It's just timing out, there's no error beyond that
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL ab
ableegoldman merged PR #13134:
URL: https://github.com/apache/kafka/pull/13134
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: jira-unsubscr...@kafka.ap
ableegoldman commented on PR #13134:
URL: https://github.com/apache/kafka/pull/13134#issuecomment-1399019480
Merged to trunk and cherrypicked to 3.4
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go t
ableegoldman merged PR #13132:
URL: https://github.com/apache/kafka/pull/13132
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: jira-unsubscr...@kafka.ap
philipnee opened a new pull request, #13139:
URL: https://github.com/apache/kafka/pull/13139
The current documentation indicates two positions are tracked, but these
positions were removed a few years ago. Now we use a single position to track
the last consumed record. Updated the documenta
hachikuji opened a new pull request, #13140:
URL: https://github.com/apache/kafka/pull/13140
Unexpected errors caught in the Raft IO thread should cause the process to
stop. This is similar to the handling of exceptions in the controller.
### Committer Checklist (excluded from commit
guozhangwang merged PR #13139:
URL: https://github.com/apache/kafka/pull/13139
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: jira-unsubscr...@kafka.ap
cmccabe commented on code in PR #13140:
URL: https://github.com/apache/kafka/pull/13140#discussion_r1083120749
##
core/src/main/scala/kafka/raft/RaftManager.scala:
##
@@ -47,19 +47,27 @@ import org.apache.kafka.raft.RaftConfig.{AddressSpec,
InetAddressSpec, NON_ROUTA
import or
cmccabe commented on code in PR #13140:
URL: https://github.com/apache/kafka/pull/13140#discussion_r1083122187
##
core/src/test/scala/unit/kafka/raft/RaftManagerTest.scala:
##
@@ -221,16 +225,23 @@ class RaftManagerTest {
@Test
def testUncaughtExceptionInIoThread(): Unit =
guozhangwang commented on code in PR #13138:
URL: https://github.com/apache/kafka/pull/13138#discussion_r1083125061
##
clients/src/main/java/org/apache/kafka/clients/consumer/internals/CoordinatorRequestManager.java:
##
@@ -149,11 +156,14 @@ private void onSuccessfulResponse(fin
guozhangwang commented on code in PR #12813:
URL: https://github.com/apache/kafka/pull/12813#discussion_r1083134655
##
clients/src/main/java/org/apache/kafka/clients/producer/internals/Sender.java:
##
@@ -549,7 +549,13 @@ private boolean awaitNodeReady(Node node,
FindCoordinato
kirktrue closed pull request #12945: KAFKA-14365: Refactor Fetcher to allow
different implementations
URL: https://github.com/apache/kafka/pull/12945
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to
philipnee commented on PR #13139:
URL: https://github.com/apache/kafka/pull/13139#issuecomment-1399093410
Thanks!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubsc
ableegoldman opened a new pull request, #13141:
URL: https://github.com/apache/kafka/pull/13141
The timeouts used for starting up Streams and waiting for the RUNNING state
are all over the place across our integration tests, with some as low as 15s
(which are unsurprisingly rather flaky). W
vcrfxia opened a new pull request, #13142:
URL: https://github.com/apache/kafka/pull/13142
This PR refactors how the list of open iterators for RocksDB stores is
managed. Prior to this PR, the `openIterators` list was passed into the
constructor for the iterators themselves, allowing `Rocks
vcrfxia opened a new pull request, #13143:
URL: https://github.com/apache/kafka/pull/13143
(This PR is stacked on https://github.com/apache/kafka/pull/13142. The first
commit does not need to be reviewed separately.)
Today's KeyValueSegments create a new RocksDB instance for each
Key
hachikuji commented on code in PR #13138:
URL: https://github.com/apache/kafka/pull/13138#discussion_r1083199766
##
clients/src/main/java/org/apache/kafka/clients/consumer/internals/CoordinatorRequestManager.java:
##
@@ -149,11 +156,14 @@ private void onSuccessfulResponse(final
mjsax commented on code in PR #13126:
URL: https://github.com/apache/kafka/pull/13126#discussion_r1083223501
##
streams/src/main/java/org/apache/kafka/streams/state/internals/RocksDBVersionedStoreSegmentValueFormatter.java:
##
@@ -0,0 +1,523 @@
+/*
+ * Licensed to the Apache Sof
mjsax commented on code in PR #13126:
URL: https://github.com/apache/kafka/pull/13126#discussion_r1083224137
##
streams/src/main/java/org/apache/kafka/streams/state/internals/RocksDBVersionedStoreSegmentValueFormatter.java:
##
@@ -0,0 +1,523 @@
+/*
+ * Licensed to the Apache Sof
mjsax commented on code in PR #13126:
URL: https://github.com/apache/kafka/pull/13126#discussion_r1081924210
##
streams/src/main/java/org/apache/kafka/streams/state/internals/RocksDBVersionedStoreSegmentValueFormatter.java:
##
@@ -0,0 +1,523 @@
+/*
+ * Licensed to the Apache Sof
mjsax commented on code in PR #13126:
URL: https://github.com/apache/kafka/pull/13126#discussion_r1083231834
##
streams/src/main/java/org/apache/kafka/streams/state/internals/RocksDBVersionedStoreSegmentValueFormatter.java:
##
@@ -0,0 +1,523 @@
+/*
+ * Licensed to the Apache Sof
yufeiyan1220 commented on PR #13125:
URL: https://github.com/apache/kafka/pull/13125#issuecomment-1399206848
> Seems like we aren't particularly consistent at removing these metrics and
sensors, fetcher would be another example. Mind making the clean up more
comprehensive?
I have mad
nizhikov opened a new pull request, #13144:
URL: https://github.com/apache/kafka/pull/13144
`ConnectorClientConfigOverridePolicy` implements `AutoCloseable` but close
method not called.
### Committer Checklist (excluded from commit message)
- [ ] Verify design and implementation
vamossagar12 commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083271427
##
core/src/main/scala/kafka/admin/ConfigCommand.scala:
##
@@ -771,8 +772,8 @@ object ConfigCommand extends Logging {
.withRequiredArg
.describedAs("
vamossagar12 commented on PR #11592:
URL: https://github.com/apache/kafka/pull/11592#issuecomment-1399237152
@mjsax , This is a very old PR of mine which didn't get merged. On the
ticket I see `new-streams-runtime-should-fix` added as a label. Is this fix
needed anymore or should I close it
vamossagar12 closed pull request #9756: KAFKA-10652: Adding size based linger
semnatics to Raft metadata
URL: https://github.com/apache/kafka/pull/9756
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go t
ijuma commented on PR #13121:
URL: https://github.com/apache/kafka/pull/13121#issuecomment-1399275209
The JDK 17 failed tests are not one of the ones I unblocked in this PR:
> Build / JDK 17 and Scala 2.13 /
org.apache.kafka.streams.integration.SmokeTestDriverIntegrationTest.[1] true
ijuma merged PR #13121:
URL: https://github.com/apache/kafka/pull/13121
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.or
fvaleri commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083318714
##
core/src/main/scala/kafka/admin/ConfigCommand.scala:
##
@@ -771,8 +772,8 @@ object ConfigCommand extends Logging {
.withRequiredArg
.describedAs("comma
fvaleri commented on PR #13131:
URL: https://github.com/apache/kafka/pull/13131#issuecomment-1399304541
@clolov @vamossagar12 I took your suggestions. Thanks.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL abo
fvaleri commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083319516
##
server-common/src/main/java/org/apache/kafka/server/util/CommandLineUtils.java:
##
@@ -0,0 +1,201 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under o
vamossagar12 commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083413458
##
core/src/main/scala/kafka/utils/ToolsUtils.scala:
##
@@ -64,4 +65,18 @@ object ToolsUtils {
println(s"%-${maxLengthOfDisplayName}s :
$specifier".forma
vamossagar12 commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083413458
##
core/src/main/scala/kafka/utils/ToolsUtils.scala:
##
@@ -64,4 +65,18 @@ object ToolsUtils {
println(s"%-${maxLengthOfDisplayName}s :
$specifier".forma
vamossagar12 commented on PR #13131:
URL: https://github.com/apache/kafka/pull/13131#issuecomment-1399432431
> @clolov @vamossagar12 took your suggestions. Thanks.
Thanks @fvaleri ! Couple of minor comments. This should be good to go after
that!
--
This is an automated message from
vamossagar12 commented on PR #12561:
URL: https://github.com/apache/kafka/pull/12561#issuecomment-1399432804
hwy @C0urante , I was thinking should the exponential backoff thing that we
have introduced as part of this PR should go somewhere in the docs? I am saying
this since this is a devia
mimaison opened a new pull request, #13145:
URL: https://github.com/apache/kafka/pull/13145
`Values.parseString()` handles empty strings and returns the same
`SchemaAndValue`
[[0]](https://github.com/apache/kafka/blob/trunk/connect/api/src/main/java/org/apache/kafka/connect/data/Values.java
mimaison commented on code in PR #13094:
URL: https://github.com/apache/kafka/pull/13094#discussion_r1083436604
##
clients/src/test/java/org/apache/kafka/clients/producer/internals/RecordAccumulatorTest.java:
##
@@ -331,17 +331,15 @@ public void testStressfulSituation() throws E
mimaison merged PR #13080:
URL: https://github.com/apache/kafka/pull/13080
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: jira-unsubscr...@kafka.apache
hgeraldino opened a new pull request, #13146:
URL: https://github.com/apache/kafka/pull/13146
Companion PR for [KIP-901: Add flag connectorDeleted flag when stopping
task](https://cwiki.apache.org/confluence/display/KAFKA/KIP-901%3A+Add+flag+connectorDeleted+flag+when+stopping+task)
This
ableegoldman commented on PR #13141:
URL: https://github.com/apache/kafka/pull/13141#issuecomment-1399645849
test failures are unrelated, will merge to trunk and cherrypick to 3.4 to
help stabilize the release
--
This is an automated message from the Apache Git Service.
To respond to the
ableegoldman merged PR #13141:
URL: https://github.com/apache/kafka/pull/13141
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: jira-unsubscr...@kafka.ap
sgn2607 commented on code in PR #11748:
URL: https://github.com/apache/kafka/pull/11748#discussion_r1083630069
##
connect/mirror/src/main/java/org/apache/kafka/connect/mirror/MirrorCheckpointTask.java:
##
@@ -169,6 +172,7 @@ public String version() {
return listConsumer
sgn2607 commented on code in PR #11748:
URL: https://github.com/apache/kafka/pull/11748#discussion_r1083630069
##
connect/mirror/src/main/java/org/apache/kafka/connect/mirror/MirrorCheckpointTask.java:
##
@@ -169,6 +172,7 @@ public String version() {
return listConsumer
sgn2607 commented on code in PR #11748:
URL: https://github.com/apache/kafka/pull/11748#discussion_r1083630069
##
connect/mirror/src/main/java/org/apache/kafka/connect/mirror/MirrorCheckpointTask.java:
##
@@ -169,6 +172,7 @@ public String version() {
return listConsumer
abbccdda closed pull request #8725: KAFKA-9608: Transaction Event Simulation
Test
URL: https://github.com/apache/kafka/pull/8725
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
fvaleri commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083709872
##
core/src/main/scala/kafka/utils/ToolsUtils.scala:
##
@@ -64,4 +65,18 @@ object ToolsUtils {
println(s"%-${maxLengthOfDisplayName}s :
$specifier".format(met
clolov commented on PR #12818:
URL: https://github.com/apache/kafka/pull/12818#issuecomment-1399926748
Thank you very much for the review and merge!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go t
vamossagar12 commented on code in PR #13127:
URL: https://github.com/apache/kafka/pull/13127#discussion_r1083769752
##
build.gradle:
##
@@ -1757,6 +1757,7 @@ project(':tools') {
archivesBaseName = "kafka-tools"
dependencies {
+implementation project(':core')
Review
vamossagar12 commented on PR #13131:
URL: https://github.com/apache/kafka/pull/13131#issuecomment-1399976298
Thanks @fvaleri . LGTM.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific c
ableegoldman commented on PR #13147:
URL: https://github.com/apache/kafka/pull/13147#issuecomment-1400043590
cc @lucasbru @guozhangwang @mjsax
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the
ableegoldman opened a new pull request, #13147:
URL: https://github.com/apache/kafka/pull/13147
Need to get a clean build for 3.4 and this test has been extremely flaky.
I'm looking into the failure as well, and want to pinpoint whether it's the
`true` build that's broken or it's the parame
divijvaidya commented on code in PR #13135:
URL: https://github.com/apache/kafka/pull/13135#discussion_r1083847838
##
clients/src/main/java/org/apache/kafka/common/compress/ZstdFactory.java:
##
@@ -26,21 +26,25 @@
import org.apache.kafka.common.utils.ByteBufferInputStream;
imp
divijvaidya commented on code in PR #13135:
URL: https://github.com/apache/kafka/pull/13135#discussion_r1083831592
##
clients/src/main/java/org/apache/kafka/common/record/DefaultRecordBatch.java:
##
@@ -273,20 +272,32 @@ public int partitionLeaderEpoch() {
public DataInputS
divijvaidya commented on code in PR #13135:
URL: https://github.com/apache/kafka/pull/13135#discussion_r1083852068
##
clients/src/main/java/org/apache/kafka/common/record/CompressionType.java:
##
@@ -47,6 +47,11 @@ public OutputStream wrapForOutput(ByteBufferOutputStream
buffer
clolov commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083906152
##
server-common/src/main/java/org/apache/kafka/server/util/CommandLineUtils.java:
##
@@ -0,0 +1,201 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under on
clolov commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083909966
##
core/src/main/scala/kafka/tools/ConsoleConsumer.scala:
##
@@ -352,9 +353,11 @@ object ConsoleConsumer extends Logging {
} else if (options.has(offsetOpt))
clolov commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083920980
##
server-common/src/main/java/org/apache/kafka/server/util/CommandLineUtils.java:
##
@@ -0,0 +1,201 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under on
clolov commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083920980
##
server-common/src/main/java/org/apache/kafka/server/util/CommandLineUtils.java:
##
@@ -0,0 +1,201 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under on
clolov commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083920980
##
server-common/src/main/java/org/apache/kafka/server/util/CommandLineUtils.java:
##
@@ -0,0 +1,201 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under on
clolov commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083906152
##
server-common/src/main/java/org/apache/kafka/server/util/CommandLineUtils.java:
##
@@ -0,0 +1,201 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under on
mimaison commented on code in PR #11748:
URL: https://github.com/apache/kafka/pull/11748#discussion_r1083928100
##
connect/mirror/src/main/java/org/apache/kafka/connect/mirror/MirrorCheckpointTask.java:
##
@@ -169,6 +172,7 @@ public String version() {
return listConsume
clolov commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1083908982
##
core/src/main/scala/kafka/admin/ZkSecurityMigrator.scala:
##
@@ -100,6 +101,7 @@ object ZkSecurityMigrator extends Logging {
false
case _ =>
clolov commented on PR #10826:
URL: https://github.com/apache/kafka/pull/10826#issuecomment-1400189273
Hello @dongjinleekr! What is the current state of this pull request?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and us
mimaison merged PR #13059:
URL: https://github.com/apache/kafka/pull/13059
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: jira-unsubscr...@kafka.apache
mimaison merged PR #13094:
URL: https://github.com/apache/kafka/pull/13094
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: jira-unsubscr...@kafka.apache
fvaleri commented on code in PR #13131:
URL: https://github.com/apache/kafka/pull/13131#discussion_r1084030517
##
core/src/main/scala/kafka/admin/ZkSecurityMigrator.scala:
##
@@ -100,6 +101,7 @@ object ZkSecurityMigrator extends Logging {
false
case _ =>
divijvaidya commented on code in PR #13135:
URL: https://github.com/apache/kafka/pull/13135#discussion_r1084093810
##
clients/src/main/java/org/apache/kafka/common/compress/ZstdFactory.java:
##
@@ -62,10 +68,11 @@ public void release(ByteBuffer buffer) {
}
divijvaidya commented on code in PR #13135:
URL: https://github.com/apache/kafka/pull/13135#discussion_r1084097512
##
clients/src/main/java/org/apache/kafka/common/compress/ZstdFactory.java:
##
@@ -62,10 +68,11 @@ public void release(ByteBuffer buffer) {
}
divijvaidya commented on PR #13135:
URL: https://github.com/apache/kafka/pull/13135#issuecomment-1400407941
TODO (will update PR in a short while) -
1. Add benchmark for case when batch contains single 10 byte message
2. Test consumer performance
--
This is an automated mess
C0urante commented on PR #12561:
URL: https://github.com/apache/kafka/pull/12561#issuecomment-1400491466
@vamossagar12 I don't think it's necessary to call this out anywhere unless
it's caused unexpected issues with our users. The intention behind the
exponential backoff is to avoid rebalan
C0urante opened a new pull request, #13148:
URL: https://github.com/apache/kafka/pull/13148
[Jira](https://issues.apache.org/jira/browse/KAFKA-14645)
If we don't switch to the classloader of a plugin before loading its
`ConfigDef`, then classloading bugs can appear for, e.g., properti
C0urante commented on code in PR #13148:
URL: https://github.com/apache/kafka/pull/13148#discussion_r1084283540
##
connect/runtime/src/main/java/org/apache/kafka/connect/runtime/AbstractHerder.java:
##
@@ -821,13 +827,14 @@ public List connectorPluginConfig(String
pluginName) {
ijuma commented on code in PR #13135:
URL: https://github.com/apache/kafka/pull/13135#discussion_r1084344515
##
clients/src/main/java/org/apache/kafka/common/record/DefaultRecordBatch.java:
##
@@ -273,20 +272,32 @@ public int partitionLeaderEpoch() {
public DataInputStream
ijuma commented on code in PR #13135:
URL: https://github.com/apache/kafka/pull/13135#discussion_r1084344515
##
clients/src/main/java/org/apache/kafka/common/record/DefaultRecordBatch.java:
##
@@ -273,20 +272,32 @@ public int partitionLeaderEpoch() {
public DataInputStream
ijuma commented on code in PR #12781:
URL: https://github.com/apache/kafka/pull/12781#discussion_r1084369349
##
connect/runtime/src/main/java/org/apache/kafka/connect/util/KafkaBasedLog.java:
##
@@ -98,7 +98,7 @@
private Optional> producer;
private TopicAdmin admin;
vcrfxia commented on code in PR #13126:
URL: https://github.com/apache/kafka/pull/13126#discussion_r1082994727
##
streams/src/main/java/org/apache/kafka/streams/state/internals/RocksDBVersionedStoreSegmentValueFormatter.java:
##
@@ -0,0 +1,523 @@
+/*
+ * Licensed to the Apache S
erichaagdev opened a new pull request, #13149:
URL: https://github.com/apache/kafka/pull/13149
The call to `asCollection()` causes several configurations to be resolved
eagerly, and potentially unnecessarily. Dropping `asCollection()` ensures the
configurations are only resolved when they a
cmccabe commented on code in PR #13116:
URL: https://github.com/apache/kafka/pull/13116#discussion_r1084419497
##
core/src/main/scala/kafka/server/ControllerApis.scala:
##
@@ -392,14 +394,36 @@ class ControllerApis(val requestChannel: RequestChannel,
val describableTopicNam
cmccabe commented on PR #13116:
URL: https://github.com/apache/kafka/pull/13116#issuecomment-1400816232
> Also note that I didn't implement the full logic -- QuorumController has
additional checks that could in fact cause a specific topic request to be
rejected (e.g. explicit assignments no
C0urante commented on code in PR #13144:
URL: https://github.com/apache/kafka/pull/13144#discussion_r1084433485
##
connect/runtime/src/test/java/org/apache/kafka/connect/connector/policy/BaseConnectorClientConfigOverridePolicyTest.java:
##
@@ -27,7 +27,7 @@
public abstract cl
C0urante merged PR #12802:
URL: https://github.com/apache/kafka/pull/12802
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: jira-unsubscr...@kafka.apache
gharris1727 commented on code in PR #13137:
URL: https://github.com/apache/kafka/pull/13137#discussion_r1084435808
##
connect/runtime/src/main/java/org/apache/kafka/connect/runtime/distributed/DistributedHerder.java:
##
@@ -228,12 +229,17 @@ public class DistributedHerder extend
C0urante commented on code in PR #13137:
URL: https://github.com/apache/kafka/pull/13137#discussion_r1084460160
##
connect/runtime/src/main/java/org/apache/kafka/connect/runtime/distributed/DistributedHerder.java:
##
@@ -228,12 +229,17 @@ public class DistributedHerder extends A
guozhangwang commented on code in PR #13138:
URL: https://github.com/apache/kafka/pull/13138#discussion_r1084463267
##
clients/src/main/java/org/apache/kafka/clients/consumer/internals/CoordinatorRequestManager.java:
##
@@ -149,11 +156,14 @@ private void onSuccessfulResponse(fin
philipnee commented on PR #13125:
URL: https://github.com/apache/kafka/pull/13125#issuecomment-1400882904
hey @cmccabe - would you have time to take a look at this?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use t
vcrfxia commented on code in PR #13126:
URL: https://github.com/apache/kafka/pull/13126#discussion_r1084484753
##
streams/src/main/java/org/apache/kafka/streams/state/internals/RocksDBVersionedStoreSegmentValueFormatter.java:
##
@@ -0,0 +1,523 @@
+/*
+ * Licensed to the Apache S
nizhikov closed pull request #12574: KAFKA-13908 Rethrow ExecutionException to
preserve original cause
URL: https://github.com/apache/kafka/pull/12574
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to
vcrfxia commented on code in PR #13126:
URL: https://github.com/apache/kafka/pull/13126#discussion_r1084488305
##
streams/src/main/java/org/apache/kafka/streams/state/internals/RocksDBVersionedStoreSegmentValueFormatter.java:
##
@@ -0,0 +1,523 @@
+/*
+ * Licensed to the Apache S
vcrfxia commented on PR #13126:
URL: https://github.com/apache/kafka/pull/13126#issuecomment-1400904752
Thanks for your reviews, @mjsax ! I pushed another commit just now to
incorporate your latest suggestions (javadocs changes only) and responded
inline to the main points of discussion. Th
nizhikov commented on code in PR #13144:
URL: https://github.com/apache/kafka/pull/13144#discussion_r1084491140
##
connect/runtime/src/test/java/org/apache/kafka/connect/runtime/distributed/DistributedHerderTest.java:
##
@@ -227,9 +227,14 @@ public class DistributedHerderTest {
nizhikov commented on PR #13144:
URL: https://github.com/apache/kafka/pull/13144#issuecomment-1400908925
@C0urante Thanks for the review. I've applied your suggestions. Please, take
a look one more time.
--
This is an automated message from the Apache Git Service.
To respond to the messag
gharris1727 commented on code in PR #13120:
URL: https://github.com/apache/kafka/pull/13120#discussion_r1084469223
##
connect/api/src/main/java/org/apache/kafka/connect/connector/policy/ConnectorClientConfigOverridePolicy.java:
##
@@ -23,25 +23,25 @@
import java.util.List;
/
1 - 100 of 65545 matches
Mail list logo