You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since 7.14, geoip check database updates every 24h since the server start time. The suggestion is to add interval option to allow users to change the checking interval in hours. The number should be >= 24 and < 168 (7 days)
xpack.geoip.download.interval=72
The text was updated successfully, but these errors were encountered:
Is the interval only for database update check? Is the expiry routine running every day to respect the 30 days expiry rule?
What is the motivation of have interval config? Checking updates every three days can save some server load considering users deploy ten thousand instances.
elasticsearch check if db is valid on every use of geoip processor and tag doc if that’s not the case. cleanup of expired databases is done with ingest.geoip.downloader.poll.interval
Check every 3 days is to reduce bandwidth, it’s configurable to allow for checking more aggressive (every day) if customer wants to always have freshest data possible or for tests where it’s easier to change this interval and wait seconds instead of days
Since 7.14, geoip check database updates every 24h since the server start time. The suggestion is to add
interval
option to allow users to change the checking interval in hours. The number should be >= 24 and < 168 (7 days)The text was updated successfully, but these errors were encountered: