mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
macos: increase child process stdio buffer size (#4694)
On macOS, when calling `spawn`, the child process's stdio buffer size is 8192 bytes. This is due to the AF_UNIX socket buffer size being 8192 bytes in the XNU kernel. When large amounts of data are transferred through the child process's stdio, this buffer size can cause performance issues. To mitigate this, the buffer size has been increased to 65536 bytes, aligning it with the behavior on Linux.
This commit is contained in:
parent
abe59d6319
commit
7894072528
@ -188,8 +188,12 @@ void uv__wait_children(uv_loop_t* loop) {
|
|||||||
static int uv__process_init_stdio(uv_stdio_container_t* container, int fds[2]) {
|
static int uv__process_init_stdio(uv_stdio_container_t* container, int fds[2]) {
|
||||||
int mask;
|
int mask;
|
||||||
int fd;
|
int fd;
|
||||||
|
int ret;
|
||||||
|
int size;
|
||||||
|
int i;
|
||||||
|
|
||||||
mask = UV_IGNORE | UV_CREATE_PIPE | UV_INHERIT_FD | UV_INHERIT_STREAM;
|
mask = UV_IGNORE | UV_CREATE_PIPE | UV_INHERIT_FD | UV_INHERIT_STREAM;
|
||||||
|
size = 64 * 1024;
|
||||||
|
|
||||||
switch (container->flags & mask) {
|
switch (container->flags & mask) {
|
||||||
case UV_IGNORE:
|
case UV_IGNORE:
|
||||||
@ -199,8 +203,17 @@ static int uv__process_init_stdio(uv_stdio_container_t* container, int fds[2]) {
|
|||||||
assert(container->data.stream != NULL);
|
assert(container->data.stream != NULL);
|
||||||
if (container->data.stream->type != UV_NAMED_PIPE)
|
if (container->data.stream->type != UV_NAMED_PIPE)
|
||||||
return UV_EINVAL;
|
return UV_EINVAL;
|
||||||
else
|
else {
|
||||||
return uv_socketpair(SOCK_STREAM, 0, fds, 0, 0);
|
ret = uv_socketpair(SOCK_STREAM, 0, fds, 0, 0);
|
||||||
|
|
||||||
|
if (ret == 0)
|
||||||
|
for (i = 0; i < 2; i++) {
|
||||||
|
setsockopt(fds[i], SOL_SOCKET, SO_RCVBUF, &size, sizeof(size));
|
||||||
|
setsockopt(fds[i], SOL_SOCKET, SO_SNDBUF, &size, sizeof(size));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
|
||||||
case UV_INHERIT_FD:
|
case UV_INHERIT_FD:
|
||||||
case UV_INHERIT_STREAM:
|
case UV_INHERIT_STREAM:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user