I think network_mode: host is correct here
This commit is contained in:
parent
944496b076
commit
9d17b8afbb
2 changed files with 39 additions and 39 deletions
|
@ -1,38 +1,34 @@
|
||||||
version: "3"
|
version: "3"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
es01:
|
es01:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
hub_server:
|
hub_server:
|
||||||
depends_on:
|
depends_on:
|
||||||
- es01
|
- es01
|
||||||
image: lbry/hub:latest
|
image: lbry/hub:latest
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
environment:
|
||||||
- "50051:50051" # rpc port
|
#- TCP_PORT=50051 # should probably have these supported by the go server too
|
||||||
environment:
|
#- TCP_HOST=0.0.0.0
|
||||||
#- TCP_PORT=50051 # should probably have these supported by the go server too
|
- ELASTIC_HOST=http://127.0.0.1
|
||||||
#- TCP_HOST=0.0.0.0
|
- ELASTIC_PORT=9200
|
||||||
- ELASTIC_HOST=http://127.0.0.1
|
network_mode: host
|
||||||
- ELASTIC_PORT=9200
|
es01:
|
||||||
es01:
|
image: docker.elastic.co/elasticsearch/elasticsearch:7.12.1
|
||||||
image: docker.elastic.co/elasticsearch/elasticsearch:7.12.1
|
container_name: es01
|
||||||
container_name: es01
|
environment:
|
||||||
environment:
|
- node.name=es01
|
||||||
- node.name=es01
|
- discovery.type=single-node
|
||||||
- discovery.type=single-node
|
- indices.query.bool.max_clause_count=4096
|
||||||
- indices.query.bool.max_clause_count=4096
|
- bootstrap.memory_lock=true
|
||||||
- bootstrap.memory_lock=true
|
- "ES_JAVA_OPTS=-Xms512m -Xmx512m" # no more than 32, remember to disable swap
|
||||||
- "ES_JAVA_OPTS=-Xms512m -Xmx512m" # no more than 32, remember to disable swap
|
#- "ES_JAVA_OPTS=-Xms8g -Xmx8g" # no more than 32, remember to disable swap
|
||||||
#- "ES_JAVA_OPTS=-Xms8g -Xmx8g" # no more than 32, remember to disable swap
|
ulimits:
|
||||||
ulimits:
|
memlock:
|
||||||
memlock:
|
soft: -1
|
||||||
soft: -1
|
hard: -1
|
||||||
hard: -1
|
volumes:
|
||||||
volumes:
|
- es01:/usr/share/elasticsearch/data
|
||||||
- es01:/usr/share/elasticsearch/data
|
network_mode: host
|
||||||
ports:
|
|
||||||
- "9200:9200"
|
|
||||||
- "9300:9300"
|
|
||||||
#- 127.0.0.1:9200:9200
|
|
||||||
|
|
|
@ -614,7 +614,11 @@ func (s *Server) Search(ctx context.Context, in *pb.SearchRequest) (*pb.Outputs,
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalln(err)
|
log.Fatalln(err)
|
||||||
}
|
}
|
||||||
searchIndices := make([]string, len(indices)-1)
|
var numIndices = 0
|
||||||
|
if len(indices) > 0 {
|
||||||
|
numIndices = len(indices) - 1
|
||||||
|
}
|
||||||
|
searchIndices := make([]string, numIndices)
|
||||||
j := 0
|
j := 0
|
||||||
for i := 0; i < len(indices); i++ {
|
for i := 0; i < len(indices); i++ {
|
||||||
if indices[i] == "claims" {
|
if indices[i] == "claims" {
|
||||||
|
|
Loading…
Reference in a new issue