Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for FAILOVER (0.2 sec)

  1. docs/bucket/replication/DESIGN.md

    requires a setting in the replication configuration called [replica modification sync](https://aws.amazon.com/about-aws/whats-new/2020/12/amazon-s3-replication-adds-support-two-way-replication/).
    
    For active-active replication, automatic failover occurs on `GET/HEAD` operations if object or object version requested qualifies for replication and is missing on one site, but present on the other. This allows the applications to take full advantage of two-way replication even before the two sites...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.pb.go

    	// even if there are endpoints outside of the preferences.
    	LoadBalancing_STRICT LoadBalancing_Mode = 1
    	// In FAILOVER mode, endpoint selection will prefer endpoints that match all preferences, but failover to groups of endpoints
    	// that match less (or, eventually, none) preferences.
    	// For instance, with `[NETWORK, REGION, ZONE]`, we will send to:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types.go

    	// DelayCacheUntilActive specifies when to start caching. If this is true and leader election is enabled,
    	// the scheduler will wait to fill informer caches until it is the leader. Doing so will have slower
    	// failover with the benefit of lower memory overhead while waiting to become leader.
    	// Defaults to false.
    	DelayCacheUntilActive bool
    }
    
    // KubeSchedulerProfile is a scheduling profile.
    type KubeSchedulerProfile struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    object type: object type: array enabled: description: enable locality load balancing, this is DestinationRule-level and will override mesh wide settings in entirety. nullable: true type: boolean failover: description: 'Optional: only one of distribute, failover or failoverPriority can be set.' items: properties: from: description: Originating region. type: string to: description: Destination region the traffic will fail over to when endpoints in the 'from' region becomes unhealthy. type: string type:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/endpoint_builder.go

    		return buildEmptyClusterLoadAssignment(b.clusterName)
    	}
    
    	l := b.createClusterLoadAssignment(localityLbEndpoints)
    
    	// If locality aware routing is enabled, prioritize endpoints or set their lb weight.
    	// Failover should only be enabled when there is an outlier detection, otherwise Envoy
    	// will never detect the hosts are unhealthy and redirect traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    		return resp
    	}
    	resp += "/" + l.Zone
    	if l.SubZone == "" {
    		return resp
    	}
    	resp += "/" + l.SubZone
    	return resp
    }
    
    // GetFailoverPriorityLabels returns a byte array which contains failover priorities of the proxy.
    func GetFailoverPriorityLabels(proxyLabels map[string]string, priorities []string) []byte {
    	var b bytes.Buffer
    	for _, key := range priorities {
    		b.WriteString(key)
    		b.WriteRune(':')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	NodeLogQuery featuregate.Feature = "NodeLogQuery"
    
    	// owner: @xing-yang @sonasingh46
    	// kep: https://kep.k8s.io/2268
    	// alpha: v1.24
    	// beta: v1.26
    	// GA: v1.28
    	//
    	// Allow pods to failover to a different node in case of non graceful node shutdown
    	NodeOutOfServiceVolumeDetach featuregate.Feature = "NodeOutOfServiceVolumeDetach"
    
    	// owner: @iholder101 @kannon92
    	// kep: https://kep.k8s.io/2400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller.go

    				return nil
    			}
    
    			// 1. find proxy service by label selector, if not any, there may exist headless service without selector
    			// failover to 2
    			allServices := c.services.List(pod.Namespace, klabels.Everything())
    			if services := getPodServices(allServices, pod); len(services) > 0 {
    				out := make([]model.ServiceTarget, 0)
    				for _, svc := range services {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.17.md

    * Upgrade to etcd client 3.3.17 to fix bug where etcd client does not parse IPv6 addresses correctly when members are joining, and to fix bug where failover on multi-member etcd cluster fails certificate check on DNS mismatch ([#83801](https://github.com/kubernetes/kubernetes/pull/83801), [@jpbetz](https://github.com/jpbetz))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  10. CHANGELOG/CHANGELOG-1.16.md

    * Upgrade to etcd client 3.3.17 to fix bug where etcd client does not parse IPv6 addresses correctly when members are joining, and to fix bug where failover on multi-member etcd cluster fails certificate check on DNS mismatch ([#83968](https://github.com/kubernetes/kubernetes/pull/83968), [@jpbetz](https://github.com/jpbetz))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top