Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for MaxRequestsPerConnection (0.54 sec)

  1. pilot/pkg/networking/core/cluster_traffic_policy.go

    		if idleTimeout != nil {
    			idleTimeoutDuration := idleTimeout
    			options.CommonHttpProtocolOptions.IdleTimeout = idleTimeoutDuration
    		}
    		if maxRequestsPerConnection > 0 {
    			options.CommonHttpProtocolOptions.MaxRequestsPerConnection = &wrapperspb.UInt32Value{Value: maxRequestsPerConnection}
    		}
    		if maxConnectionDuration != nil {
    			options.CommonHttpProtocolOptions.MaxConnectionDuration = maxConnectionDuration
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. 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
        tls:
          mode: DISABLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    					t.Errorf("Expected cluster %s to have common http protocol options but not found", tt.cluster.Name)
    				}
    				if ec.httpProtocolOptions.CommonHttpProtocolOptions.MaxRequestsPerConnection.GetValue() !=
    					uint32(tt.destRule.TrafficPolicy.GetConnectionPool().GetHttp().MaxRequestsPerConnection) {
    					t.Errorf("Unexpected max_requests_per_connection found")
    				}
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    					httpProtocolOptions := &http.HttpProtocolOptions{}
    					anyOptions.UnmarshalTo(httpProtocolOptions)
    					g.Expect(httpProtocolOptions.CommonHttpProtocolOptions.MaxRequestsPerConnection.GetValue()).
    						To(Equal(uint32(expected.Http.MaxRequestsPerConnection)))
    					g.Expect(thresholds.MaxRetries).NotTo(BeNil())
    					g.Expect(thresholds.MaxRetries.Value).To(Equal(uint32(expected.Http.MaxRetries)))
    				}
    			}
    		})
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    							Http2MaxRequests:         1024,
    							MaxRequestsPerConnection: 1024,
    							MaxRetries:               1024,
    						},
    					},
    				},
    			},
    			InboundConnectionPool: &networking.ConnectionPoolSettings{
    				Http: &networking.ConnectionPoolSettings_HTTPSettings{
    					Http1MaxPendingRequests:  1024,
    					Http2MaxRequests:         1024,
    					MaxRequestsPerConnection: 1024,
    					MaxRetries:               1024,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        allowed for a peer on one HTTP/2 connection.
                                      format: int32
                                      type: integer
                                    maxRequestsPerConnection:
                                      description: Maximum number of requests per connection
                                        to a backend.
                                      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)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                                        allowed for a peer on one HTTP/2 connection.
                                      format: int32
                                      type: integer
                                    maxRequestsPerConnection:
                                      description: Maximum number of requests per connection
                                        to a backend.
                                      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)
  9. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                    maxConcurrentStreams:
                                      format: int32
                                      type: integer
                                    maxRequestsPerConnection:
                                      description: Maximum number of requests per connection
                                        to a backend.
                                      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)
  10. pilot/pkg/model/sidecar_test.go

    	connectionPoolSettings := &networking.ConnectionPoolSettings{
    		Http: &networking.ConnectionPoolSettings_HTTPSettings{
    			Http1MaxPendingRequests:  1024,
    			Http2MaxRequests:         1024,
    			MaxRequestsPerConnection: 1024,
    			MaxRetries:               1024,
    			IdleTimeout:              durationpb.New(5 * time.Second),
    			H2UpgradePolicy:          networking.ConnectionPoolSettings_HTTPSettings_UPGRADE,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top