You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by GitBox <gi...@apache.org> on 2021/09/07 03:23:48 UTC

[GitHub] [dubbo] zhuangjinjin edited a comment on pull request #8700: #8685 supported to configure HTTP2 settings

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
   h2.settings.header-table-size=4096 
   h2.settings.enable-push=false
   h2.settings.max-concurrent-streams=2147483647
   h2.settings.initial-window-size=1048576
   h2.settings.max-frame-size=32768
   h2.settings.max-header-list-size=8192
   ```
   
   2. configure in java system properties
   ```properties
   -Dh2.settings.header-table-size=4096 ....
   ```
   
   3. configure in application.yml
   ```yml
   h2:
     settings:
       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: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org