aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLee Anjella Macabuhay <lee.anjella.macabuhay@est.tech>2025-03-05 16:08:44 +0000
committerGerrit Code Review <gerrit@onap.org>2025-03-05 16:08:44 +0000
commit1337752d3175309a66a50fe04aa9b289a33e4290 (patch)
tree4fd1a9c4996ddc14675387bf578e52112e1d8bed
parent68f2f55e2a6b693b126901e1aa09b2c25d8c5860 (diff)
parentdd7920b84915050e2ee3117972e3ce8ea5651af4 (diff)
Merge "Add notes for request limitations"
-rw-r--r--docs/design.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/design.rst b/docs/design.rst
index 52f977a99a..7ba3999aa1 100644
--- a/docs/design.rst
+++ b/docs/design.rst
@@ -57,6 +57,20 @@ and CPS-NCMP-Inventory using the drop down table in the top right:
http://<hostname>:<port>/swagger-ui/index.html?configUrl=/v3/api-docs/swagger-config#/
+Notes
+-----
+
+Input Size limitations
+++++++++++++++++++++++
+
+Depending on HTTP servers used, the request size is typically limited. For example Nginx has a default limit of 1MB.
+In this case it means that a registration request is limited to approximately 3,000 cm handles (depending on the length of cm handle ids and other properties involved).
+When needed, update your configuration to increase the maximum request size for REST request. e.g:
+
+.. code-block:: bash
+
+ client_max_body_size 2m
+
Consumed APIs
=============