Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for http2MaxRequests (0.35 sec)

  1. tests/testdata/config/destination-rule-all.yaml

      trafficPolicy:
        loadBalancer:
          simple: ROUND_ROBIN
        connectionPool:
          tcp:
            maxConnections: 99
            connectTimeout: 6s
          http:
            http2MaxRequests: 33
            maxRequestsPerConnection: 65
            maxRetries: 4
            http1MaxPendingRequests: 14
        outlierDetection:
            interval: 8ms
            baseEjectionTime: 1m
            maxEjectionPercent: 11
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    							Http1MaxPendingRequests:  1024,
    							Http2MaxRequests:         1024,
    							MaxRequestsPerConnection: 1024,
    							MaxRetries:               1024,
    						},
    					},
    				},
    			},
    			InboundConnectionPool: &networking.ConnectionPoolSettings{
    				Http: &networking.ConnectionPoolSettings_HTTPSettings{
    					Http1MaxPendingRequests:  1024,
    					Http2MaxRequests:         1024,
    					MaxRequestsPerConnection: 1024,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_traffic_policy.go

    	var maxConcurrentStreams uint32
    	var maxConnectionDuration *durationpb.Duration
    
    	if settings.Http != nil {
    		if settings.Http.Http2MaxRequests > 0 {
    			// Envoy only applies MaxRequests in HTTP/2 clusters
    			threshold.MaxRequests = &wrapperspb.UInt32Value{Value: uint32(settings.Http.Http2MaxRequests)}
    		}
    		if settings.Http.Http1MaxPendingRequests > 0 {
    			// Envoy only applies MaxPendingRequests in HTTP/1.1 clusters
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        pool connection.
                                      format: int32
                                      type: integer
                                    http2MaxRequests:
                                      description: Maximum number of active requests to
                                        a destination.
                                      format: int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                                        pool connection.
                                      format: int32
                                      type: integer
                                    http2MaxRequests:
                                      description: Maximum number of active requests to
                                        a destination.
                                      format: int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                        pool connection.
                                      format: int32
                                      type: integer
                                    http2MaxRequests:
                                      description: Maximum number of active requests to
                                        a destination.
                                      format: int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_test.go

    	}
    }
    
    func TestConnectionPoolSettings(t *testing.T) {
    	basicSettings := &networking.ConnectionPoolSettings{
    		Http: &networking.ConnectionPoolSettings_HTTPSettings{
    			Http1MaxPendingRequests:  1,
    			Http2MaxRequests:         2,
    			MaxRequestsPerConnection: 3,
    			MaxRetries:               4,
    		},
    		Tcp: &networking.ConnectionPoolSettings_TCPSettings{
    			MaxConnections: 1,
    			ConnectTimeout: durationpb.New(2 * time.Second),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/sidecar_test.go

    func TestInboundConnectionPoolForPort(t *testing.T) {
    	connectionPoolSettings := &networking.ConnectionPoolSettings{
    		Http: &networking.ConnectionPoolSettings_HTTPSettings{
    			Http1MaxPendingRequests:  1024,
    			Http2MaxRequests:         1024,
    			MaxRequestsPerConnection: 1024,
    			MaxRetries:               1024,
    			IdleTimeout:              durationpb.New(5 * time.Second),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    associated destination. enum: - DEFAULT - DO_NOT_UPGRADE - UPGRADE type: string http1MaxPendingReque: description: Maximum number of requests that will be queued while waiting for a ready connection pool connection. format: int32 type: integer http2MaxRequests: description: Maximum number of active requests to a destination. format: int32 type: integer idleTimeout: description: The idle timeout for upstream connection pool connections. type: string maxConcurrentStreams: format: int32 type: integer...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top