You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the further commands please refer to the [Symfony Messenger documentation](https://symfony.com/doc/current/messenger.html#saving-retrying-failed-messages).
109
109
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
111
118
112
119
A maximum of 10000 items can be retrieved and viewed, because of the maximum default item limit.
113
120
To increase this limit, configuration can be adjusted as follows:
@@ -119,12 +126,28 @@ pimcore_generic_data_index:
119
126
max_result_window: 20000
120
127
```
121
128
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
+
122
143
If an index was already created before setting this parameter, the index needs to be recreated.
0 commit comments