RabbitMQ in Depth | What is a Message Broker? | AMQP Protocol | Networking Concepts | Part 1

  Переглядів 13,293

Priyanshu Gupta

Priyanshu Gupta

День тому

🎥 In this video, I will discuss about Message Brokers, AMQP Protocol and Networking Concepts.
✴️ What is RabbitMQ and understanding its Features
✴️ What is a Message Broker? and Its usecases
✴️ What are Networking Protocols and their roles
✴️ How AMQP Protocol works at Networking Layer and its role
✴️ Understanding OSI Networking Model
✴️ How a packet moves through various Networking Layers of OSI Model and sent over the channel to the destination
✴️ What are client libraries?
✴️ Basic AMQP Model and its expectations
✴️ Basic info about Exchange, Queue, Publisher/Producer, Consumer
This video involves the following components(in a sequenced fashion) -
- 0:00 Intro
- 1:38 What is RabbitMQ?
- 7:10 RabbitMQ Protocols
- 8:28 Understanding AMQP 0-9-1 Protocol (Networking Concepts)
- 27:11 AMQP Model
🔥 Article Link - shiny-mars-3e0.notion.site/Me...
👉 Ask your queries in the comment section box
Links -
💻 Discord: / discord
📸 Instagram: / priyanshu._gupta
✈ Telegram: t.me/priyanshuguptaofficial
⭐️ In case anyone wants a doubt or a 1:1 mentorship session, feel free to book it on my calendar -
topmate.io/priyanshugupta
👉 SUBSCRIBE to get more free tutorials, courses and code snippets!
/ @priyanshuguptaofficial
✨ Keywords
- System Design
- Microservices
- Microservice Architecture
- Message Brokers
- Message Queue
- Networking
- OSI Model
- Networks
- AMQP
- Rabbitmq
- Exchange
- Queue
- Producer
- Publisher
- Consumer
- rabbitmq architecture
#rabbitmq #systemdesign #microservices

КОМЕНТАРІ: 44
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial Рік тому
🚀Connect with me on LinkedIn for Amazing Content and Mentorship - www.linkedin.com/in/priyanshuguptaofficial/ Don't forget to like 👍 the video and subscribe 🔴 to my channel if you really want to take your skills to the next level.
@thecollector5276
@thecollector5276 6 місяців тому
If only all teachers could be this clear! Thank you!
@kumarprateek1279
@kumarprateek1279 11 місяців тому
Thanks. I have been binge watching your videos this whole week.
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial 11 місяців тому
So happy to know that
@341yes
@341yes 29 днів тому
Amazing video! U took it to the bear roots! Thank U!
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial 27 днів тому
My pleasure! 😇
@jairajsahgal7101
@jairajsahgal7101 7 місяців тому
Thank you
@kc7718
@kc7718 3 місяці тому
Thanks very helpful
@avishisainii
@avishisainii Рік тому
You never let down your subscribers.....helpful info thanks for sharing.....👍💯
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial Рік тому
Blessed to know that 😇. Will always try to give my maximum.
@kgaladimashilo9981
@kgaladimashilo9981 3 місяці тому
thanks for great content bro.
@nehapathak1559
@nehapathak1559 8 місяців тому
Really appreciate your effort. Content is really very amazing.
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial 8 місяців тому
Thank you so much 😊
@jairajsahgal7101
@jairajsahgal7101 7 місяців тому
Remember that not every request goes through each layer. Sometimes, it skips a layer or two.
@prashantpaliwal2286
@prashantpaliwal2286 Рік тому
Your content is amazing !!!
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial Рік тому
Glad to know that
@Coden69
@Coden69 Рік тому
bro is backkk thanks for this tutorial
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial Рік тому
Always welcome 🙏
@imtarundhiman
@imtarundhiman 6 місяців тому
This is really depth. Good Work Priyanshu.
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial 6 місяців тому
Thanks
@rajatdave2110
@rajatdave2110 Рік тому
this much leavel of quality content and only 29 likes...
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial Рік тому
🥲 sad truth
@jiteshsingh98
@jiteshsingh98 Рік тому
🔥🔥🔥🔥
@funpranktv2983
@funpranktv2983 Рік тому
Waiting for ur videos
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial Рік тому
Trying my best 🙏
@kalpeshmali8498
@kalpeshmali8498 Рік тому
Awesome tutorial sir one request sir aapne board par jo explanation diya hai uska photo ya pdf provide kara dijye please it will help us alot thank you
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial Рік тому
Ok I will try to do it, although for reference I have attached one document in the description box. You can check that out.
@sksswamychinthalapudi1444
@sksswamychinthalapudi1444 3 місяці тому
sir i need to analyse rabbitmq logs and channels and queues for the performance testing can you please tell me how to connect with you
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial Місяць тому
Sure, you can schedule a call here - topmate.io/priyanshugupta I will be happy to help:)
@ClashwithSans
@ClashwithSans 2 місяці тому
Great Share some additional informations Routing Mechanisms in RabbitMQ 1. Direct Routing: Messages are routed to specific queues based on their routing key, which should exactly match the queue name. Example: Queue `my_queue` receives messages with the routing key `my_queue`. 2. Topic Routing: * Uses wildcard characters (`*` and `#`) in routing keys to match multiple queues. * Example: Queue `*.info` receives messages with routing keys ending in `.info`, e.g., `my_queue.info`. 3. Header Routing: * Routes messages based on specific header values instead of routing keys. * Example: Queue `header_queue` receives messages with the header `key=value`. 4. Custom Routing: Plugin-based mechanism that allows for arbitrary routing criteria. * Example: Plugin `rabbitmq_routing_topology` enables routing based on arbitrary message properties. 5. Transient Routing: Allows dynamic routing based on temporary metadata attached to messages. Example: Queue `my_transient_queue` receives messages with a specific `x-transient-queue` header. How to Configure Routing: Exchange Declaration Define the exchange type (e.g., direct, topic) and bind queues to the exchange. Queue Declaration Specify the routing key for the queue when declaring it. Message Publication Set the routing key for the message when publishing it to the exchange.
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial 2 місяці тому
Thanks for sharing. I have covered info regarding this in the next video of the series: ukposts.info/slow/PLLz6Bi1mIXhEwMukSl5JVPjJNZ_wfiN5C&si=UoYFU2eoODqJiQTF
@hariommewada3768
@hariommewada3768 4 місяці тому
rpc is remote procedure call or resource procedure call? at 3.33 .
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial 4 місяці тому
Its remote procedure call. Sorry if I pronounced something else.
@sheikhmuhammedshoaib1124
@sheikhmuhammedshoaib1124 Рік тому
awesome video can you make videos on kafka as well
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial Рік тому
Will try to make on kafka as well
@Coden69
@Coden69 Рік тому
one question from my side what should i choose for frontend vuejs or reactjs for django
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial Рік тому
If you have a good knowledge about vuejs then go with it else choose react.
@Coden69
@Coden69 Рік тому
@@PriyanshuGuptaOfficial ok thanks
@AliHassan-wc6nb
@AliHassan-wc6nb Рік тому
@@PriyanshuGuptaOfficial bro? Which one should we pick if we don't have knowledge of both, which one is quicker to learn and to get the things going!
@AliHassan-wc6nb
@AliHassan-wc6nb Рік тому
@@PriyanshuGuptaOfficial and what about Htmx? Can we replace any frontend framework with htmx?
@AliHassan-wc6nb
@AliHassan-wc6nb Рік тому
@@Coden69 checkout this, it may help you. ukposts.info/have/v-deo/jZySZJmWqZBnyJ8.html
@xs-lz3gq
@xs-lz3gq Місяць тому
please make vedios for djangorestframework too
@PriyanshuGuptaOfficial
@PriyanshuGuptaOfficial 4 дні тому
will do it
Don't Do this Mistake in Microservice projects | Kafka or RabbitMQ
28:04
skibidi toilet 73 (full episode)
09:41
DaFuq!?Boom!
Переглядів 22 млн
Intro To RabbitMQ
54:06
IAmTimCorey
Переглядів 86 тис.
what is TCP/IP and OSI? // FREE CCNA // EP 3
12:04
NetworkChuck
Переглядів 997 тис.
What is RabbitMQ?
10:10
IBM Technology
Переглядів 301 тис.
TCP - 12 simple ideas to explain the Transmission Control Protocol
44:05
Practical Networking
Переглядів 109 тис.
What is a MESSAGE QUEUE and Where is it used?
9:59
Gaurav Sen
Переглядів 933 тис.
Apache Kafka in 6 minutes
6:48
James Cutajar
Переглядів 927 тис.
RabbitMQ vs Kafka | Trade-off's to choose one over other | Tech Primers
14:32
RabbitMQ in 100 Seconds
2:31
Fireship
Переглядів 543 тис.