WencongLiu commented on code in PR #22733: URL: https://github.com/apache/flink/pull/22733#discussion_r1234687042
########## flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/consumer/SingleInputGate.java: ########## @@ -217,6 +222,12 @@ public class SingleInputGate extends IndexedInputGate { // The consumer client will be null if the tiered storage is not enabled. @Nullable private final TieredStorageConsumerClient tieredStorageConsumerClient; + // The partition ids in tiered storage will be null if the tiered storage is not enabled. + @Nullable private final List<TieredStoragePartitionId> tieredStoragePartitionIds; + + // The subpartition ids in tiered storage will be null if the tiered storage is not enabled. + @Nullable private final List<TieredStorageSubpartitionId> tieredStorageSubpartitionIds; Review Comment: `TieredStorageConsumerSpec ` has been added. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org