Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for clusterCache (1.35 sec)

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

    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/hash"
    )
    
    var (
    	Separator = []byte{'~'}
    	Slash     = []byte{'/'}
    )
    
    // clusterCache includes the variables that can influence a Cluster Configuration.
    // Implements XdsCacheEntry interface.
    type clusterCache struct {
    	clusterName string
    
    	// proxy related cache fields
    	proxyVersion    string         // will be matched by envoyfilter patches
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    // as the non-subset and subset cluster generation are tightly coupled, in exchange for a likely trivial cache hit rate impact.
    func (cb *ClusterBuilder) getAllCachedSubsetClusters(clusterKey clusterCache) ([]*discovery.Resource, bool) {
    	if !features.EnableCDSCaching {
    		return nil, false
    	}
    	destinationRule := CastDestinationRule(clusterKey.destinationRule.GetRule())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top