zhuangjinjin edited a comment on pull request #8700:
URL: https://github.com/apache/dubbo/pull/8700#issuecomment-913961366
> Please explain how to configure the following parameters
It can be configured in following ways.
1. configure in dubbo.properties
```properties
dubbo.rpc.tri.header-table-size=4096
dubbo.rpc.tri.enable-push=false
dubbo.rpc.tri.max-concurrent-streams=2147483647
dubbo.rpc.tri.initial-window-size=1048576
dubbo.rpc.tri.max-frame-size=32768
dubbo.rpc.tri.max-header-list-size=8192
```
2. configure in java system properties
```properties
-Ddubbo.rpc.tri.header-table-size=4096 ....
```
3. configure in application.yml
```yml
dubbo:
rpc:
tri:
header-table-size: 4096
enable-push: false
...
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]