【问题标题】:it's possible to install rest-proxy confluent in apache kafka cluster kafka version 2.0.0可以在 apache kafka cluster kafka version 2.0.0 中安装 rest-proxy confluent
【发布时间】:2024-05-02 21:45:02
【问题描述】:

我会将 kafka-rest-proxy 融合解决方案与 apache kafka 2.0.0 集成

有人能解释一下我是如何为我的集群只安装 kafka rest 代理的吗? 3 个节点 kafka 和 3 个 znodes?

【问题讨论】:

    标签: apache-kafka confluent-platform kafka-rest


    【解决方案1】:

    所有 Confluent 工具都可与 Apache Kafka 一起使用。

    没有单独下载 REST 代理,因此您必须使用 Docker 或下载完整的 Confluent 平台。

    如果不使用 Docker,您可以在 etc/kafka-rest 文件夹中找到 kafka-rest.properties,因此您至少可以使用引导服务器对其进行编辑。

    查找其他config options here

    然后运行这个以从提取的 Confluent 平台下载中启动它

    ./bin/kafka-rest-start ./etc/kafka-rest/kafka-rest.properties
    

    【讨论】: