I have a question...

Is it possible to set priorities in MySQL?

On one server I have application that receives data from or primary server and store it to DB for further use. On the other side I have website and Phone APPs. What I would like to do is set priority to users (web and phone) to ensure that they will always have better access. Data can take much more time since it is done by crontab.

Thanks for your ansers!

link|improve this question

80% accept rate
3  
Are you saying I'm slow?! ;) – Crontab Oct 27 '11 at 14:04
:) no I am just saying you have time ;) – M.V. Oct 27 '11 at 14:05
Unfortunately MySQL has no concept of priorities. What do you mean by "I have application that receives data from or primary server and store it to DB"? Could you explain exactly what this process is doing? – Michael Mior Oct 27 '11 at 14:05
feedback

2 Answers

up vote 2 down vote accepted

It is possible to set account resource limits, but these don't set a priority as such. Instead, they allow you to limit the number of connections/queries/updates for each user on the database.

You might be able to use mysql-proxy to do something a little more custom. It can be customised by a lua script, which would allow you to introduce some more specific behaviour like blocking a query if the server is too busy etc..

link|improve this answer
feedback

You can dynamically set the low_priority_updates system variable at time of query. It will prioritize SELECT statements over INSERT, UPDATE and DELETE statements. Though this won't work if you're using InnoDB tables.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.