Latest OSM Europe continent database indexing taking too much time

Hello Team,
I am using overpass docker image(Docker) to launch the overpass docker service for Europe continent and the plant URL I am using is https://download.geofabrik.de/europe-latest.osm.bz2 which is latest up to date.
It took more than 48 hours to do indexing and still doing indexing. Find the below docker command to start the overpass docker and EC2 hardware config.
I have given diff url to update every 30 days in environment variables.
My question is when I am starting the docker image it will start with latest europe continent database but when I see the logs it is considering the updates also and start doing indexing( I see update 30 days interval). Screenshot of last few lines of latest logs

Docker command:
cmd = " “.join(
[
“docker”,
“run”,
“–restart=always”, # starts docker after system reboot
“–log-driver json-file”,
“–log-opt max-size=10m”,
“–log-opt max-file=3”,
“-e”,
“OVERPASS_META=yes”,
“-e”,
“OVERPASS_MODE=init”,
“-e”,
f"OVERPASS_PLANET_URL=file:///db/{self.region}-latest.osm.bz2”,
“-e”,
“OVERPASS_RULES_LOAD=10”, # infinite areas update process. Ex: 0-always run, 5-run 5% of the time…
“-e”,
f"OVERPASS_DIFF_URL={self._updates_url}“, # Index of /europe-updates
“-e”,
f"OVERPASS_UPDATE_SLEEP={3600 * 24 * 30}”, # update every 30 days
“-e”,
“OVERPASS_STOP_AFTER_INIT=false”,
“-v”,
f"{self._dir_overpass}/:/db",
“-p”,
f"{self._overpass_port}:80",
“-i”,
“-t”,
“-d”,
“–name”,
self._overpass_container_name,
“wiktorn/overpass-api”,
]
)
EC2 config:
Instance Size: i4i.2xlarge
vCPU: 64
Instance Storage (GB): 1 x 1,875 AWS Nitro SSD
Network Bandwidth (Gbps): Up to 12
EBS Bandwidth (Gbps): Up to 10

After very long time the status of docker is unhealth and the last log statements are


No idea why it got failed

Related issue:

i4i.2xlarge

  • vCPU=8
  • Memory=64Gb