Mysql Servers for Attendance System

Posted by foo on Server Fault See other posts from Server Fault or by foo
Published on 2010-10-04T07:41:51Z Indexed on 2010/12/25 14:55 UTC
Read the original article Hit count: 245

Filed under:

I'm building an attendance system. There are about 20 places where people will check in and check out using Mifare 1K Card. It will use MySQL as the database. The system will display something like "#ID IN: 800AM" when the first time the user checks in and "#ID OUT: 400PM" when the user checks out. For this to work, all the databases need to be synchronized with each other all the times.

For an example, if user A went to location #1 to check in but by the time he wants to return home, the server at location #1 went down, he needs to go to location #2 or the nearest server to check out. The server at location #2 should display '#ID OUT: 400PM" and not "#ID IN: 400PM" since he's already checked in.

So, what should I use to ensure this idea will work? My main concern is with the network (other department manages it) which is very unpredictable. It just love to go down anytime it wants to.

Update

LOL, didn't realize my question is not clear, just noticed it when you guys pointed it out, sorry about that.

My real question is, how can I configure my MySQL to be synchronized with each other (20 servers)? MySQL cluster ? (tried reading about it, but I'm not sure if it's the right thing to do)

My current setup (first phase):

  • Local database for each server
  • OS: Slackware
  • A main server that keeps track which staff is at which server
  • A web based front end for the user to see their history (which connects to the server based on their records)

Main Pros

  • No worries about network problems since it is a local database

Main Cons

  • A user can only check in and out at the same server. Databases/Servers are not connected with each others.
  • Have to add the user to each server if the users want to check in at different locations. Which means, if he wants to go to location A, he must be checked out from location A first and then check in at location B. The server at location B didn't know that the user has checked in before at A.

By the way, I've already centralized my NTP to a local server. About the network, let's just say, I don't have the authority to make changes so that the network will be better. The network won't effect all 20 servers at once, usually, just a few of them for several times a week.

If there are anything else you would like me to answer, please just ask.

© Server Fault or respective owner

Related posts about mysql