You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ju...@apache.org on 2021/06/18 16:39:55 UTC

[kafka] branch trunk updated (be5889d -> 56250f4)

This is an automated email from the ASF dual-hosted git repository.

junrao pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git.


    from be5889d  MINOR: Use MessageDigest equals when comparing signature (#10898)
     add 56250f4  KAFKA-12816 Added tiered storage related configs including remote log manager configs. (#10733)

No new revisions were added by this update.

Summary of changes:
 checkstyle/suppressions.xml                        |   5 +
 .../apache/kafka/common/config/TopicConfig.java    |  14 +
 core/src/main/scala/kafka/log/LogConfig.scala      |  69 +++-
 core/src/main/scala/kafka/server/KafkaConfig.scala |   4 +
 .../test/scala/unit/kafka/log/LogConfigTest.scala  |  81 +++-
 .../scala/unit/kafka/server/KafkaConfigTest.scala  |  26 +-
 .../log/remote/storage/RemoteLogManagerConfig.java | 407 +++++++++++++++++++++
 .../remote/storage/RemoteLogManagerConfigTest.java |  91 +++++
 8 files changed, 686 insertions(+), 11 deletions(-)
 create mode 100644 storage/src/main/java/org/apache/kafka/server/log/remote/storage/RemoteLogManagerConfig.java
 create mode 100644 storage/src/test/java/org/apache/kafka/server/log/remote/storage/RemoteLogManagerConfigTest.java