Document how to increase the size of the Key Value store
Describe the bug Shuffle provides a nice way to permanently store some things. In my instance it seems to be limited to 150 items (I experienced a limit 30 in a previous version or configuration). Once this limit is reached each new "write" seems to overwrite the oldest item.
This limit is experienced in the UI but also through the API endpoint /api/v1/orgs/<your_org-uid>/list_cache
To Reproduce Run a workflow and populate the cache with many text items. Take example on this cache item example returned by the API to see the length of my keys and values :
{"success":false,"workflow_id":"WWWWWW","execution_id":"EEEEEE","org_id":"OOOOOOO","key":"THIS IS AN EXAMPLE KEY OF EXACTLY THE SAME LENGTH THAN IN PROD...","value":"THIS IS AN EXAMPLE VALUE OF EXACTLY THE SAME LENGTH THAN THE MESSAGES THAT I STORE IN PRODUCTION ENVIRONMT","category":"","created":1749046103,"edited":1749046103,"public_authorization":"PPPPPPP","suborg_distribution":null}
Expected behavior We should have a documented way to increase the maximum amount of items that can be written in the Key Value store.
Hey!
There are no overwrites. We are just missing proper pagination on the page. We're introducing this very soon, as it fits in with the "Category" system. It will come to the File page and other pages at the same time as well.
We'll introduce a /v2 API for it at the same time, as we've done with other pages with pagination.
Assigning to @LalitDeore as he'll be the one handling this :)