#### PR Dependency Tree * **PR #15512** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Search now supports generation-based indexing with embedded and remote providers. * Added automatic search reconciliation and improved handling of document, workspace, and permission changes. * Added clearer search status errors for unavailable, syncing, unready, or failed indexes. * Added Manticore Search end-to-end support and provider-specific search behavior. * **Improvements** * Search and aggregate pagination now report returned results and continuation status more accurately. * Improved permission filtering to prevent inaccessible documents from appearing in results. * Admin provider selection now consistently enables indexing. * **Documentation** * Clarified search pagination, aggregation counts, provider configuration, and end-to-end setup. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
34 lines
795 B
YAML
34 lines
795 B
YAML
services:
|
|
postgres:
|
|
image: pgvector/pgvector:pg16
|
|
environment:
|
|
POSTGRES_DB: affine_rfc6_manticore_e2e
|
|
POSTGRES_USER: ds
|
|
POSTGRES_PASSWORD: ds
|
|
ports:
|
|
- '55433:5432'
|
|
healthcheck:
|
|
test: ['CMD-SHELL', 'pg_isready -U ds -d affine_rfc6_manticore_e2e']
|
|
interval: 2s
|
|
timeout: 2s
|
|
retries: 30
|
|
start_period: 5s
|
|
|
|
manticore:
|
|
image: manticoresearch/manticore:29.0.2
|
|
environment:
|
|
searchd.listen: 'http:9308'
|
|
searchd.network_timeout: '30'
|
|
ports:
|
|
- '9308:9308'
|
|
healthcheck:
|
|
test:
|
|
[
|
|
'CMD-SHELL',
|
|
"wget -qO- --post-data='SHOW TABLES' 'http://127.0.0.1:9308/sql?mode=raw' >/dev/null",
|
|
]
|
|
interval: 2s
|
|
timeout: 2s
|
|
retries: 30
|
|
start_period: 5s
|