Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for enable_deferred_cluster_creation (0.41 sec)

  1. pkg/bootstrap/testdata/deferred_cluster_creation_golden.json

            "address": {
              "socket_address": {"address": "10.1.1.1", "port_value": 9125}
            }
          }
        }
        
      ]
      
      
      ,
      "cluster_manager": {
        "enable_deferred_cluster_creation": true,
        "outlier_detection": {
          "event_log_path": "/dev/stdout"
        }
      }
      
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. tools/packaging/common/envoy_bootstrap.json

        }
        {{ end }}
      ]
      {{ end }}
      {{ if or .outlier_log_path .load_stats_config_json_str .deferred_cluster_creation}}
      ,
      "cluster_manager": {
        {{- if .deferred_cluster_creation}}
        "enable_deferred_cluster_creation": true,
        {{- end}}
        {{- if .outlier_log_path}}
        "outlier_detection": {
          "event_log_path": "{{ .outlier_log_path }}"
        }
        {{- end}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. pilot/pkg/features/experimental.go

    	Enable100ContinueHeaders = env.Register("ENABLE_100_CONTINUE_HEADERS", true,
    		"If enabled, istiod will proxy 100-continue headers as is").Get()
    
    	EnableDeferredClusterCreation = env.Register("ENABLE_DEFERRED_CLUSTER_CREATION", true,
    		"If enabled, Istio will create clusters only when there are requests. This will save memory and CPU cycles"+
    			" in cases where there are lots of inactive clusters and > 1 worker thread").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top