Skip to content

Commit 47a7066

Browse files
committed
update to upstream release 5.3.0
1 parent eb78081 commit 47a7066

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
X64?= false
22

3-
ES_FILE_VERSION=5.2.2
3+
ES_FILE_VERSION=5.3.0
44
ES_VERSION=$(ES_FILE_VERSION)
5-
ES_SHA1=087502515446860a408cc702e462db92e850a5ef
5+
ES_SHA1=d96a04a488eac61b9cc8db2872e31268a2c9f237
66
ES_NAME=elasticsearch-$(ES_VERSION)
77
ES_HOME=vendor/$(ES_NAME)
88
ES_LIB=$(ES_HOME)/lib

elasticsearch.iss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Name: "{app}\plugins"
5959
Source: "setup-helper.dll"; DestDir: "{app}"
6060
Source: "vendor\SetACL-2.2.0\SetACL.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall ignoreversion
6161
Source: "{#ESPath}\bin\elasticsearchw-{#Bits}.exe"; DestDir: "{app}\bin"; DestName: "elasticsearchw.exe"
62+
Source: "{#ESPath}\bin\elasticsearch-keystore.bat"; DestDir: "{app}\bin"
6263
Source: "{#ESPath}\bin\elasticsearch-plugin.bat"; DestDir: "{app}\bin"
6364
Source: "{#ESPath}\bin\elasticsearch-translog.bat"; DestDir: "{app}\bin"
6465
Source: "{#ESPath}\lib\elasticsearch-cmd.cmd"; DestDir: "{app}\lib"

elasticsearchw-update.cmd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ REM JVM_OPTIONS=%JVM_OPTIONS% -XX:+PrintTenuringDistribution
3636
REM JVM_OPTIONS=%JVM_OPTIONS% -XX:+PrintGCApplicationStoppedTime
3737
REM JVM_OPTIONS=%JVM_OPTIONS% -Xloggc:%ES_HOME%/logs/gc.log
3838

39+
REM By default, the GC log file will not rotate.
40+
REM By uncommenting the lines below, the GC log file
41+
REM will be rotated every 128MB at most 32 times.
42+
REM -XX:+UseGCLogFileRotation
43+
REM -XX:NumberOfGCLogFiles=32
44+
REM -XX:GCLogFileSize=128M
45+
3946
REM Causes the JVM to dump its heap on OutOfMemory.
4047
set JVM_OPTIONS=%JVM_OPTIONS% -XX:+HeapDumpOnOutOfMemoryError
4148
REM The path to the heap dump location, note directory must exists and have enough

0 commit comments

Comments
 (0)