Open shirady opened 2 days ago
Hi, In case you want to add something to the discussion - @dannyzaken @guymguym if you think it is interesting to keep the investigation and have suggestions for things we can test, and improve our knowledge in internal NodeJS behavior, etc.
@romayalon @nadavMiz if you think I missed any detail (I can either edit the description or add a comment)
Environment info
Actual behavior
Expected behavior
Steps to reproduce
Copied from issue #8471 (see this comment):
From a node in the cluster that runs noobaa:
config.json
in pathvi /ibm/fs1/cessharedroot/ces/s3-config/config.json
and add the values:"UV_THREADPOOL_SIZE": 16
and"ENDPOINT_FORKS":32
. Note: without this change running it would result in an error of timeout during the preparing step of warpmms3 config change DEBUGLEVEL="all"
for the restart.run_counter_fd.sh
by./run_counter_fd.sh <main PID>
(the<main PID>
is the main process ID fromsystem status noobaa
).echo $0 $1
monitor open file descriptor count every 10 seconds
while true; do ls -al /proc/$1/fd | wc -l date sleep 10 done