You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got too many open files error when use bix to query tabix index file.
I guess each bix.Query may open some files and not closed immediately.
While golang run concurrency for loop, the files open rapidly extend.
The it is easily to reached the limit of file number to open i.e. 1024 from ulimit -n.
How can we solve this error?
The text was updated successfully, but these errors were encountered:
I got
too many open files
error when use bix to query tabix index file.I guess each
bix.Query
may open some files and not closed immediately.While golang run concurrency for loop, the files open rapidly extend.
The it is easily to reached the limit of file number to open i.e. 1024 from
ulimit -n
.How can we solve this error?
The text was updated successfully, but these errors were encountered: