Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 237 for queueset (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    	if qCfg.DesiredNumQueues > 0 {
    		// Adding queues is the only thing that requires immediate action
    		// Removing queues is handled by attrition, removing a queue when
    		// it goes empty and there are too many.
    		numQueues := len(qs.queues)
    		if qCfg.DesiredNumQueues > numQueues {
    			qs.queues = append(qs.queues,
    				createQueues(qCfg.DesiredNumQueues-numQueues, len(qs.queues))...)
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    }
    
    // QueueSetCompleter finishes the two-step process of creating or
    // reconfiguring a QueueSet
    type QueueSetCompleter interface {
    	// Complete returns a QueueSet configured by the given
    	// dispatching configuration.
    	Complete(DispatchingConfig) QueueSet
    }
    
    // QueueSet is the abstraction for the queuing and dispatching
    // functionality of one non-exempt priority level.  It covers the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    	// index is the position of this queue among those in its queueSet.
    	index int
    
    	// seatsInUse is the total number of "seats" currently occupied
    	// by all the requests that are currently executing in this queue.
    	seatsInUse int
    }
    
    // queueSum tracks the sum of initial seats, max seats, and
    // totalWork from all requests in a given queue
    type queueSum struct {
    	// InitialSeatsSum is the sum of InitialSeats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	counter.Add(1) // account for the goroutine running this test
    
    	queue, ok := qs.(*queueSet)
    	if !ok {
    		t.Fatalf("expected a QueueSet of type: %T but got: %T", &queueSet{}, qs)
    	}
    	if queue.totRequestsExecuting != 0 {
    		t.Fatalf("precondition: expected total requests currently executing of the QueueSet to be 0, but got: %d", queue.totRequestsExecuting)
    	}
    	if queue.dCfg.ConcurrencyLimit != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package queueset implements a technique called "fair queuing for
    // server requests".  One QueueSet is a set of queues operating
    // according to this technique.
    //
    // Fair queuing for server requests is inspired by the fair queuing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/no-restraint.go

    	return noRestraintCompleter{}, nil
    }
    
    func (noRestraintCompleter) Complete(dCfg fq.DispatchingConfig) fq.QueueSet {
    	return noRestraint{}
    }
    
    func (noRestraint) BeginConfigChange(qCfg fq.QueuingConfig) (fq.QueueSetCompleter, error) {
    	return noRestraintCompleter{}, nil
    }
    
    func (noRestraint) IsIdle() bool {
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:37:20 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/fifo_list_test.go

    	remainingRequests := walkAll(list)
    	verifyOrder(t, orderExpected, remainingRequests)
    }
    
    func TestFIFOQueueWorkEstimate(t *testing.T) {
    	qs := &queueSet{estimatedServiceDuration: time.Second}
    	list := newRequestFIFO()
    
    	update := func(we *queueSum, req *request, multiplier int) {
    		we.InitialSeatsSum += multiplier * req.InitialSeats()
    		we.MaxSeatsSum += multiplier * req.MaxSeats()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:48:40 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/endpoints/request"
    	fq "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing"
    	fqs "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset"
    	"k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock"
    	"k8s.io/apiserver/pkg/util/flowcontrol/metrics"
    	fcrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    	"k8s.io/client-go/informers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/fifo_list.go

    	Peek() (*request, bool)
    
    	// Length returns the number of requests in the list.
    	Length() int
    
    	// QueueSum returns the sum of initial seats, final seats, and
    	// additional latency aggregated from all requests in this queue.
    	QueueSum() queueSum
    
    	// Walk iterates through the list in order of oldest -> newest
    	// and executes the specified walkFunc for each request in that order.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:05:53 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/max_seats_test.go

    */
    
    package flowcontrol
    
    import (
    	"testing"
    	"time"
    
    	flowcontrolv1 "k8s.io/api/flowcontrol/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	fqs "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset"
    	"k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock"
    	"k8s.io/apiserver/pkg/util/flowcontrol/metrics"
    	"k8s.io/client-go/informers"
    	clientsetfake "k8s.io/client-go/kubernetes/fake"
    	"k8s.io/utils/ptr"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top