summaryrefslogtreecommitdiffstats
path: root/sbin/ggate/ggatel/ggatel.8
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2011-04-02 06:56:06 +0000
committerpjd <pjd@FreeBSD.org>2011-04-02 06:56:06 +0000
commit6fa8fbd0297a9b58330730ad979974ff50d3fa70 (patch)
tree312bb03de8c0581a7bc37fadaf00031ccc46cc59 /sbin/ggate/ggatel/ggatel.8
parentb68e210026b2391999800dad62a05b5edea50731 (diff)
downloadFreeBSD-src-6fa8fbd0297a9b58330730ad979974ff50d3fa70.zip
FreeBSD-src-6fa8fbd0297a9b58330730ad979974ff50d3fa70.tar.gz
GEOM has an internal mechanism to deal with ENOMEM errors returned via
g_io_deliver(). In such case it increases 'pace' counter on each ENOMEM and reschedules the request. The 'pace' counter is decreased for each request going down, but until 'pace' is greater than zero, GEOM will handle at most 10 requests per second. For GEOM GATE users that are proxy to local GEOM providers (like ggatel(8) and HAST) we can end up with almost permanent slow down of GEOM down queue. This is because once we reach GEOM GATE queue limit, we return ENOMEM to the GEOM. This means that we have, eg. 1024 I/O requests in the GEOM GATE queue. To make room in the queue and stop returning ENOMEM we need to proceed the requests of course, but those requests are handled by userland daemons that handle them by reading/writing also from/to local GEOM providers. For example with HAST, a new requests comes to /dev/hast/data, which is GEOM GATE provider. GEOM GATE passes the request to hastd(8) and hastd(8) reads/writes from/to /dev/da0. Once we reach GEOM GATE queue limit, to free up a slot in GEOM GATE queue, hastd(8) has to read/write from/to /dev/da0, but this request will also be very slow, because GEOM now slows down all the requests. We end up with full queue that we can unload at the speed of 10 requests per second. This simply looks like a deadlock. Fix it by allowing userland daemons that work with both GEOM GATE and local GEOM providers to specify unlimited queue size, so GEOM GATE will never return ENOMEM to the GEOM. MFC after: 1 week
Diffstat (limited to 'sbin/ggate/ggatel/ggatel.8')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud