Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for NDS (0.01 sec)

  1. pkg/dns/proto/nds.pb.go

    	(*NameTable)(nil),          // 0: istio.networking.nds.v1.NameTable
    	(*NameTable_NameInfo)(nil), // 1: istio.networking.nds.v1.NameTable.NameInfo
    	nil,                        // 2: istio.networking.nds.v1.NameTable.TableEntry
    }
    var file_dns_proto_nds_proto_depIdxs = []int32{
    	2, // 0: istio.networking.nds.v1.NameTable.table:type_name -> istio.networking.nds.v1.NameTable.TableEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/debug.go

    		return
    	}
    
    	if s.Generators[v3.NameTableType] != nil {
    		nds, _, _ := s.Generators[v3.NameTableType].Generate(con.proxy, nil, &model.PushRequest{
    			Push: con.proxy.LastPushContext,
    			Full: true,
    		})
    		if len(nds) == 0 {
    			return
    		}
    		writeJSON(w, nds[0], req)
    	}
    }
    
    // Edsz implements a status and debug interface for EDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		// For headless services, trigger a full push.
    		// If EnableHeadlessService is true and svc ports are not pure HTTP, we need to regenerate listeners per endpoint.
    		// Otherwise we only need to push NDS, but still need to set full but we skip all other xDS except NDS during the push.
    		esc.c.opts.XDSUpdater.ConfigUpdate(&model.PushRequest{
    			Full:           true,
    			ConfigsUpdated: configsUpdated,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy_delta.go

    				downstreamErr(con, err)
    				return
    			}
    
    			// forward to istiod
    			con.sendDeltaRequest(req)
    			if !initialRequestsSent.Load() && req.TypeUrl == model.ListenerType {
    				// fire off an initial NDS request
    				if _, f := p.handlers[model.NameTableType]; f {
    					con.sendDeltaRequest(&discovery.DeltaDiscoveryRequest{
    						TypeUrl: model.NameTableType,
    					})
    				}
    				// fire off an initial PCDS request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/bench_test.go

    }
    
    func BenchmarkListenerGeneration(b *testing.B) {
    	runBenchmark(b, v3.ListenerType, testCases)
    }
    
    func TestListenerGeneration(t *testing.T) {
    	testBenchmark(t, v3.ListenerType, testCases)
    }
    
    // NDS isn't really impacted by anything beyond number of services, so just run these separately
    var ndsCases = []ConfigInput{
    	{
    		Name:     "tcp",
    		Services: 1000,
    	},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy.go

    				downstreamErr(con, err)
    				return
    			}
    
    			// forward to istiod
    			con.sendRequest(req)
    			if !initialRequestsSent.Load() && req.TypeUrl == model.ListenerType {
    				// fire off an initial NDS request
    				if _, f := p.handlers[model.NameTableType]; f {
    					con.sendRequest(&discovery.DiscoveryRequest{
    						TypeUrl: model.NameTableType,
    					})
    				}
    				// fire off an initial PCDS request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top