missence521
missence521
> 此行为是有意为之。 长度字段的大小为 3 个字节: > > https://github.com/apache/apisix/blob/0ebc9cb85114ed5a389b335e9b8ead7d3fdc17a0/apisix/plugins/ext-plugin/init.lua#L145 > > > 因此只能发送16777215个字节。 > 发送这么大的数据是不可避免的吗?每次请求在两种语言之间复制 16MB 以上的数据是无效的。 业务场景确实有超过16m的情况,该怎么处理呢,目前可以改最大限制,但是带来的,就是使用这个插件就报https://github.com/apache/apisix-java-plugin-runner/issues/198,能给一个解决办法吗?期待您的回复
The root cause of the final problem is that more than 16777215, with hdr buf 3 bits can not be put down, need to use 4 bits to store, to...
Has this problem been solved? How to deal with it