vdiravka commented on code in PR #2500: URL: https://github.com/apache/drill/pull/2500#discussion_r865819857
########## .travis.yml: ########## @@ -45,6 +45,9 @@ cache: before_install: - export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-arm64" - export PATH="$JAVA_HOME/bin:$PATH" + - export MEMORYMB=2048 Review Comment: I think 2048 is small value. The default one is 2500M. Now Travis build hangs: ``` [INFO] Running org.apache.drill.exec.fn.impl.TestAggregateFunctions No output has been received in the last 10m0s, this potentially indicates a stalled build or something wrong with the build itself. ``` Possibly it is due to lack of heap memory. @luocooong What do you think about reverting this value to the default one? ########## .travis.yml: ########## @@ -45,6 +45,9 @@ cache: before_install: - export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-arm64" - export PATH="$JAVA_HOME/bin:$PATH" + - export MEMORYMB=2048 + - export DIRECTMEMORYMB=5120 Review Comment: One note about `DIRECTMEMORYMB`. Do you think `4500M` is really small? GitHub Actions has the same [7Gb](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources) memory limit and these builds pass amost always. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
