3

当我尝试使用以下语句时

explain -brief A;

我收到以下错误

2013-02-06 19:18:34,250 [Low Memory Detector] INFO     org.apache.pig.impl.util.SpillableMemoryManager - first memory handler call - Collection threshold init = 526123008(513792K) used = 349984528(341781K) committed = 699072512(682688K) max = 699072512(682688K)
2013-02-06 19:18:34,942 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 2998: Unhandled internal error. Java heap space

我试图通过添加选项来增加堆空间大小

-Dmapred.child.java.opts=-Xmx4096m

但它没有用。任何想法?

谢谢。担

4

1 回答 1

3
  1. 使用增加 PIG 堆空间

    export PIG_HEAPSIZE=4096

尽管如此,如果您在虚拟机中运行 PIG,请确保已为虚拟机分配了超过 4GB(或您想要设置的任何数量)的内存。假设您已将XGb 分配给 VM,那么将堆大小增加到超过XGb 将无济于事。

  1. 此外,您使用的 PIG 版本可能存在问题

尝试使用较旧的猪版本。我遇到了与 PIG-0.14.0 相同的可重现问题,但PIG-0.12.1没有

于 2015-04-30T22:04:50.700 回答