我遇到了同樣的問題在我們的集羣中,並返回到我的電腦做一些簡單的實驗,希望弄清楚。我配置hadoop在僞分佈式模式,並使用默認容量 - scheduler.xml和配置mapred-site.xml中,如下所示: <!-- Put site-specific property overrides in this file. -->
<configuration>
<property>
我一直在使用LinkedBlockingQueue,並且最近由於插入性能低而將其更改爲ArrayBlockingQueue。那之後我獲得了顯着的性能提升。然而,我的代碼的某個時候拋出內存外的一個錯誤: 我的Java代碼 ArrayBlockingQueue<String> s = new ArrayBlockingQueue<String>(Integer.MAX_VALUE);
我看了Arr