Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DeltaAggregatedResources (0.46 sec)

  1. pkg/istio-agent/xds_proxy_delta.go

    // block forever on
    func (con *ProxyConnection) sendDeltaRequest(req *discovery.DeltaDiscoveryRequest) {
    	con.deltaRequestsChan.Put(req)
    }
    
    // DeltaAggregatedResources is an implementation of Delta XDS API used for proxying between Istiod and Envoy.
    // Every time envoy makes a fresh connection to the agent, we reestablish a new connection to the upstream xds
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. pkg/istio-agent/tap_proxy.go

    				log.Errorf("failed to send: %v", err)
    				return err
    			}
    		} else {
    			log.Errorf("failed to call tap request: %v", err)
    			return err
    		}
    	}
    	return nil
    }
    
    func (p *tapProxy) DeltaAggregatedResources(downstream DeltaDiscoveryStream) error {
    	return fmt.Errorf("not implemented")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pilot/pkg/xds/ads.go

    		event.Healthy = req.ErrorDetail == nil
    		if !event.Healthy {
    			event.Message = req.ErrorDetail.Message
    		}
    		s.WorkloadEntryController.QueueWorkloadEntryHealth(proxy, event)
    	}
    }
    
    // DeltaAggregatedResources is not implemented.
    // Instead, Generators may send only updates/add, with Delete indicated by an empty spec.
    // This works if both ends follow this model. For example EDS and the API generator follow this
    // pattern.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top