dongying3830 2017-06-20 01:11
浏览 739
已采纳

使用gRPC在容器之间进行通信

I'm implementing two services (server and client) running on two different containers and trying to use gRPC to communicate between them.

If I deploy the server as a container and run the client not on a container, everything works just fine. But if I deploy the client on a different container I get Error #01: could not retrieve restaurant's list: rpc error: code = Unavailable desc = grpc: the connection is unavailable error.

What steps am I missing to communicate two different containers using gRPC?

PS: I would like to try without Kubernetes for now.

SERVER

func Serve() {

    log.Println("serving...")

    port := ":50051"

    lis, err := net.Listen("tcp", port)
    if err != nil {
        log.Fatalf("failed to listen on port %s: %v", port, err)
    }

    s := grpc.NewServer()
    server := server{}
    RegisterNeo4BaconServer(s, server)

    if err := s.Serve(lis); err != nil {
        log.Fatal("could not serve: ", err)
    }
}

Makefile

image: ## build docker image and push image to registry
    @docker build -t neo4bacon -f resources/prod/Dockerfile .

run: ## deploy application container
    @docker run --rm -d --name neo4bacon neo4bacon

CLIENT

func Get() (*api.RestaurantList, error) {
    // Neo4bacon backend
    backendPort := ":50051"

    conn, err := grpc.Dial(backendPort, grpc.WithInsecure())
    if err != nil {
        &api.RestaurantList{}, fmt.Errorf("could not connect to backend %s: %s", backendPort, err)
    }
    defer conn.Close()

    client := api.NewNeo4BaconClient(conn)

    restaurantList, err := client.List(context.Background(), &api.Empty{})
    if err != nil {
        return &api.RestaurantList{}, fmt.Errorf("could not retrieve restaurant's list: %s", err)
    }
    return restaurantList, nil
}

Makefile

image: ## build docker image and push image to registry     
@docker build -t alesr/bacon-api -f resources/prod/Dockerfile .     

run: ## deploy docker container     
@docker run --rm -d -p 8080:8080 --name bacon-api bacon-api
  • 写回答

1条回答 默认 最新

  • douqujin2767 2017-06-20 01:37
    关注

    You need to include the hostname in the dial function, otherwise it's looking at localhost which is unique to each container (docker creates a separate networking namespace for containers by default). Change the following:

    backendPort := "neo4bacon:50051"
    

    Edit: you also need to setup a network and connect the containers to that network because the default bridge does not include DNS discovery:

    docker network create baconnet
    docker run --rm -d --net baconnet --name neo4bacon neo4bacon
    docker run --rm -d --net baconnet -p 8080:8080 --name bacon-api bacon-api
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘