https://bz.apache.org/bugzilla/show_bug.cgi?id=60607
--- Comment #12 from Philippe Mouawad <[email protected]> --- (In reply to Sean Chang from comment #10) > And some request failed due to file not found, but actually the file is > there and succeed for some other requests. > > java.io.FileNotFoundException: /home/cosben/cos_upload/2bill/200K.ts (Too > many open files) > at java.io.FileInputStream.open0(Native Method) > at java.io.FileInputStream.open(FileInputStream.java:195) > at java.io.FileInputStream.<init>(FileInputStream.java:138) > at org.apache.http.entity.FileEntity.getContent(FileEntity.java:88) > at > org.apache.jmeter.protocol.http.sampler.HTTPHC4Impl. > sendEntityData(HTTPHC4Impl.java:1459) > at > org.apache.jmeter.protocol.http.sampler.HTTPHC4Impl.handleMethod(HTTPHC4Impl. > java:585) > at > org.apache.jmeter.protocol.http.sampler.HTTPHC4Impl.sample(HTTPHC4Impl.java: > 399) > at > org.apache.jmeter.protocol.http.sampler.HTTPSamplerProxy. > sample(HTTPSamplerProxy.java:74) > at > org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase. > sample(HTTPSamplerBase.java:1176) > at > org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase. > sample(HTTPSamplerBase.java:1165) > at > org.apache.jmeter.threads.JMeterThread.executeSamplePackage(JMeterThread. > java:473) > at > org.apache.jmeter.threads.JMeterThread.processSampler(JMeterThread.java:416) > at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:252) > at java.lang.Thread.run(Thread.java:745) This does not mean the file is not here, it means you reach a linux limit on file descriptors. If you don't hit this with the other version of JMeter then it could be a jmeter issue but it's not sure. https://easyengine.io/tutorials/linux/increase-open-files-limit/ 1/ Run ulimit -a with the user that runs jmeter . 2/ How many threads are you running ? Did you compare versions of JMeter with exactly the same script and user.properties/jmeter.properties ? Thank you -- You are receiving this mail because: You are the assignee for the bug.
