Java thread blocking

前端 未结 6 585
半阙折子戏
半阙折子戏 2021-01-01 03:07

i have a problem with my java environement. I\'m running Solr 1.3 (search engine) since more then a year now and suddenly i got alot of trouble with it. All my thread pool

6条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-01 03:35

    All your Threads are logging things. They all need to write on the disk from time to time. Everytime one of your 240 threads hits a logging line there will be disk access issues.

    It baffles me that the Thread having the lock is in the RUNNABLE state.

    I think it might be waiting for some external ressource to be released (like disk access for example)

    Are you running low on disk space? Have you recently changed something in your storage system?

提交回复
热议问题