...
- Re-indexes are running twice a day: in the early morning and early evening (concern time zone). These completely refresh the availability index.
- Updates are running every hour or every half an hour (this differs per customer). These updates process changes in prices, rentability, representations, releases, and reservability.
- Depending on how many changes need to be processed, this process can take several seconds (no or few changes) to 40 minutes (many changes that need a complete refresh of the index).
- If Elasticsearch uses pricecache to get prices, changes that require calculation first, will be processed in the next update/re-index after these are calculated.
This means that it can take in worst-case at most 3,5 - 4 hours (2 hours 20 minutes + 30 minutes/1 hour (index process frequency) + 40 minutes (maximum run time of index process)) before changes that require prices are available online.
In best-case, when prices are calculated just before the next index process, it will take just over 30 minutes (30 minutes + calculation time + indexing time).
On average changes that require price calculation will available after 1.5 hours – 2 hours depending on the index frequency. - If Elasticsearch uses cashflowrules directly to get prices, it will pick up changes right away with every update/re-index process.
This means, in worst-case, it can take at most 1 hour 10 minutes – 1 hour 40 minutes (30 minutes/1 hour (index frequency) + 40 minutes (maximum run time of index process) before changes are available online.
In best-case it will take just over30 minutes – 1 hour (30 minutes/1hour (index frequency) + indexing time).
On average changes can be expected to be available after 45 minutes – 1 hour 25 minutes depending on the index frequency. - Changes in reservability will be picked up right away with every update/re-index process, so in worst-case at most 1 hour 10 minutes (30 minutes (index process frequency) + 40 minutes (maximum run time of index process)).
In best-case it will take just over30 minutes – 1 hour.
On average changes can be expected to be available after 45 minutes – 1 hour 25 minutes depending on the index frequency.
...