summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2026-05-23Address PR 16 CR findingsYuriy Andamasov
- README cluster.search example uses 'phabricator/' to match host default (was '/phabricator'; both work for index name but the host uses path verbatim for the base URI). - Add VERIFICATION.md placeholder with the planned smoke-test matrix template; status notes v0.1.0 is pending IS-474. - Engine reindex: replace 'if ($time)' falsy check with 'if ($time !== null)' so a Unix epoch timestamp (0) is not silently dropped. 🤖 Generated by [robots](https://vyos.io)
2026-05-23D1 fixup: split rollback guidance by migration stage to prevent read outageYuriy Andamasov
Step 9 previously said 'flip the new entry's roles back to {"read": false, "write": false} at any stage', which is unsafe after step 8 has already removed read from the ES 5 entry. Following that instruction post-step-8 would leave zero read-capable hosts, causing search errors for all in-flight requests. Split the rollback note into two sub-bullets: - Before step 8: removing the new entry is safe; ES 5 already serves reads. - After step 8: restore ES 5 read role first (or simultaneously), then disable the new entry. 🤖 Generated by [robots](https://vyos.io)
2026-05-23Docs: Full README with install, migration, and limitationsYuriy Andamasov
Install steps include the verified load-libraries shape (flat array of paths) and explicit hosts[].roles config. Migration is the parallel-write cutover with health preflight and one-config-change rollback at every stage. Limitations call out the auth deferral, the missing timeout key, and the upstream extension-API instability. 🤖 Generated by [robots](https://vyos.io)
2026-05-22Initial commit: bootstrap repo scaffoldingYuriy Andamasov
Apache-2.0 license. .arcconfig points at sibling phorge checkout for arc liberate static analysis. README is a skeleton; full content lands once the library exposes a working install path.