You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With v3 of the CAPI API, it seems like it's impossible to create a package with more than 5000 matched resources.
If you try it, you may run into this issue:
[ERROR]: Errors occured during script execution. Errors are:
- Application push operation failed. Root cause of the failure should be mentioned below
- CF-UnprocessableEntity(10008): Resources array can have at most 5000 resources
org.cloudfoundry.client.v3.ClientV3Exception: CF-UnprocessableEntity(10008): Resources array can have at most 5000 resources
the suggested solution
The fix would be to chunk such large requests into chunks of request with 5000 max resources.
The text was updated successfully, but these errors were encountered:
…ources
* CAPI, with v3 API, is limited to returning responses with max 5000 max matched resources; so we chunk them into request with max 5000 matched resources
* first try
…ources
* CAPI, with v3 API, is limited to returning responses with max 5000 max matched resources; so we chunk them into request with max 5000 matched resources
* update code that calls the request instead of the request code itself
the problem
With v3 of the CAPI API, it seems like it's impossible to create a package with more than 5000 matched resources.
If you try it, you may run into this issue:
the suggested solution
The fix would be to chunk such large requests into chunks of request with 5000 max resources.
The text was updated successfully, but these errors were encountered: