The Analyzer detail view REST API imposes content length restriction on all API requests. If the API request exceeds the allowed length, the following error is shown: 413 REQUEST ENTITY TOO LARGE.
The restriction on the content length is defined by the following two properties: app.db.api.request.max.content.length and app.db.api.request.max.content.length.factor.
Allowed content length is the smallest of the following two:
- app.db.api.request.max.content.length
- JVM memory divided by maximum content length factor (JVM memory / app.db.api.request.max.content.length.factor)