Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Http1MaxPendingRequests (0.98 sec)

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

        connectionPool:
          tcp:
            maxConnections: 99
            connectTimeout: 6s
          http:
            http2MaxRequests: 33
            maxRequestsPerConnection: 65
            maxRetries: 4
            http1MaxPendingRequests: 14
        outlierDetection:
            interval: 8ms
            baseEjectionTime: 1m
            maxEjectionPercent: 11
        tls:
          mode: DISABLE
      subsets:
        - name: v1
          labels:
            version: v1
    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. pilot/pkg/networking/core/cluster_traffic_policy.go

    			threshold.MaxRequests = &wrapperspb.UInt32Value{Value: uint32(settings.Http.Http2MaxRequests)}
    		}
    		if settings.Http.Http1MaxPendingRequests > 0 {
    			// Envoy only applies MaxPendingRequests in HTTP/1.1 clusters
    			threshold.MaxPendingRequests = &wrapperspb.UInt32Value{Value: uint32(settings.Http.Http1MaxPendingRequests)}
    		}
    
    		// FIXME: zero is a valid value if explicitly set, otherwise we want to use the default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. 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,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      - DEFAULT
                                      - DO_NOT_UPGRADE
                                      - UPGRADE
                                      type: string
                                    http1MaxPendingRequests:
                                      description: Maximum number of requests that will
                                        be queued while waiting for a ready connection
                                        pool connection.
    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. 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,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                                      - DEFAULT
                                      - DO_NOT_UPGRADE
                                      - UPGRADE
                                      type: string
                                    http1MaxPendingRequests:
                                      description: Maximum number of requests that will
                                        be queued while waiting for a ready connection
                                        pool connection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                      - DEFAULT
                                      - DO_NOT_UPGRADE
                                      - UPGRADE
                                      type: string
                                    http1MaxPendingRequests:
                                      description: Maximum number of requests that will
                                        be queued while waiting for a ready connection
                                        pool connection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.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. pkg/config/validation/validation.go

    	}
    	if settings.Http == nil && settings.Tcp == nil {
    		return fmt.Errorf("connection pool must have at least one field")
    	}
    
    	if httpSettings := settings.Http; httpSettings != nil {
    		if httpSettings.Http1MaxPendingRequests < 0 {
    			errs = appendErrors(errs, fmt.Errorf("http1 max pending requests must be non-negative"))
    		}
    		if httpSettings.Http2MaxRequests < 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top