From 8529a23e59bbfd14a281ec91a96ace5e0319b4fd Mon Sep 17 00:00:00 2001 From: Daniel Upton Date: Mon, 10 Jan 2022 13:59:43 +0000 Subject: [PATCH] docs: clarify transaction usage and limitations in kv api docs --- website/content/api-docs/kv.mdx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/website/content/api-docs/kv.mdx b/website/content/api-docs/kv.mdx index cc99ed373d..05d0fca302 100644 --- a/website/content/api-docs/kv.mdx +++ b/website/content/api-docs/kv.mdx @@ -18,14 +18,16 @@ replication between datacenters, please view the ~> Values in the KV store cannot be larger than 512kb. -For multi-key updates, please consider using [transaction](/api/txn). +In order to perform atomic operations on multiple KV pairs (up to a limit of 64) +please consider using [transactions](/api/txn) instead. ## Read Key This endpoint returns the specified key. If no key exists at the given path, a 404 is returned instead of a 200 response. -For multi-key reads, please consider using [transaction](/api/txn). +For multi-key reads (up to a limit of 64) please consider using +[transactions](/api/txn) instead. | Method | Path | Produces | | ------ | ---------- | ------------------ |