summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_app_queue.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2020-12-18Limiting app queue notifications count in socket.Max Romanov1-6/+12
Under high load, a queue synchonization issue may occur, starting from the steady state when an app queue message is dequeued immediately after it has been enqueued. In this state, the router always puts the first message in the queue and is forced to notify the app about a new message in an empty queue using a socket pair. On the other hand, the application dequeues and processes the message without reading the notification from the socket, so the socket buffer overflows with notifications. The issue was reproduced during Unit load tests. After a socket buffer overflow, the router is unable to notify the app about a new first message. When another message is enqueued, a notification is not required, so the queue grows without being read by the app. As a result, request processing stops. This patch changes the notification algorithm by counting the notifications in the pipe instead of getting the number of messages in the queue.
2020-08-11Introducing application and port shared memory queues.Max Romanov1-0/+119
The goal is to minimize the number of syscalls needed to deliver a message.