You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DIP/docs/CONFIG_SPLIT_APPLICATION_NE...

32 lines
811 B
Markdown

# Config split: moved new-runtime properties to application-new.yml
This patch keeps shared and legacy defaults in `application.yml` and moves new-runtime properties into `application-new.yml`.
Activate the new runtime with:
```
--spring.profiles.active=new
```
`application-new.yml` also sets:
```yaml
dip.runtime.mode: NEW
```
So profile selection and runtime mode stay aligned.
Moved blocks:
- `dip.embedding.*`
- `ted.search.*` (new generic search tuning, now under `dip.search.*`)
- `ted.projection.*`
- `ted.generic-ingestion.*`
- new/transitional `ted.vectorization.*` keys:
- `generic-pipeline-enabled`
- `dual-write-legacy-ted-vectors`
- `generic-scheduler-period-ms`
- `primary-representation-builder-key`
- `embedding-provider`
Shared / legacy defaults remain in `application.yml`.