Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MaxConcurrentStreams (0.29 sec)

  1. pilot/pkg/bootstrap/server.go

    		// it on the HTTP port. Does not impact the HTTPS gRPC or HTTPS.
    		log.Infof("multiplexing gRPC on http addr %v", args.ServerOptions.HTTPAddr)
    		multiplexGRPC = true
    	}
    	h2s := &http2.Server{
    		MaxConcurrentStreams: uint32(features.MaxConcurrentStreams),
    	}
    	multiplexHandler := h2c.NewHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		// If we detect gRPC, serve using grpcServer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    		AllowConnect: true,
    		// TODO(https://github.com/istio/istio/issues/43443)
    		// All streams are bound to the same worker. Therefore, we need to limit for better fairness.
    		MaxConcurrentStreams: &wrappers.UInt32Value{Value: 100},
    		// well behaved clients should close connections.
    		// not all clients are well-behaved. This will prune
    		// connections when the client is not responding, to keep
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top