metallurgical / rabbitmq-golang-php-microservice

Make a communication between Golang with PHP by using RabbitMQ as message broker that hosted in CloudAMQP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

Make a communication between Golang with PHP by using RabbitMQ as message broker that hosted in CloudAMQP. These days, microservice pattern or concept(you name it) have being spread and used widely because of its advantages over a monolith application. With microservices, we can decoupling the new/exisiting features from main codebase and isolated into its own language(can develop using any programming language besides from our main codebase) or environment without cluttering core codebase.

Terminology

These microservices eventually need to communicate to each other to receive and sending the data from our main application which exposed by HTTP from the outside world. Outside world here can be assumed as a Client(Mobile apps, web application, embedded) make a HTTP call to the backend server. Backend application will handle the rest of operations by distributed the process into multiple form.

Data would be passed to RabbitMQ(message broker) by a producer and the rest of microservices(consumers) will execute the task that exist inside a queue of RabbitMQ. As example, client want to send sms and at the same time send an email to specified member.


                                                  sms process  
                                                     /        \  
                                                    /           \
[Client] --> inititated process sending sms and email                --> pass to Message Broker 
                                                    \            /              |
                                                      \         /               |
                                                  email process           microservices
                                                                                |
                                                                                /\
                                                                               /  \
                                                                              /    \
                                                                        Email(PHP) Sms(Golang)
                                                                        

For the sake of brevity, i just add two simple application that written in PHP and GO react as producer and consumer respectively.

How to Run

Assumed already installed go and php on your local machine. Download this repository, and run these two files using CLI:

  • Configure CloudAMQP setting for both publisher.php and main.go. Using CloudAMQP is optional(register free account at cloudamqp)
  • Run composer install
  • Install amqp for go: go get github.com/streadway/amqp
  • [Producer] - php publisher.php
  • [Consumer] - go run main.go

About

Make a communication between Golang with PHP by using RabbitMQ as message broker that hosted in CloudAMQP


Languages

Language:Go 58.0%Language:PHP 42.0%