Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for replicaCount (0.25 sec)

  1. cmd/data-usage-cache.go

    	ReplicaSize  uint64                      `msg:"r,omitempty"`
    	ReplicaCount uint64                      `msg:"rc,omitempty"`
    }
    
    //msgp:tuple replicationAllStatsV1
    type replicationAllStatsV1 struct {
    	Targets      map[string]replicationStats
    	ReplicaSize  uint64 `msg:"ReplicaSize,omitempty"`
    	ReplicaCount uint64 `msg:"ReplicaCount,omitempty"`
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 41.4K bytes
    - Viewed (1)
  2. cmd/bucket-replication-stats.go

    	if !ok {
    		bs = newBucketReplicationStats()
    	}
    	bs.ReplicaSize += n
    	bs.ReplicaCount++
    	r.Cache[bucket] = bs
    	r.srUpdateReplicaStat(n)
    }
    
    func (r *ReplicationStats) srUpdateReplicaStat(sz int64) {
    	if r == nil {
    		return
    	}
    	atomic.AddInt64(&r.srStats.ReplicaSize, sz)
    	atomic.AddInt64(&r.srStats.ReplicaCount, 1)
    }
    
    func (r *ReplicationStats) srUpdate(sr replStat) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  3. cmd/site-replication-metrics.go

    	return n
    }
    
    // SRStats has replication stats at site level
    type SRStats struct {
    	// Total Replica size in bytes
    	ReplicaSize int64 `json:"replicaSize"`
    	// Total Replica received
    	ReplicaCount int64                `json:"replicaCount"`
    	M            map[string]*SRStatus `json:"srStatusMap"`
    
    	movingAvgTicker *time.Ticker // Ticker for calculating moving averages
    	lock            sync.RWMutex // mutex for srStats
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  4. cmd/site-replication-metrics_gen.go

    		case "ReplicaSize":
    			z.ReplicaSize, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ReplicaSize")
    				return
    			}
    		case "ReplicaCount":
    			z.ReplicaCount, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ReplicaCount")
    				return
    			}
    		case "Queued":
    			err = z.Queued.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "Queued")
    				return
    			}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 40.6K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "EgressGateways"
    spec:
    {{- if not $gateway.autoscaleEnabled }}
    {{- if $gateway.replicaCount }}
      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "IngressGateways"
    spec:
    {{- if not $gateway.autoscaleEnabled }}
    {{- if $gateway.replicaCount }}
      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  7. cmd/bucket-stats.go

    	Failed madmin.TimedErrStats `json:"failed"`
    
    	// Total number of completed operations
    	ReplicatedCount int64 `json:"replicationCount"`
    	// Total number of replica received
    	ReplicaCount int64 `json:"replicaCount"`
    
    	// in Queue stats for bucket - from qCache
    	QStat InQueueMetric `json:"queued"`
    	// Deprecated fields
    	// Pending size in bytes
    	PendingSize int64 `json:"pendingReplicationSize"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 13.1K bytes
    - Viewed (0)
  8. cmd/bucket-stats_gen.go

    			z.ReplicatedCount, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ReplicatedCount")
    				return
    			}
    		case "ReplicaCount":
    			z.ReplicaCount, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ReplicaCount")
    				return
    			}
    		case "QStat":
    			err = z.QStat.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "QStat")
    				return
    			}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 57.5K bytes
    - Viewed (0)
  9. manifests/charts/gateway/templates/deployment.yaml

      labels:
        {{- include "gateway.labels" . | nindent 4}}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    spec:
      {{- if not .Values.autoscaling.enabled }}
      {{- with .Values.replicaCount }}
      replicas: {{ . }}
      {{- end }}
      {{- end }}
      selector:
        matchLabels:
          {{- include "gateway.selectorLabels" . | nindent 6 }}
      template:
        metadata:
          {{- with .Values.podAnnotations }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "IngressGateways"
    spec:
    {{- if not $gateway.autoscaleEnabled }}
    {{- if $gateway.replicaCount }}
      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (1)
Back to top