Skip to content

Commit f1ca3ca

Browse files
authored
Update documentation for index settings (#341)
1 parent 87f7571 commit f1ca3ca

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

doc/02_Configuration/03_Index_Management.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,14 @@ php bin/console messenger:failed:retry -vv
107107
108108
For the further commands please refer to the [Symfony Messenger documentation](https://symfony.com/doc/current/messenger.html#saving-retrying-failed-messages).
109109
110-
## Configuring the Maximum Item Limit
110+
## Configuring index options (Maximum Item Limit, ...)
111+
112+
You can configure different options to use with your indices. The available options can differ depending on which
113+
engine you are using. Make sure to check the corresponding documentation, before using any options.
114+
115+
See the `Maxium Item Limit` and `Total fields limit` section for examples.
116+
117+
### Maximum Item limit
111118
112119
A maximum of 10000 items can be retrieved and viewed, because of the maximum default item limit.
113120
To increase this limit, configuration can be adjusted as follows:
@@ -119,12 +126,28 @@ pimcore_generic_data_index:
119126
max_result_window: 20000
120127
```
121128

129+
### Total fields limit
130+
131+
A maximum of 1000 fields can be used with your indces.
132+
To increase this limit, configuration can be adjusted as follows:
133+
134+
```yaml
135+
pimcore_generic_data_index:
136+
index_service:
137+
index_settings:
138+
mapping.total_fields.limit: 20000
139+
```
140+
141+
:::info
142+
122143
If an index was already created before setting this parameter, the index needs to be recreated.
123144
124145
```
125146
bin/console generic-data-index:update:index -r
126147
```
127148

149+
:::
150+
128151
## Deployment and Index Management
129152

130153
### Pimcore Class Definitions

0 commit comments

Comments
 (0)