InterviewSolution
| 1. |
What Is The Per-key Value Size Limitation For Consul's Key/value Store? |
|
Answer» The limit on a key's value size is 512KB. This is strictly enforced and an HTTP 413 STATUS will be returned to any client that ATTEMPTS to store more than that limit in a value. It should be noted that the Consul key/value store is not designed to be used as a general purpose DATABASE. See SERVER Performance for more details. The limit on a key's value size is 512KB. This is strictly enforced and an HTTP 413 status will be returned to any client that attempts to store more than that limit in a value. It should be noted that the Consul key/value store is not designed to be used as a general purpose database. See Server Performance for more details. |
|