dongtui0650 2018-01-07 06:15
浏览 129
已采纳

在容器中或不在容器中部署具有微服务架构的Go应用?

I'm new to DevOps specifically using golang and microservice architecture.

I'm wondering if go applications should or should not be deployed in containers (Docker). In this case, I have a system built with micro-service architecture. For example here, I have 2 web services, A and B. Also I have another web server acts as a gateway in front of those two.

Both A and B need access for a database, MySQL for example. A handles table A, and B handles table B.

I know that in Go, source codes are compiled into a single executable binary file. And because I have 3 services here, I have 3 binaries. All three run as web server exposing JSON REST API.

My questions are these:

  • Can I deploy these servers together in one host running on different ports? If my host get an IP x.x.x.x for example, my gateway can run in x.x.x.x:80, A in port 81, and B in port 82 for example. A and B will talk to a MySQL server somewhere outside or maybe inside the same host. Is this a good practice? Can Continuous Deployment works with this practice?

  • Why should I deploy and run those binaries inside containers like Docker? I know that since its release few years ago, Docker had found its way to be integrated inside a development workflow easily. But of course using Docker is not as simple as just compiling the code into a binary and then moving it to a deployment server. Using Docker we have to put the executable inside the container and then move the container as well to the deployment server.

  • What about scalibility and high availability without using Docker? Can I just replicate my services and run them all at once in different hosts using a load balancer? This way I should deploy A, B, and gateway in one host, and another A, B, and gateway in another host, then setup load balancer in front of them. A, B, and the gateway runs in port 80, 81, and 82 respectively. This way I could have thousands of nodes in a form of VMs or LXD containers maybe, spread accross hundreds of bare metals, deployed with a simple bash script and ssh, or Ansible if things get complex. Yes or no?

  • And what about the scalability and availability of using Docker? Should I just put all my services inside containers and manage them with something like Kubernetes to achieve high availability? Doing this does add overhead, right? Because the team will have to learn new technology like Kubernetes if they haven't known it yet.

  • Can you give me an example of some best practices of deploying golang services?

  • 写回答

2条回答 默认 最新

  • douqie1816 2018-01-07 06:46
    关注

    I'm wondering if go applications should or should not be deployed in containers (Docker)
    Why should I deploy and run those binaries inside containers like Docker?

    Of course, provided you separate the build from the actual final image (in order to not include in said final image build dependencies)
    See "Golang, Docker and multistage build" from Matteo Madeddu.

    Can I deploy these servers together in one host running on different ports?

    Actually, they could all run in their own container on their own port, even if that port is the same.
    Intra-container communication will work, using EXPOSEd port. However, if they are accessed from outside, then their published port need to be different indeed.

    What about scalibility and high availability without using Docker?
    And what about the scalability and availability of using Docker?

    As soon as you are talking about dynamic status, some kind of orchestration will be involved: see Docker Swarm or Kubernetes for efficient cluster management.
    Both are available with the latest docker.

    Examples:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献