Hi everyone We have a kafka connect service, which runs in standalone mode. Recently, there are too many tasks running on it, and sometimes too many open files error will be thrown. Through the lsof command, it can be seen that there are many commit.offsets files open.
$ lsof -p 16862|wc -l 36960 $ lsof -p 16862|grep connect.offsets|wc -l 36161 Does anyone know the reason? Regards Haihua