-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Missing 'proposalResponses' parameter in transaction request" #162
Comments
@JessKXWL Dear friends, how did you deal this problem later? |
I didn't solve this problem, but later I tried to find out the limit. It's OK to upload data below 4M. The maximum data transmitted by the gossip protocol is also 4M, so I think it's related to the gossip protocol. However, there will still be errors when modifying the maximum data transmitted by the gossip protocol. It may be that I changed the wrong place |
@JessKXWL ,thank you very much! i will try to have a look on it , this problem is really Strange |
@JessKXWL : Check the network.json, verify the peer endpoints configured are correct or not. |
我的问题跟你的问题一样。但我是获取数据时报的这个错误。 |
时间太久了,我有点不太记得了,我印象中是因为grpc协议传输的数据设置为了4M,而我传输的数据远超过4M,所以出错了。在这个代码里面有地方可以设置GRPC协议传输数据大小,不过我当时设置的时候可能没找对地方,没设置成功。
…------------------ 原始邮件 ------------------
发件人: "hyperledger/fabric-sdk-py" ***@***.***>;
发送时间: 2023年11月27日(星期一) 晚上6:51
***@***.***>;
***@***.******@***.***>;
主题: Re: [hyperledger/fabric-sdk-py] "Missing 'proposalResponses' parameter in transaction request" (Issue #162)
我的问题跟你的问题一样。但我是获取数据时报的这个错误。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
确实是这样,是由于grpc协议数据量的关系,貌似是在一个配置文件里修改,数额修改地大些,也别太大
…------------------ 原始邮件 ------------------
发件人: "hyperledger/fabric-sdk-py" ***@***.***>;
发送时间: 2023年11月27日(星期一) 晚上11:04
***@***.***>;
***@***.******@***.***>;
主题: Re: [hyperledger/fabric-sdk-py] "Missing 'proposalResponses' parameter in transaction request" (Issue #162)
时间太久了,我有点不太记得了,我印象中是因为grpc协议传输的数据设置为了4M,而我传输的数据远超过4M,所以出错了。在这个代码里面有地方可以设置GRPC协议传输数据大小,不过我当时设置的时候可能没找对地方,没设置成功。
------------------ 原始邮件 ------------------
发件人: "hyperledger/fabric-sdk-py" ***@***.***>;
发送时间: 2023年11月27日(星期一) 晚上6:51
***@***.***>;
***@***.******@***.***>;
主题: Re: [hyperledger/fabric-sdk-py] "Missing 'proposalResponses' parameter in transaction request" (Issue #162)
我的问题跟你的问题一样。但我是获取数据时报的这个错误。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
请问是在network.json文件里面改吗?
但是改了后,重新启动程序还是报这个错误。 |
I recently started learning fabric and wrote a small demo, but there were errors when uploading data using postman. When I upload the following data, the code will not make mistakes.But when the data I upload is 15M, an error will be reported,"Missing 'proposalResponses' parameter in transaction request"。here is the data
The following is the data displayed in the docker log
I wonder if this problem occurs because the uploaded data is too large.
I tried to change PreferredMaxBytes from 512KB to 15MB, but it didn't work.
Is there any way for me to upload such large data?
The text was updated successfully, but these errors were encountered: