Skip to content

Commit 2a66992

Browse files
committed
Add documentation for indexing batch size configuration
1 parent dbb5e9b commit 2a66992

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

17/umbraco-cms/reference/configuration/indexingsettings.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ This section allows you to configure how content is indexed for Examine.
1010
"Umbraco": {
1111
"CMS": {
1212
"Indexing": {
13-
"ExplicitlyIndexEachNestedProperty": true
13+
"ExplicitlyIndexEachNestedProperty": true,
14+
"BatchSize": 10000
1415
}
1516
}
1617
}
@@ -25,3 +26,9 @@ When indexing content, each property contained within certain complex editors ar
2526
The complex editors are also indexed to their own separate fields, which then contains "the sum" of all properties contained within.
2627

2728
In some cases this yields a lot of fields in the index, which can lead to errors when performing searches. Changing this setting to `false` can mend that issue. It prevents each contained property from being written to the index in its own field.
29+
30+
## BatchSize
31+
32+
For large indexing operations (e.g. rebuilding an index), content is loaded from the database and indexed in batches.
33+
34+
Depending on the complexity of your content model, lowering the batch size might speed up these operations.

0 commit comments

Comments
 (0)