Php – High traffic chat – how to check if there is new message and show it for all users

chatjqueryMySQLPHPwebsites

I already had question about this but obviously it was not accepted very well, apparently too long when it's actually more information so you could have given me better answer.

Ok, I will be much clearer now. Best possible logic to develop scalable chat in terms of stability, storing/reading messages on chat, updating chat on new message for all users etc.? I have most of this developed, the logic I think I miss is –> check if there is new message and show it for all users. I have this implemented but it crashes the site due to its traffic of 300k-400k people, so that's my main question.

The chat is PHP based and uses Pusher (www.pusher.com) for instant messaging but it lacks what I need because it's more like a websocket.


I'm using hardcoded files to keep messages (want to avoid database as much as possible). It's a no extension type of file, I'm sure you know. I'm getting crash with

$fp = fopen(..., "w"); // pretend ... is the path and filename
fwrite($fp, $msg); //hardcode the message
fclose($fp);

where $msg is the message itself. I'm having 1 file per message. I show last 150 messages = 150 file accesses and reads, yeah it's too much I guess. I have better logic now which I'm pursuing and that is 1 file with last 50-100 messages at all time. Sure it should be much better.

How does it crash, that's the trickiest part because everything seems ordinary, believe me it is difficult to determine what exactly crashes the site, but in like 5 minutes when I try to open the site it's gone, then I put the old content without chat and is back online again.

I'm having jquery post every 1 second to check if there is new message. I'm using timestamp in a special file where I keep the time last message was sent and if ((time() - time in file) <= 2) = reload last 150 messages including the last one. Too much input/output, write/read or however to say it I think is what crashes the site.

Best Answer

First of all, could you provide me with some clarification: are you coding a chat room (one-to-many) or individual (one-to-one) chats?

There are a couple of obvious flaws in your current system's design that I would like to point out. First, I'll start out with a brief analysis and then explain what is wrong with it and what you can do to fix it. Obviously if you want to run a successful project you should start from step one and get your hands dirty with systems analysis and design.

Problem

Website receives a high volume of traffic and eventually crashes.

Requirements

  1. Sustain high volume of web traffic
  2. Display previous 150 messages
  3. Secure communication pathway between clients

Problem Analysis

Right away it is obvious that your site is crashing because the code that opens the file is being called hundreds of thousands of times per second. Opening files and writing to them is very memory intensive.

The FILE Probem: Files do not handle concurrency very well at all. In fact, they're terrible with concurrency. Think about it like this, essentially you've opened the same file with notepad with hundreds of thousands of open windows/processes and you're changing the content in all of them simultaneously. When you try to solve a problem with this type of solution you end up with non-deterministic results. Basically, it is impossible to predict what data will be in the file.

Fortunately, there is a way to get deterministic results while still using files if you lock them properly. Unfortunately, this is not a solution to your problem. In your case, only one person would be able to send a message at a time. Surely that is NOT the solution you want!

Wait... there IS a solution:

You CAN USE a Database!

Databases are particularly good at solving this sort of concurrency issue! Depending on what database/engine you use your table may lock or only a single record might lock. In you case, I would suggest a free database like MySQL and a record-locking engine like InnoDB. If you're not a database rookie, you might want to look into MariaDB as well, it is a fork of the MySQL project by the original developer and is a binary drop in.

Basically, there is no way around it using a database for this type of solution. In fact, databases are very powerful and you can program procedures with them. From your query you can choose to select only 150 messages and then order them by most recent very easily. All users will be able to send messages at the same time with a record-locking database engine like InnoDB.

I would like to additionally point out that I would be a little troubled to find out what the code for the rest of the application looks like. It is very easy to write PHP code that looks fine but performs terribly. I'm not sure if you're familiar with asymptotic analysis or unit testing but I highly suggest that you thoroughly test your code before pushing it to production. Given the size of your userbase you should be concerned about code optimization and runtime. If your application/problem/solution was properly analyzed, designed, implemented, tested, and debugged you would have a much better handle on your problem.

It is also very easy to write code in PHP that is insecure. I would like to advise you to test your code thoroughly (try to break it) when writing modules that interact with the database. Poorly coded web applications can be very easy to exploit and given your user base of 300-400k I wouldn't doubt it if Cindy Lou Who suddenly decided to give it her own security audit. If a white hat hacker discovers the flaw in your system they will likely encourage you to fix it. If a black hat hacker discovers the flaw they will likely use it to spread malware and steal information.

Related Topic