GitHub user kkhatua opened a pull request:
https://github.com/apache/drill/pull/1086
DRILL-6076: Reduce the default memory from a total of 13GB to 5GB
Reduce minimum memory requirements from 13GB to <= 5GB
For this, the default need to be changed as follows:
Allocation | Current | New
------------|--------|------
Heap | 4GB | 1GB
Direct | 8GB | 3GB
CodeCache | 1GB | 512MB
MaxPermSize | 512MB | 512MB (Ignored if JDK8+)
**Total** | 13.5GB | 5GB
**Total (JDK8+)** | 13GB | 4.5GB
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/kkhatua/drill DRILL-6076
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/drill/pull/1086.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #1086
----
commit e7d3cbf6abf904096efeea8391fc46a768e08bb8
Author: Kunal Khatua <kkhatua@...>
Date: 2018-01-05T01:49:50Z
DRILL-6076: Reduce the default memory from a total of 13GB to 5GB
Reduce minimum memory requirements from 13GB to <= 5GB
For this, the default need to be changed as follows:
Heap: 4GB -> 1GB
Direct: 8GB -> 3GB
CodeCache: 1GB -> 512MB
MaxPermSize: 512MB -> 512MB (Ignored if JDK8+)
----
---