Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WithMaxInFlightLimit (0.3 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight.go

    			klog.V(2).InfoS("Set denominator for mutating requests", "limit", mutatingLimit)
    		}
    	})
    }
    
    // WithMaxInFlightLimit limits the number of in-flight requests to buffer size of the passed in channel.
    func WithMaxInFlightLimit(
    	handler http.Handler,
    	nonMutatingLimit int,
    	mutatingLimit int,
    	longRunningRequestCheck apirequest.LongRunningRequestCheck,
    ) http.Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 11:34:15 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    	requestInfoFactory := &apirequest.RequestInfoFactory{APIPrefixes: sets.NewString("apis", "api"), GrouplessAPIPrefixes: sets.NewString("api")}
    	handler := WithMaxInFlightLimit(
    		http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    			// A short, accounted request that does not wait for block WaitGroup.
    			if strings.Contains(r.URL.Path, "dontwait") {
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/config.go

    		handler = filterlatency.TrackStarted(handler, c.TracerProvider, "priorityandfairness")
    	} else {
    		handler = genericfilters.WithMaxInFlightLimit(handler, c.MaxRequestsInFlight, c.MaxMutatingRequestsInFlight, c.LongRunningFunc)
    	}
    
    	handler = filterlatency.TrackCompleted(handler)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top