Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MaxConcurrentStreams (0.15 sec)

  1. pilot/pkg/grpc/grpc.go

    	maxStreams := features.MaxConcurrentStreams
    	maxRecvMsgSize := features.MaxRecvMsgSize
    
    	grpcOptions := []grpc.ServerOption{
    		grpc.UnaryInterceptor(middleware.ChainUnaryServer(interceptors...)),
    		grpc.MaxConcurrentStreams(uint32(maxStreams)),
    		grpc.MaxRecvMsgSize(maxRecvMsgSize),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 04:27:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/server.go

    		if !started {
    			sdsServiceLog.Warn("SDS grpc server could not be started")
    		}
    	}()
    }
    
    func (s *Server) grpcServerOptions() []grpc.ServerOption {
    	grpcOptions := []grpc.ServerOption{
    		grpc.MaxConcurrentStreams(uint32(maxStreams)),
    	}
    
    	return grpcOptions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pilot/pkg/features/tuning.go

    // limitations under the License.
    
    package features
    
    import (
    	"runtime"
    	"time"
    
    	"istio.io/istio/pkg/env"
    )
    
    // Define performance tuning related features here.
    var (
    	MaxConcurrentStreams = env.Register(
    		"ISTIO_GPRC_MAXSTREAMS",
    		100000,
    		"Sets the maximum number of concurrent grpc streams.",
    	).Get()
    
    	// MaxRecvMsgSize The max receive buffer size of gRPC received channel of Pilot in bytes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top