본문 바로가기

미들웨어

(3)
(스크랩) ★★★Flask, Celery, and Redis? (맥도날드 예제) https://ljvmiranda921.github.io/notebook/2019/11/08/flask-redis-celery-mcdo/ Distill: Why do we need Flask, Celery, and Redis? (with McDonalds in Between) Understanding Flask, Celery, and Redis through Mcdonalds ljvmiranda921.github.io https://ljvmiranda921.github.io/notebook/ Notebook Some notes on software, systems, machine learning, and research. ljvmiranda921.github.io
(스크랩) FastAPI - RabbitMQ - Celery 아키텍처 https://medium.com/thelorry-product-tech-data/celery-asynchronous-task-queue-with-fastapi-flower-monitoring-tool-e7135bd0479f Celery Asynchronous Task Queues with Flower & FastAPI Let’s implement the amazing Celery Distributed Task Queue with FastAPI and monitor the background tasks (workers) using Flower. medium.com
(스크랩) 메세지 브로커 비교 (feat. RabbitMQ, Kafka, Redis) worker로 celery 쓸거면 kafka는 별도의 작업이 필요. 반면 rabitMQ는 잘 호환되는듯~! Microservices에 비동기 통신을 사용할 때 메시지 브로커를 사용하는 것이 일반적입니다. 브로커는 서로 다른 마이크로 서비스 간의 통신이 안정적이고 안정적이며, 시스템 내에서 메시지가 관리 및 모니터링되며, 메시지가 손실되지 않도록 보장합니다. 몇 가지 메시지 브로커를 선택할 수 있으며, 규모와 데이터 기능이 다양합니다. 이 블로그 게시물은 가장 인기 있는 3가지 브로커: RabbitMQ, Kafka, Redis를 비교할 것입니다. https://otonomo.io/redis-kafka-or-rabbitmq-which-microservices-message-broker-to-choose/ R..