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
/* Raise the max blob size value to 1GB so that large KVS values
* (including KVS directories) can be supported while the KVS transitions
* to the RFC 11 treeobj data representation.
*/
//static const uint32_t default_blob_size_limit = 1048576; /* RFC 10 */
static const uint32_t default_blob_size_limit = 1048576*1024;
this is mostly a reminder that we need to re-look at what would be necessary to make this work or if RFC10 should be updated with a larger limit. #1202 & #1206 are probably involved in the requirement to make it work.
as a side note, if the average sha has is 46 bytes in size, counting the quotes around it and the comma separating each one in a valref array, that's about a max of 21K blobref's in a valref array. We definitely got eventlogs with more than that.
The text was updated successfully, but these errors were encountered:
in content/cache.c
this is mostly a reminder that we need to re-look at what would be necessary to make this work or if RFC10 should be updated with a larger limit. #1202 & #1206 are probably involved in the requirement to make it work.
as a side note, if the average sha has is 46 bytes in size, counting the quotes around it and the comma separating each one in a valref array, that's about a max of 21K blobref's in a valref array. We definitely got eventlogs with more than that.
The text was updated successfully, but these errors were encountered: