mattwong949 commented on code in PR #13206:
URL: https://github.com/apache/kafka/pull/13206#discussion_r1113713186


##########
core/src/test/scala/unit/kafka/server/AbstractFetcherThreadTest.scala:
##########
@@ -633,13 +669,18 @@ class AbstractFetcherThreadTest {
       mkBatch(baseOffset = 7, leaderEpoch = 5, new SimpleRecord("h".getBytes)),
       mkBatch(baseOffset = 8, leaderEpoch = 5, new SimpleRecord("i".getBytes)))
 
-
     val leaderState = PartitionState(leaderLog, leaderEpoch = 5, highWatermark 
= 8L, rlmEnabled = true)
     // Overriding the log start offset to zero for mocking the scenario of 
segment 0-4 moved to remote store.
     leaderState.logStartOffset = 0
     fetcher.mockLeader.setLeaderState(partition, leaderState)
     
fetcher.mockLeader.setReplicaPartitionStateCallback(fetcher.replicaPartitionState)
 
+    def buildRemoteLog(topicPartition: TopicPartition, leaderLogStartOffset: 
Long): Unit = {
+      fetcher.truncateFullyAndStartAt(topicPartition, 
leaderState.localLogStartOffset)
+      replicaState.logStartOffset = leaderLogStartOffset

Review Comment:
   I had tried to ensure that the MockTierStateMachine code would get invoked 
as part of the test as a sanity check that the TierStateMachine logic is 
getting called from handleOffsetsMovedToTieredStorage. I couldn't think of 
another way to get the replicaPartitionState updated from the 
MockTierStateMachine since it is contained in the MockFetcherThread.
   
   I am not sure about the effectiveness of the test if we override the 
`doWork` from the MockFetcherThread to update the replicaPartitionState given 
my thoughts on trying to invoke the MockTierStateMachine code, but maybe I'm 
misunderstanding the alternative you mentioned.



-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to