mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
Many scripts are used to start/stop and install/uninstall elasticsearch. These scripts share a lot of configuration properties like directory paths, max value for a setting, default user etc. Most of the values are identical but some of them are different depending of the platform (Debian-based or Redhat-based OS), depending of the way elasticsearch is started (shell script, systemd, sysv-init...) or the way it is installed (zip, rpm, deb...). Today the values are duplicated in multiple places, making it difficult to maintain the scripts or to update a value. This pull request make this more uniform: values used in scripts must be defined in a common packaging.properties file. Each value can be overridden in another specific packaging.properties file for Debian or Redhat. All startup and installation scripts are filtered with the common then the custom packaging.properties files before being packaged as a zip/tar.gz/rpm/dpkf archive.
90 lines
2.6 KiB
Batchfile
90 lines
2.6 KiB
Batchfile
@echo off
|
|
|
|
if DEFINED JAVA_HOME goto cont
|
|
|
|
:err
|
|
ECHO JAVA_HOME environment variable must be set! 1>&2
|
|
EXIT /B 1
|
|
|
|
:cont
|
|
set SCRIPT_DIR=%~dp0
|
|
for %%I in ("%SCRIPT_DIR%..") do set ES_HOME=%%~dpfI
|
|
|
|
|
|
REM ***** JAVA options *****
|
|
|
|
if "%ES_MIN_MEM%" == "" (
|
|
set ES_MIN_MEM=${packaging.elasticsearch.heap.min}
|
|
)
|
|
|
|
if "%ES_MAX_MEM%" == "" (
|
|
set ES_MAX_MEM=${packaging.elasticsearch.heap.max}
|
|
)
|
|
|
|
if NOT "%ES_HEAP_SIZE%" == "" (
|
|
set ES_MIN_MEM=%ES_HEAP_SIZE%
|
|
set ES_MAX_MEM=%ES_HEAP_SIZE%
|
|
)
|
|
|
|
REM min and max heap sizes should be set to the same value to avoid
|
|
REM stop-the-world GC pauses during resize, and so that we can lock the
|
|
REM heap in memory on startup to prevent any of it from being swapped
|
|
REM out.
|
|
set JAVA_OPTS=%JAVA_OPTS% -Xms%ES_MIN_MEM% -Xmx%ES_MAX_MEM%
|
|
|
|
REM new generation
|
|
if NOT "%ES_HEAP_NEWSIZE%" == "" (
|
|
set JAVA_OPTS=%JAVA_OPTS% -Xmn%ES_HEAP_NEWSIZE%
|
|
)
|
|
|
|
REM max direct memory
|
|
if NOT "%ES_DIRECT_SIZE%" == "" (
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:MaxDirectMemorySize=%ES_DIRECT_SIZE%
|
|
)
|
|
|
|
REM set to headless, just in case
|
|
set JAVA_OPTS=%JAVA_OPTS% -Djava.awt.headless=true
|
|
|
|
REM Force the JVM to use IPv4 stack
|
|
if NOT "%ES_USE_IPV4%" == "" (
|
|
set JAVA_OPTS=%JAVA_OPTS% -Djava.net.preferIPv4Stack=true
|
|
)
|
|
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:+UseParNewGC
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:+UseConcMarkSweepGC
|
|
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:CMSInitiatingOccupancyFraction=75
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:+UseCMSInitiatingOccupancyOnly
|
|
|
|
REM When running under Java 7
|
|
REM JAVA_OPTS=%JAVA_OPTS% -XX:+UseCondCardMark
|
|
|
|
if "%ES_GC_LOG_FILE%" == "" goto nogclog
|
|
|
|
:gclog
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintGCDetails
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintGCTimeStamps
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintClassHistogram
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintTenuringDistribution
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintGCApplicationStoppedTime
|
|
set JAVA_OPTS=%JAVA_OPTS% -Xloggc:%ES_GC_LOG_FILE%
|
|
for %%F in ("%ES_GC_LOG_FILE%") do set ES_GC_LOG_FILE_DIRECTORY=%%~dpF
|
|
if NOT EXIST "%ES_GC_LOG_FILE_DIRECTORY%\." mkdir "%ES_GC_LOG_FILE_DIRECTORY%"
|
|
|
|
:nogclog
|
|
|
|
REM Causes the JVM to dump its heap on OutOfMemory.
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:+HeapDumpOnOutOfMemoryError
|
|
REM The path to the heap dump location, note directory must exists and have enough
|
|
REM space for a full heap dump.
|
|
REM JAVA_OPTS=%JAVA_OPTS% -XX:HeapDumpPath=$ES_HOME/logs/heapdump.hprof
|
|
|
|
REM Disables explicit GC
|
|
set JAVA_OPTS=%JAVA_OPTS% -XX:+DisableExplicitGC
|
|
|
|
REM Ensure UTF-8 encoding by default (e.g. filenames)
|
|
set JAVA_OPTS=%JAVA_OPTS% -Dfile.encoding=UTF-8
|
|
|
|
set ES_CLASSPATH=%ES_CLASSPATH%;%ES_HOME%/lib/${project.build.finalName}.jar;%ES_HOME%/lib/*;%ES_HOME%/lib/sigar/*
|
|
set ES_PARAMS=-Delasticsearch -Des-foreground=yes -Des.path.home="%ES_HOME%"
|