-
Notifications
You must be signed in to change notification settings - Fork 164
Update search more frequently #3478
Copy link
Copy link
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationtype/enhancementNew feature or requestNew feature or requestuser-guideImprovements to docs at https://docs.gitops.weave.works/Improvements to docs at https://docs.gitops.weave.works/
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationtype/enhancementNew feature or requestNew feature or requestuser-guideImprovements to docs at https://docs.gitops.weave.works/Improvements to docs at https://docs.gitops.weave.works/
Problem
Algolia DocSearch runs a crawl every 7 days. If the release schedule doesn't coincide nicely with this, it can take that long before the current version returns any search results. We noticed this when 0.18.0 was released.
Solution
Algolia used to have a self-hosted crawler: this has been deprecated.
Now, we can only schedule the crawl, or trigger it manually. (permalink)
Current config snippet:
schedule: "at 10:00 on Saturday",I'm not sure where this is configured: it seems to only be available in the admin web UI.
I suggest we replace this with:
schedule: "every 1 day at 6:00 pm",adopted from their example.
Additional context