Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for FAILOVER (0.25 sec)

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

    			// Apply user defined priority failover settings.
    			applyFailoverPriorities(loadAssignment, wrappedLocalityLbEndpoints, proxyLabels, localityLB.FailoverPriority)
    			// If failover is expliciltly configured with failover priority, apply failover settings also.
    			if len(localityLB.Failover) != 0 {
    				applyLocalityFailover(locality, loadAssignment, localityLB.Failover)
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation_test.go

    			name: "invalid failover dst contain '*' wildcard",
    			in: &networking.LocalityLoadBalancerSetting{
    				Failover: []*networking.LocalityLoadBalancerSetting_Failover{
    					{
    						From: "region1",
    						To:   "*",
    					},
    				},
    			},
    			outlier: &networking.OutlierDetection{},
    			err:     true,
    			warn:    false,
    		},
    		{
    			name: "invalid failover src contain '/' separator",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    		},
    		{
    			"both",
    			&networking.LocalityLoadBalancerSetting{},
    			&networking.LocalityLoadBalancerSetting{Failover: failover},
    			&networking.LocalityLoadBalancerSetting{Failover: failover},
    		},
    		{
    			"mesh disabled",
    			&networking.LocalityLoadBalancerSetting{Enabled: &wrappers.BoolValue{Value: false}},
    			nil,
    			nil,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation.go

    	}
    
    	for _, failover := range lb.GetFailover() {
    		if failover.From == failover.To {
    			errs = AppendValidation(errs, fmt.Errorf("locality lb failover settings must specify different regions"))
    		}
    		if strings.Contains(failover.From, "/") || strings.Contains(failover.To, "/") {
    			errs = AppendValidation(errs, fmt.Errorf("locality lb failover only specify region"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

        // even if there are endpoints outside of the preferences.
        STRICT = 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
    - 12.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Configuration.java

         */
        boolean isRequireSecureNegotiate ();
    
    
        /**
         * Enable port 139 failover
         * 
         * Property <tt>jcifs.smb.client.port139.enabled</tt> (boolean, default false)
         * 
         * @return whether to failover to legacy transport on port 139
         */
        boolean isPort139FailoverEnabled ();
    
    
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_traffic_policy.go

    }
    
    func applyLocalityLoadBalancer(locality *core.Locality, proxyLabels map[string]string, cluster *cluster.Cluster,
    	localityLB *networking.LocalityLoadBalancerSetting,
    ) {
    	// Failover should only be applied with outlier detection, or traffic will never failover.
    	enableFailover := cluster.OutlierDetection != nil
    	if cluster.LoadAssignment != nil {
    		// TODO: enable failoverPriority for `STRICT_DNS` cluster type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top