php - RabbitMQ for high volume MySql inserts and updates? -
php - RabbitMQ for high volume MySql inserts and updates? -
we have mysql database has many writes & updates per sec , rate growing rapidly.
to handle writes , updates thinking adding queuing instance rabbit mq between application , db, each query sent queue , users not have wait database finish inserting , updating records.
we understand using queue cause delay in db info update , not problem our application.
for inserts utilize 'insert delayed' , myisam table can't updates. after digging came queuing option.
is recommended method lowering working high volume writes db? or should consider solution?
if have recommendation other rabbitmq open new ideas.
also - known plugins php mysql pdo rabbitmq?
thanks
perhaps library may help you: https://github.com/videlalvaro/php-amqplib
php mysql rabbitmq
Comments
Post a Comment