douka19950505 2019-01-15 15:53
浏览 695
已采纳

在Linux上使用confluent-kafka-go构建Go应用程序

I am trying to create a docker image with my go application. The application (which was developed on MacOS) depends on confluent-kafka-go which in turn depends on librdkafka-dev which I install in the Docker image like so:

FROM golang:1.1
RUN apt-get update
RUN apt-get -y install librdkafka-dev

VOLUME /workspace
WORKDIR /workspace/src/my/app/folder
ENTRYPOINT ["/bin/sh", "-c"]

I am getting the following error:

my/app/folder/vendor/github.com/confluentinc/confluent-kafka-go/kafka ../folder/vendor/github.com/confluentinc/confluent-kafka-go/kafka/00version.go:44:2: error: #error "confluent-kafka-go requires librdkafka v0.11.5 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"

As far as I understand the latest version is installed. How can I fix it?

  • 写回答

2条回答 默认 最新

  • dqs66973 2019-01-15 23:06
    关注

    I had a similar issue a few weeks ago. IIRC confluent-kafka-go requires a recent version of librdkafka-dev, which simply was not yet released to alpine or others. I was able to find it for ubuntu though, so my solution (which was more involved than I hoped for, but it worked), was to start from clean ubuntu, install librdkafka-dev, install Go version that I want and compile inside docker.

    Here's how it looks:

    FROM ubuntu
    
    # Install the C lib for kafka
    RUN apt-get update
    RUN apt-get install -y --no-install-recommends apt-utils wget gnupg software-properties-common
    RUN apt-get install -y apt-transport-https ca-certificates
    RUN wget -qO - https://packages.confluent.io/deb/5.1/archive.key | apt-key add -
    RUN add-apt-repository "deb [arch=amd64] https://packages.confluent.io/deb/5.1 stable main"
    RUN apt-get update
    RUN apt-get install -y librdkafka-dev
    
    # Install Go
    RUN add-apt-repository ppa:longsleep/golang-backports
    RUN apt-get update
    RUN apt-get install -y golang-1.11-go
    
    # build the library
    WORKDIR /go/src/gitlab.appsflyer.com/rantav/kafka-mirror-tester
    COPY *.go ./
    COPY // the rest of your go files. You may copy recursive if you want
    COPY vendor vendor
    
    RUN GOPATH=/go GOOS=linux /usr/lib/go-1.11/bin/go build -a -o main .
    
    EXPOSE 8000
    
    ENTRYPOINT ["./main"]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)
  • ¥15 找一位技术过硬的游戏pj程序员