diff --git a/modules/ROOT/pages/genai-integrations.adoc b/modules/ROOT/pages/genai-integrations.adoc index 125a4a0fd..96ce9c38d 100644 --- a/modules/ROOT/pages/genai-integrations.adoc +++ b/modules/ROOT/pages/genai-integrations.adoc @@ -165,6 +165,10 @@ CALL { CALL db.create.setNodeVectorProperty(nodes[batchStart + index], "embedding", vector) } IN TRANSACTIONS OF 1 ROW ---- + +You can control how many batches are committed by each inner transaction by modifying the `OF 1 ROW` clause. +For example, `OF 10 ROWS` will only commit once per 10 transactions. Because vector embeddings can be very large, +this may require significantly more memory. ==== [[ai-providers]]