show/hide this revision's text 3 fixed spelling

May not be "best practice" advice here... but based on real life needs and expirience: we have distributed system, 60 boxes running each 10 clients all do task X, and they need to take the next task from a "Q". The Q is being feed from one other "client"...

We had used inter process communication, we MSMQ, we tried service broker... It just doesn't work in the long term because you are giving away the control of your application to Microsoft. It works great as long as your needs are satisfied. it becomes hell when you need something not supported.

The best solution for us was: Use a SQL Database table as the "Q". Don't invent reinvent the wheel there, snce since you will make mistakes (locks). There is info out there on how to do it, it is very easy and we handled over 200K messages per 24H (with 60x10 = 600 concurrent reads and writes to the Q). That is in addition to the same SQL server handling the rest of the application stuff...

Some reasons why MSMQ doesn't work:

  1. When you need to change the logic of the Q to not FIFO, but something like "the oldest RED message" or "the oldest BLUE message" you can;t do it. (I know what people will say, you can do it by having a RED Q and a BLUE Q.. .But what if the number/types of Ques is dynamic based on the way the application is administrated and changes daily?)

  2. It adds a point of failure and deployment nightmare (the Q is a point of failure and you need to deal with setting the right permissions on all boxes to read/write messages etc' in Enterprise software you pay in blood for these type of things). SQL server... all clients are writing/reading already from the DB, it is just one more table..

show/hide this revision's text 2 added 66 characters in body

May not be "best practice" advice here... but based on real life needs and expirience: we have distributed system, 60 boxes running each 10 clients all do task X, and they need to take the next task from a "Q". The Q is being feed from one other "client"...

We had used inter process communication, we used the Windows Q (not SQL Server)MSMQ, we tried service broker... It just doesn't work in the long term because you are giving way away the control of your application to Microsoft. It works great as long as your needs are satisfied. it becomes hell when you need something not supported.

The best solution for us was: Use a SQL Database table as the "Q". Don't invent the wheel there, sicne snce you will make mistakes (locks). There is info out there on how to do it, it is very easy and we handled over 200K messages per 24H (with 60x10 = 600 concurrent reads and writes to the Q). That is in addition to the same SQL server handling the rest of the application stuff...

Some reasons why MSMQ doesn't work:

  1. When you need to change the logic of the Q to not FIFO, but something like "the oldest RED message" or "the oldest BLUE message" you can;t do it. (I know what people will say, you can do it by having a RED Q and a BLUE Q.. .But what if the number/types of Ques is dynamic based on the way the application is administrated and changes daily?)

  2. It adds a point of failue failure and deployment nighmare nightmare (the Q is a point of failure and you need to deal with setting the right permissions on all boxes to read/write messages etc' in Enterprise software you pay in blood for these type of things). SQL server... all clients are writing/reading already from the DB, it is just one more table..

show/hide this revision's text 1

May not be "best practice" advice here... but based on real life needs and expirience: we have distributed system, 60 boxes running each 10 clients all do task X, and they need to take the next task from a "Q". The Q is being feed from one other "client"...

We had used inter process communication, we used the Windows Q (not SQL Server), we tried service broker... It just doesn't work in the long term because you are giving way the control of your application to Microsoft. It works great as long as your needs are satisfied. it becomes hell when you need something not supported.

The best solution for us was: Use a SQL Database as the "Q". Don't invent the wheel there, sicne you will make mistakes (locks). There is info out there on how to do it, it is very easy and we handled over 200K messages per 24H (with 60x10 = 600 concurrent reads and writes to the Q).

Some reasons why MSMQ doesn't work:

  1. When you need to change the logic of the Q to not FIFO, but something like "the oldest RED message" or "the oldest BLUE message" you can;t do it. (I know what people will say, you can do it by having a RED Q and a BLUE Q.. .But what if the number/types of Ques is dynamic based on the way the application is administrated and changes daily?)

  2. It adds a point of failue and deployment nighmare (the Q is a point of failure and you need to deal with setting the right permissions on all boxes to read/write messages etc' in Enterprise software you pay in blood for these type of things). SQL server... all clients are writing/reading already from the DB, it is just one more table..