[
https://issues.apache.org/jira/browse/KYLIN-5796?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
pengfei.zhan updated KYLIN-5796:
--------------------------------
Fix Version/s: 5.0-beta
> The system reports error when the number of models exported exceeds 256 at a
> time
> ---------------------------------------------------------------------------------
>
> Key: KYLIN-5796
> URL: https://issues.apache.org/jira/browse/KYLIN-5796
> Project: Kylin
> Issue Type: Bug
> Affects Versions: 5.0-alpha
> Reporter: Zhimin Wu
> Priority: Major
> Fix For: 5.0-beta
>
>
> h3. Root Cause
> The root cause of the issue is that the size of the list passed from the
> frontend exceeds the maximum limit allowed for form-urlencoded requests in
> Spring. The default limit for the growth of arrays and collections in
> Spring's DataBinder class is set to 256:
> {code:java}
> public static final int DEFAULT_AUTO_GROW_COLLECTION_LIMIT = 256;{code}
> To address this issue, you may need to adjust the configuration related to
> the form-urlencoded request handling in Spring to accommodate larger list
> sizes being passed from the frontend. This could involve increasing the
> maximum limit for auto-growing collections or implementing alternative
> solutions to handle larger input data efficiently.
> If you need further assistance or guidance on how to modify the configuration
> to resolve this issue, please let me know.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)