- Microservices with Clojure
- Anuj Kumar
- 142字
- 2021-06-30 19:24:31
Messaging and contracts
In monolithic applications, messaging between components is mostly achieved using function calls, whereas for microservices, it is achieved using lightweight messaging systems, often HTTP(S). Using a lightweight messaging system is one of the most promising features of microservices and makes it easier to adopt and scale, as compared to service-oriented architecture (SOA) that uses a complex messaging system with multiple protocols. Microservices are more about keeping the endpoints smart and the communication channels as simple as possible.
In a microservices architecture, often multiple microservices need to interact with each other to achieve a particular task. These interactions can be either direct, via request-response-based (https://en.wikipedia.org/wiki/Request-response) communication, or through a lightweight message-oriented middleware (MOM) (https://en.wikipedia.org/wiki/Message-oriented_middleware). Direct messaging is synchronous, that is, the requester waits for the response to be returned, whereas a message-oriented middleware is primarily used for asynchronous communication.
- 自動駕駛網絡:自智時代的網絡架構
- EDA技術與VHDL編程
- Spring Boot 2.0 Projects
- SSL VPN : Understanding, evaluating and planning secure, web/based remote access
- 物聯網技術與應用
- 網絡安全應急響應技術實戰
- IPv6網絡切片:使能千行百業新體驗
- 6G新技術 新網絡 新通信
- WordPress Web Application Development
- VMware NSX網絡虛擬化入門
- 物聯網頂層設計與關鍵技術
- 設備監控技術詳解
- Web用戶查詢日志挖掘與應用
- Microsoft System Center 2012 Configuration Manager:Administration Cookbook
- Hands-On Microservices:Monitoring and Testing