We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to increase the heap space.
As the Solr doc says: https://lucene.apache.org/solr/guide/7_2/taking-solr-to-production.html#memory-and-gc-settings
One should use the SOLR_JAVA_MEM variable in the include file solr.in.sh .
SOLR_JAVA_MEM
solr.in.sh
SOLR_JAVA_MEM="-Xms10g -Xmx10g"
Since this solr.in.sh is taken from the solr alpine image, I'm wondering how to set the heap space in a docker environment.
Any help appreciated!
The text was updated successfully, but these errors were encountered:
Quoting from hub.docker.com/_/solr:
In Solr it is common to configure settings in solr.in.sh, as documented in the Solr Reference Guide. In docker-solr you can simply pass these environment variables to the container. For example: $ docker run -d -P -e SOLR_HEAP=800m solr
In Solr it is common to configure settings in solr.in.sh, as documented in the Solr Reference Guide.
In docker-solr you can simply pass these environment variables to the container. For example:
$ docker run -d -P -e SOLR_HEAP=800m solr
Sorry, something went wrong.
No branches or pull requests
I want to increase the heap space.
As the Solr doc says: https://lucene.apache.org/solr/guide/7_2/taking-solr-to-production.html#memory-and-gc-settings
One should use the
SOLR_JAVA_MEM
variable in the include filesolr.in.sh
.Since this
solr.in.sh
is taken from the solr alpine image, I'm wondering how to set the heap space in a docker environment.Any help appreciated!
The text was updated successfully, but these errors were encountered: