Whatsapp System design or software architecture

Ғылым және технология

Most important and common question asked for developers and architect to check their design skills.
Design whatsApp or Provide architecture for whatsApp
OR
Learn how to build Realtime messaging system or Chatting application.
blog.whatsapp.com/196/1-milli...
highscalability.com/blog/2013/...
blog-bhaskaruni.blogspot.com/2...
Disclaimer: System design can vary based on the feature. this video explains the possible solution to build one. it doesn't guarantee the scale or full working. Instead this resource should be consumed to understand how it can be designed.
Donate/Patreon: / techdummies

Пікірлер: 282

  • @ajinkyagawali6442
    @ajinkyagawali64425 жыл бұрын

    You are pretty thorough about the subject and it is reflected by the way you teach. A lot of people are usually confused as they have a vague idea about what to speak. This shows that you take efforts perparing for the delivery of the content. Thank you so much for your efforts to make these videos. I am learning a lot.

  • @vipulsingh4637
    @vipulsingh46373 жыл бұрын

    Awesome video. Few points :- i) We can use indexing on UID for faster retrievals. O(n) to O(log(n)) ii) Spawning a thread for every user is not efficient. Instead, we can use a dynamic threadpool. iii) Similarly, having a queue per user is not efficient. Instead, we can have a global queue with object (message, action like send/receive, uid) iv) Since you are using DB for storing message in case user is not online, we need to implement a disaster recovery mechanism i.e. replication. v) We can also implement blocked contacts by storing list of blocked UIDs for each user in the DB & we can drop such messages in web server.

  • @mahee96

    @mahee96

    2 жыл бұрын

    actually whatsapp and other messaging apps use very customized protocols and language features to cater specific needs, such as Erlang which is extremely useful where millions of lightweight processes might need to be started and each other doesn't need to share data (everything is immutable)...also their xmpp based messaging uses extremely compressed payload compared to normal xml data transfer. These are implementation details but these are what makes the design itself eventually.

  • @DanteS-119

    @DanteS-119

    Жыл бұрын

    Great comment. I guess this video is good to understand how to get to the point where such optimizations are needed

  • @balajireddy8985
    @balajireddy89855 жыл бұрын

    Excellent brother..before seeing your videos I never thought about the system design. Now I exited to understand every application system design . Thanks for everything.!

  • @RanjithVj404
    @RanjithVj4043 жыл бұрын

    Clear and better than other WhatsApp design videos on KZread. Thanks!

  • @ChandramouliMallampalli99
    @ChandramouliMallampalli995 жыл бұрын

    crisp, in depth and perfect ! thanks for your time

  • @anjalisharma7919
    @anjalisharma79193 жыл бұрын

    So neat and just rightly detailed. I regret finding your channel so late.

  • @harishkrish14386
    @harishkrish143863 жыл бұрын

    Thanks for the recommendation YT , was searching fr ur videos frm few months but was not particular but now im very specific learning from ur videos

  • @avinashyadav1
    @avinashyadav15 жыл бұрын

    Thanks man! these videos are really helpfull.

  • @abrarisme
    @abrarisme5 жыл бұрын

    Thanks, that was pretty great. Would love to see an expansion of how encryption would work for the system and the tradeoffs you'd get between symmetric/asymmetric encryption.

  • @TechDummiesNarendraL

    @TechDummiesNarendraL

    5 жыл бұрын

    Considered :) and Thanks

  • @sammed.sankonatti
    @sammed.sankonatti3 күн бұрын

    Thats an excellent explanation. Thats marks the start of my system design interviews preparation. 24-05-2024

  • @dibyendusarkar6821
    @dibyendusarkar68213 жыл бұрын

    Well firstly, this video is really good. One part which is missing is you did not consider multiple messaging server instances running. This actually raises a very important question. One server let's say maintain persistent connection, what if that goes down for some reason?

  • @visitor-in-the-world
    @visitor-in-the-world3 жыл бұрын

    the guy has done amazingly! what I don't fully understand is the pid uid approach. All the messaging servers sit behind ALB. If a user session is bound with a pid in a specific server, it will lower the efficiency of load balancing, cuz the user will stay with that server during the conversation session. It's doable, but not ideal, IMO.

  • @daleprather3026
    @daleprather30263 жыл бұрын

    Love your videos! Thank you. And the links in the description are very helpful as well.

  • @thakurpavan
    @thakurpavan4 жыл бұрын

    Good job and explained well. Just one suggestion it is always good idea to save in db first each message and then transfer it to the other user.

  • @asambatyon
    @asambatyon3 жыл бұрын

    I love this content. Just for people who want to read, I got a couple of suggestions here: I personally would use the hearthbeat to keep the process alive. Once the heartbeat stops, or messages fail to be delivered, the process responsible for a client shutdowns and writes the shuttingdown timestamp in the DB and that is the last seen time. It has much less writes to the DB. For asymmetric encryption one would use the public/private key pairs to encrypt a common secret key (that is how you use it usually in SSL and other protocols) since asymmetric encryption is very expensive in both time and computing resources. You don't want to spent most of your processing power on encryption primitives (even less in a cellphone).

  • @dillon9347

    @dillon9347

    2 жыл бұрын

    How do you recognize when heartbeat has stopped?

  • @rdb8324
    @rdb83245 жыл бұрын

    This is really great and straightforward. I liked it better than Tushar Roy's video on the same topic

  • @SubhramRana
    @SubhramRana Жыл бұрын

    Did not explain the case where sender and receiver clients are connected to two separate "message servers". In that case the message cant be sent to in-memory-queue. A dedicated messaging queue like sqs can be used to solve this.. This is a great explanation 💖💖

  • @sameeshprajan6404
    @sameeshprajan64043 жыл бұрын

    just loved the way you explain and make it simple to understand!!!great video !! thanks

  • @lebanese000
    @lebanese0004 жыл бұрын

    love your videos. Pretty straight forward and informative. Keep it up.

  • @pramodprajapati9166
    @pramodprajapati91665 жыл бұрын

    Thanks so much for your time and effort.This section was missing from youtube or sometime they went into too much details which led to a disinterest in the topic. I don't know how, but somehow you are able to make these interesting and just the right amount of depth is explained. Really helpful and much appreciated.

  • @TechDummiesNarendraL

    @TechDummiesNarendraL

    5 жыл бұрын

    Thanks :)

  • @jyotitolanikhanchandani9796

    @jyotitolanikhanchandani9796

    5 жыл бұрын

    Very nice explanation, thank you very much! I would like to see the followup video talking about encryption and audio/video calling service.

  • @ayushjindal4981
    @ayushjindal49813 жыл бұрын

    For last seen, instead of continuous heart beat, the user can update the column whenever he is closing the app and make the column as Null whenever he comes online Here null specifies that the user is online...

  • @talivanov93
    @talivanov934 жыл бұрын

    Thank you for the video, it was very helpful! Great Idea using the CDN. One point that I would like to mention, that you don't have to send a heartbeat . Because with WebSocket there are events, for example connected and disconnection, so heartbeat might be wasteful.

  • @Collins01

    @Collins01

    2 жыл бұрын

    so, when a user I disconnected, the timestamp at that point is sent to the small dB holding the user's active status right?

  • @satboddu
    @satboddu4 жыл бұрын

    Nice Explanation. its my first system design understanding. Its clear

  • @manishwankhede17
    @manishwankhede175 жыл бұрын

    I thought its just a Send or Rec App...Gud explained

  • @logicboard7746
    @logicboard77462 жыл бұрын

    Brilliant! Just the right depth and clarity!

  • @computersciencebypandey1339
    @computersciencebypandey13394 жыл бұрын

    Hey, I think some example of duplex protocol should be mentioned. Just saying "TCP" does not provide complete picture. Mostly XMPP protocol (built on top of TCP) is used, and not, for example HTTP.

  • @akaukuntla
    @akaukuntla5 жыл бұрын

    Very educational. The other very important feature that wasn't addressed here is the 'group chat'. I wonder how WhatsApp handles them. If you could shed light on that as well, that would be awesome. Other than that, it simply awesome. Keep up the great work.

  • @parthacnp

    @parthacnp

    2 жыл бұрын

    It would be very similar to the one to one chat logic. Except that, Whatsapp stores the users in a group. So, when a message sent to a group, whatsapp, takes the users in the group and sends to the corresponding Queues through the PIDs. If the user is offline, it is stored in DB against the userid.

  • @FoodieNishi
    @FoodieNishi4 жыл бұрын

    Thanks for the concise video, I like the accent.

  • @antonyspiano2403
    @antonyspiano24034 жыл бұрын

    Just brilliant Boss, Thank you!!

  • @yashbhardwaj8510
    @yashbhardwaj85103 жыл бұрын

    I found your videos very interesting sir, just I watch them 1.25x speed and then it becomes awesome.

  • @MegaSk786
    @MegaSk7863 жыл бұрын

    Really great videos, Thank you Narendra

  • @anikpait5556
    @anikpait55564 жыл бұрын

    Great knowledgable explanation. Quick question: Why are we using a different connection HTTP server for media rather not the same connection?

  • @varunjain7360
    @varunjain73603 жыл бұрын

    awesome video. Wouldn't a single queue for a server handling multiple client connections be more efficient than 1-1 for the queue to thread/client?

  • @JUSTINHBK007
    @JUSTINHBK0075 жыл бұрын

    Narendra, I will pass my interview thanks to your tutorials !! I owe you a beer.. or two

  • @TechDummiesNarendraL

    @TechDummiesNarendraL

    5 жыл бұрын

    All the best:)

  • @somerandomguy000

    @somerandomguy000

    2 жыл бұрын

    Did you pass?

  • @JUSTINHBK007

    @JUSTINHBK007

    2 жыл бұрын

    @@somerandomguy000 I am a Software Development Manager at Amazon now !

  • @somerandomguy000

    @somerandomguy000

    2 жыл бұрын

    @@JUSTINHBK007 congrats man!

  • @rishabkumar4940
    @rishabkumar49403 жыл бұрын

    Man, you need more light in the room, by the way, great video, Thanks!

  • @khalidelgazzar
    @khalidelgazzar4 жыл бұрын

    Thank you. That's well explained and to the point

  • @umeshkumarroy5804
    @umeshkumarroy58043 жыл бұрын

    Simply Great Work. Awesome.

  • @tirupatirao7521
    @tirupatirao75214 жыл бұрын

    no words...simple and superb

  • @uday1225
    @uday12253 жыл бұрын

    Awesome one! Thanks! your videos are great! a quick question on this lecture. Say for an instance, if client A resides in a separate country (say US) from client B (say India), to which CDN A will upload the image in this scenario? If it's on US, how will the client B know which CDN url to connect to?

  • @08himanshu
    @08himanshu5 жыл бұрын

    Hi Naren, One Doubt, If the thread of another user is on different messaging server, how the communication is happening between two nodes handling different connections of the same conversation. Sorry, if I am missing something

  • @stobikoc
    @stobikoc5 жыл бұрын

    Nice video btw. However, there are questions that I wanted to ask. When A sends a message to B and B is yet to connect to the server, your explanation said that the message is kept in the global DB until the PID of B in the server is created. When the PID of B is created, the server did a full lookup to the DB in order to find out what messages that is not received by B. My question is that: 1. Does the server evoke a trigger to lookup the global database whenever a new PID entry is formed? 2. If the server evoke a lookup trigger to the global DB with an assumption of there maybe a million of pending messages in the global DB. Does looking up without updating the global DB or indexing could scale up the system? 3. What is the main core /pattern of every real life system? Does multiple queries by giving heartbeat will slow down the performance?

  • @meiliangwhut

    @meiliangwhut

    4 жыл бұрын

    Steven Candra the design listed in the video is a poor design. I cannot believe he is putting the pid in the database. The thread id is transient.

  • @nitinkulkarni7942

    @nitinkulkarni7942

    4 жыл бұрын

    @@meiliangwhut I dont think, he is saying to store the pid in the DB. He is storing the uid of the user B and the message for user B. When user B connects, and reports that is it connected, we have to find all undelivered messages and send it to user B. Also even though pid is transient, it will alive while the connection is on. You have to know which messaging server the receiver is connected to

  • @rtripath
    @rtripath2 жыл бұрын

    Great explanation. Some question on last seen design. Why you need a heart bit send by user at regular interval. If the user is connected to server it is the current time and once disconnected just store that time as last seen. So difference of current time minus that timestamp will be last seen. Once user reconnect to server it is again going to be current time as last seen.

  • @neerajcrespo
    @neerajcrespo3 жыл бұрын

    Few Questions which I am pondering right now 1. How does the long running thread/process work in Messaging server? Does it mean that the connection from client to server is not stateless but stateful and every time it finds the same process? Does that mean that the process is running on a single central machine and not in a horizontally scaled pods? 2. Is it client responsibility to poll for the messages after some time interval or is it the server's job to push messages to the client? If its the later then does that mean that Billions of client (devices) are making a stateful connection to server? is the protocol being used here is HTTP?

  • @ravkrgmail
    @ravkrgmail4 жыл бұрын

    Whatsapp like chat app often use MQ broker like kafka, rabbitmq to exchange messages across users. The server side code is lightweight for messaging but not for telephony. Server doesn't store messages in DB but are managed by message brokers i.e. A sends msg to server for B, Server put it on MQ for B destination (Q the B is listening to) and double tick the sender, B finds a msg for download and double tick the receiver, B downloads/saves the msg locally and Blue tick is done. At this point your msg is remove permanently from the server. Which is why you can't retrive a msg once you delete it. Media files are handled slightly differently. We don't need a hardcore monolithic server for msgs. IMO.

  • @adipratapsinghaps
    @adipratapsinghaps5 жыл бұрын

    19:40 So when a new process is spawned when user B is back online, and since you are just storing uid and msg in the DB, and when that process reads msgs for B in the table, how does B know who is the sender of the msg? Shouldn't you be storing the sender_uid too in the db? Because you are sending the msg to B, but since B doesn't have the sender information, in which chat will it show the message?

  • @santoshdl

    @santoshdl

    3 жыл бұрын

    in think message itself will be stored with sender_id on it. the app will parse the message into the user and message. in fact message here will be an array with message, id, timestamp, group_name etc. IMO

  • @andrejab74
    @andrejab742 жыл бұрын

    Very useful video, great explanation!

  • @anshugoel4381
    @anshugoel43814 жыл бұрын

    Can we have a messaging queue when the receiver is offline so that when receiver is online system does not has to query DB

  • @chetan21k
    @chetan21k4 жыл бұрын

    Thank you!!! I beign to learn System Design!!!

  • @sudharsansathiamoorthy1075
    @sudharsansathiamoorthy10755 жыл бұрын

    Great explanation!! the best system design video so far I have seen in youtube!!

  • @bhashkarbelwal4116
    @bhashkarbelwal41164 жыл бұрын

    wow, thanks a lot for the clear explanation.

  • @at_tap
    @at_tap5 жыл бұрын

    Your videos are absolutely simple and to the point..real beauty....hats off, Great work!

  • @TechDummiesNarendraL

    @TechDummiesNarendraL

    5 жыл бұрын

    @At thanks

  • @RS-vu5um
    @RS-vu5um2 жыл бұрын

    Excellent Tutorial. Keep up the good work

  • @adipratapsinghaps
    @adipratapsinghaps5 жыл бұрын

    So are you talking about running a process for every client? Which keeps reading from queue?

  • @phoenixbird6834
    @phoenixbird68345 жыл бұрын

    When I saw this video, I had doubts that WhatsApp’s messaging server can handle 10 million concurrent connections. Those were arose on the basis that setup would hit limit of 65k because all the connections to the back end server would be from the load balancer, that means source ip, destination ip, destination port would be same for each connection. Then only variable would be source port. So load balancer won’t be able to create more than 65k connections. But I learnt that this can be solved by making backend server listen on multiple ports due to which we can have 64k * (no. of ports on which backend is listening), which can easily overcome 10 million connections limits (given that throughput of application server is high enough).

  • @4324234fdsfds
    @4324234fdsfds4 жыл бұрын

    Your videos are really great.. :) Delivered

  • @adithyaks8584
    @adithyaks85843 жыл бұрын

    One thing I don't understand is how many threads will be active in the service instances and clarity around thread management. Also let's say we have millions of connections in one server, will there be calls to other servers for contacts who have connections in other server.(If so this could be the reason for some delay that we experience when contacting some remote contacts) Rest is superb!

  • @dev-skills
    @dev-skills Жыл бұрын

    location sharing is another important use case but can be implemented similarly to text message as we here sent the latitude-longitude data.

  • @user-lw3ws6ec2v
    @user-lw3ws6ec2v5 жыл бұрын

    It would be impossible to use system threads for an application like Whatsapp so it is definitely Erlang's actors

  • @WalkingArchive

    @WalkingArchive

    4 жыл бұрын

    @@shaaradpandey5546 It won't scale.

  • @WalkingArchive

    @WalkingArchive

    4 жыл бұрын

    @@shaaradpandey5546 spring? no. It depends on how much users do you need to support. forget about spring, that's 90s tech

  • @Codeness23

    @Codeness23

    3 жыл бұрын

    Even actors are threads, all you gotta look at is whether they are scaling across servers or on the same server.

  • @aneeinaec

    @aneeinaec

    3 жыл бұрын

    Yes... He is explaning Erlang OTP framework in simple way... Only super light weight threading mechanisms will scale like this... WhatsApp itslef uses Erlang OTP I guess.

  • @odionedwards5538

    @odionedwards5538

    11 ай бұрын

    😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊

  • @nakulkumar9415
    @nakulkumar94154 жыл бұрын

    What about the low level design? Dont you think if MySQL tables are used they cannot handle queries in millions? Please explain that also.

  • @abhrajyotikirtania2275
    @abhrajyotikirtania22755 жыл бұрын

    Nice ! Thanks for sharing

  • @akn4336
    @akn43365 жыл бұрын

    Very good video, thank you. qq! what if client B is connected to another server? How does server A (that client A is connected) communicate to all other servers and check to see if client B has any online process there?

  • @shawnngohungson9662
    @shawnngohungson96625 жыл бұрын

    Thanks for your work man!!

  • @ganeshsundar1484
    @ganeshsundar14845 жыл бұрын

    Awesome explication !!!

  • @chinmaytripathy
    @chinmaytripathy2 жыл бұрын

    Hey Thanks for this video. Just need one clarification on tick point (sent, delivered,read) . Are we saving this information in database? And one more question : What the mechanism in meesaging server to find out the appropriate client from billion of user ?

  • @ronidey380
    @ronidey3802 жыл бұрын

    Just one question: according to this architecture you are only storing the messages to DB when the other user is not connected right? then how are you gonna keep track of all the history or should i say the past messages sent or received by any particular user?

  • @NeemiasJunior1
    @NeemiasJunior14 жыл бұрын

    Very good video, just a point that needs more attention is at 14:33 when you talk about threads and process inside the message service. Actually this is not strictly true, actually they use green threads inside the BEAM machine which are totally different and much more scalable than a real CPU thread per connection. For more info I would recommend the reading on en.wikipedia.org/wiki/Green_threads and en.wikipedia.org/wiki/C10k_problem

  • @anastasianaumko923
    @anastasianaumko92311 ай бұрын

    Great job, thank you so much 😌

  • @pramodsingh344
    @pramodsingh3447 ай бұрын

    very nicely explained. Thanks

  • @saurabhjangir
    @saurabhjangir2 жыл бұрын

    How will the pid thing work if you have multiple messaging servers and client B is connected to some other server.

  • @kushangowda
    @kushangowda4 жыл бұрын

    What did I just hear? New thread/process to handle each peer? We are talking about billions of peers together here!

  • @ryan-bo2xi

    @ryan-bo2xi

    4 жыл бұрын

    What is your idea ? Any standard http server handles request processing creating multiple threads unless you are using CGI.

  • @kavithachellasamy2393
    @kavithachellasamy23933 жыл бұрын

    Thanks for the video. As u said, does the whatsApp stores the user along with last seen time in the table? For the million of users ? How does the chat history works? How does the whatsapp stores the user contacts in the table?

  • @templestamilnadu869
    @templestamilnadu869 Жыл бұрын

    Really really really super great explanation bro👍👌👌👌

  • @chrisy.703
    @chrisy.7032 жыл бұрын

    thanks great vidoe. U use single thread to deal with user message, so how many users one server could handle?

  • @akashmahalik8001
    @akashmahalik80012 жыл бұрын

    I thought my dog was barking but it was in the video lol.

  • @joelswapnilsingh5263
    @joelswapnilsingh52633 жыл бұрын

    Absolutely incredible!

  • @AAKASHJAIN-lx3pr
    @AAKASHJAIN-lx3pr3 жыл бұрын

    Hey, You said at 10:03 that the server never knows the connection to the client and will never tries to connect to the client. Let us assume 2 situations 1. When the client is currently offline and now opens up the internet then the connection will be established with the message server . What happens to the connection when the client internet is on but the client is not doing any activity on the Whatsapp. Will the connection get closed? Then in that case how do we receive messages even when we are not actually using the App. If not then is Whatsapp keeping all the client connections live and running for all the clients having a Living Internet Connection even for a situation when the App is not being used. Are these client connection information stored somewhere on with the Message Server?

  • @GiorGoS07031992
    @GiorGoS0703199210 ай бұрын

    Great work!🎉

  • @parthacnp
    @parthacnp3 жыл бұрын

    I am not sure whether Whatsapp uses PID + data pipe combination. Same could be simplified by using separate Queues in a messaging server like RabbitMQ which can be scaled horizontally, with persistent messaging. So, whenever a message sent from A to B, the message could be put in B's Queue. When B connects, automatically, message would be read by B. Once B Acknowledges, the message would be removed from queue. But as u have mentioned, there could be a limitation on how many connections server can handle. Likewise , when a message is sent to a group, the message can be put in the queue of all users of the group. Encryption in case of Asymmetric keys, we encrypt with public key and receiver decrypts with private key. so , we would end up storing public keys of all contacts in local store?

  • @nilaysheth3283

    @nilaysheth3283

    2 жыл бұрын

    But for every user will there be separate queue created?

  • @parthacnp

    @parthacnp

    2 жыл бұрын

    @@nilaysheth3283 Yes. One queue per user because messaging systems are queue intensive.

  • @bbs32
    @bbs322 жыл бұрын

    Thanks. Is there any messaging framework that I can hands on and play with?

  • @AbhishekKumar-yu2fy
    @AbhishekKumar-yu2fy4 жыл бұрын

    Hi @Tech Dummies, Thanks for this video. But i have one doubt. As you have mentioned at 15:47 minute of this video, for every active client there would be a corresponding thread/process and a queue. But my point is - isn't it taking unnecessary space in memory just for being active. bcz whatsApp has billions of users. And if millions are just active( they are not doing messaging or call) , for them also process and queue will be created. Thank You !

  • @foysolahmedshuvo706

    @foysolahmedshuvo706

    Жыл бұрын

    I came here to ask the same question. Anyway, do you have any answer / Explanantion for this? though the question you asked two years ago. Thanks!

  • @shivprasad920
    @shivprasad9205 жыл бұрын

    Hii Thanks dude☺ can you please make something for Devops engineer interview prep..

  • @AkshayPingle88
    @AkshayPingle882 жыл бұрын

    Thanks for this education. It is really appreciated. Just want to ask one thing, is the Whats app uses WebSocket to pass the message because it is not using any HTTP for alphabet messages?

  • @jiayangsun7309
    @jiayangsun73094 жыл бұрын

    Personally, I think .(1) The message receiver and message delivery should be decouple into 2 separate service, and they could be fully stateless. They can be connected with a message queue service or sit behind service discovery directly. Put them in a single executable and pass message between process is feasible for very small user base, but it's not scalable at all. Besides, It makes the "Mess SERVER" hard to test. (2) If you have an abstract concept "channel" or "session" here, then it's easy to forward message with rpc or write it into DB. (3) real-time message is time sensitive and has high frequent requests. It's not a very good idea to write all message into DB. Instead, I would say we should only write message for offline users into two level DB (Memory + persistent).

  • @sushmitagoswami7320
    @sushmitagoswami73202 жыл бұрын

    I have one observation on this. If we keep the message buffer within the messaging service or the gateway, won't the gateways be overwhelmed since it holds the costly TCP or websocket connection for each client?

  • @PoonamSharma-ki4wc
    @PoonamSharma-ki4wc5 жыл бұрын

    Hi Naren how does a user connected to one server communicates to a user connected to a different whatspp server

  • @shivaprasad.v.g7526
    @shivaprasad.v.g75263 жыл бұрын

    What happens if the thread is in different message server. Do we need to have network connectivity between those ?

  • @prafulsinghvit

    @prafulsinghvit

    3 жыл бұрын

    Same doubt I was having and was reading through the comments section to see if others feel the same or I am too novice to understand details. Any explanation is appreciated. Thanks!!

  • @kambalavijay6800
    @kambalavijay68003 жыл бұрын

    What in case client 1 and 2 are connected to different messaging server?

  • @akshaygupta9625
    @akshaygupta96254 жыл бұрын

    Why there is a need for separate Http server to send images or audio files? Why can't we use the message server directly?

  • @jagjotsinghwadali3535
    @jagjotsinghwadali3535 Жыл бұрын

    Thank you for this lecture . Further, I have a query regarding design Problem Statement:- I have subcategories defined under Vehicle Class as :- Bike ,Car, truck, bus Further, there are different variants under each four categories Bike :- sport, standard Car :- sport, standard, electric Truck :- Mini Truck , Power Truck Bus:- Mini Bus, AC Bus I have to calculate the price based on variants. For example Mini Bus price. Question:- How should I define the classes ? 1. Keep only vehicle as a class . 2. Keep Vehicle as a base class and make bike, car, truck , bus as subclasses and they should inherit the base class. 3. make sports bike as class which will inherit bike class which will further inherit vehicle class

  • @aakashjana6225
    @aakashjana62254 жыл бұрын

    I have some questions though 1) how are users identified/distinguished from the senders device before the message reaches the server. 2) how could I possible create such a connection in Django?

  • @siyabonganzulwana3316
    @siyabonganzulwana33165 жыл бұрын

    Good Job man,

  • @9986698971
    @9986698971 Жыл бұрын

    I believe sending receiving txt messages when clients are offline is done using a lightweight connection . For other use case of media files https protocol is being used . what prompted for this decision as only difference is payload

  • @cesar3228
    @cesar32285 жыл бұрын

    where is the xmpp server going? is the messaging server?

  • @mohitladia
    @mohitladia3 жыл бұрын

    Great content!!

  • @ajourney179
    @ajourney1794 жыл бұрын

    This was amazing.

  • @dhanesharole2315
    @dhanesharole23153 жыл бұрын

    How does light weight process that handle message queue for particular client keep its message queue size within certain bound? E.g. If some client sends 100s of messages in burst then the process handling that user's client will be overwhelmed. Will those be offloaded to DB as well? or will it stop accepting new messages until queue is empty? one more question on similar note, what happens if client has sent message and it is in queue but the server holding that queue / process dies. In that case how will clients know to retry sending those messages on reconnect?

  • @Chanchanchan169
    @Chanchanchan1693 жыл бұрын

    Somewhat I think the bigger picture is still missing here, user base is definitely useful, then jump into Last seen directly?? What about other important facts like do we need to store all the messages, what about geo distribution, etc..

  • @anandkumar2058
    @anandkumar20585 жыл бұрын

    good video, can you make a video on design of a video calling service.

  • @HOLONIA4EVER
    @HOLONIA4EVER3 жыл бұрын

    Does the table of [PID, UID] is only one table which uses all the online users at the same time ?

  • @cccc2740
    @cccc27404 жыл бұрын

    Do we have a process/thread per user?

Келесі