This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ozline:main' into main
- Loading branch information
Showing
60 changed files
with
3,649 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ PERFIX = "[Makefile]" | |
|
||
.PHONY: env-up | ||
env-up: | ||
sh init.sh | ||
docker-compose up -d | ||
|
||
.PHONY: env-down | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Rename this file to `elasticsearch-plugins.yml` to use it. | ||
# | ||
# All plugins must be listed here. If you add a plugin to this list and run | ||
# `elasticsearch-plugin sync`, that plugin will be installed. If you remove | ||
# a plugin from this list, that plugin will be removed when Elasticsearch | ||
# next starts. | ||
|
||
plugins: | ||
# Each plugin must have an ID. Plugins with only an ID are official plugins and will be downloaded from Elastic. | ||
- id: example-id | ||
|
||
# Plugins can be specified by URL (it doesn't have to be HTTP, you could use e.g. `file:`) | ||
- id: example-with-url | ||
location: https://some.domain/path/example4.zip | ||
|
||
# Or by maven coordinates: | ||
- id: example-with-maven-url | ||
location: org.elasticsearch.plugins:example-plugin:1.2.3 | ||
|
||
# A proxy can also be configured per-plugin, if necessary | ||
- id: example-with-proxy | ||
location: https://some.domain/path/example.zip | ||
proxy: https://some.domain:1234 | ||
|
||
# Configures a proxy for all network access. Remove this if you don't need | ||
# to use a proxy. | ||
proxy: https://some.domain:1234 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
cluster.name: "docker-cluster" | ||
network.host: 0.0.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
################################################################ | ||
## | ||
## JVM configuration | ||
## | ||
################################################################ | ||
## | ||
## WARNING: DO NOT EDIT THIS FILE. If you want to override the | ||
## JVM options in this file, or set any additional options, you | ||
## should create one or more files in the jvm.options.d | ||
## directory containing your adjustments. | ||
## | ||
## See https://www.elastic.co/guide/en/elasticsearch/reference/8.4/jvm-options.html | ||
## for more information. | ||
## | ||
################################################################ | ||
|
||
|
||
|
||
################################################################ | ||
## IMPORTANT: JVM heap size | ||
################################################################ | ||
## | ||
## The heap size is automatically configured by Elasticsearch | ||
## based on the available memory in your system and the roles | ||
## each node is configured to fulfill. If specifying heap is | ||
## required, it should be done through a file in jvm.options.d, | ||
## which should be named with .options suffix, and the min and | ||
## max should be set to the same value. For example, to set the | ||
## heap to 4 GB, create a new file in the jvm.options.d | ||
## directory containing these lines: | ||
## | ||
## -Xms4g | ||
## -Xmx4g | ||
## | ||
## See https://www.elastic.co/guide/en/elasticsearch/reference/8.4/heap-size.html | ||
## for more information | ||
## | ||
################################################################ | ||
|
||
|
||
################################################################ | ||
## Expert settings | ||
################################################################ | ||
## | ||
## All settings below here are considered expert settings. Do | ||
## not adjust them unless you understand what you are doing. Do | ||
## not edit them in this file; instead, create a new file in the | ||
## jvm.options.d directory containing your adjustments. | ||
## | ||
################################################################ | ||
|
||
-XX:+UseG1GC | ||
|
||
## JVM temporary directory | ||
-Djava.io.tmpdir=${ES_TMPDIR} | ||
|
||
## heap dumps | ||
|
||
# generate a heap dump when an allocation from the Java heap fails; heap dumps | ||
# are created in the working directory of the JVM unless an alternative path is | ||
# specified | ||
-XX:+HeapDumpOnOutOfMemoryError | ||
|
||
# exit right after heap dump on out of memory error | ||
-XX:+ExitOnOutOfMemoryError | ||
|
||
# specify an alternative path for heap dumps; ensure the directory exists and | ||
# has sufficient space | ||
-XX:HeapDumpPath=data | ||
|
||
# specify an alternative path for JVM fatal error logs | ||
-XX:ErrorFile=logs/hs_err_pid%p.log | ||
|
||
## GC logging | ||
-Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m |
Oops, something went wrong.