(u)Limit the fd allocation for java 8 runtime..
Can't believe this was actually the issue..seriously i don't envy jvm users. See following issues: - https://stackoverflow.com/a/56895801 - https://bugs.openjdk.org/browse/JDK-8150460rekt_pps
parent
22622e1c01
commit
7904c27127
|
@ -2,8 +2,21 @@
|
||||||
# https://github.com/waytrade/ib-gateway-docker/blob/master/docker-compose.yml
|
# https://github.com/waytrade/ib-gateway-docker/blob/master/docker-compose.yml
|
||||||
version: "3.5"
|
version: "3.5"
|
||||||
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
ib_gw_paper:
|
ib_gw_paper:
|
||||||
|
|
||||||
|
# apparently java is a mega cukc:
|
||||||
|
# https://stackoverflow.com/a/56895801
|
||||||
|
# https://bugs.openjdk.org/browse/JDK-8150460
|
||||||
|
ulimits:
|
||||||
|
# nproc: 65535
|
||||||
|
nproc: 6000
|
||||||
|
nofile:
|
||||||
|
soft: 2000
|
||||||
|
hard: 3000
|
||||||
|
|
||||||
# other image tags available:
|
# other image tags available:
|
||||||
# https://github.com/waytrade/ib-gateway-docker#supported-tags
|
# https://github.com/waytrade/ib-gateway-docker#supported-tags
|
||||||
# image: waytrade/ib-gateway:981.3j
|
# image: waytrade/ib-gateway:981.3j
|
||||||
|
|
Loading…
Reference in New Issue