Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 128 for Replikation (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/site-replication-metrics.go

    	Queued InQueueMetric `json:"queued"`
    	// Proxy stats
    	Proxied ProxyMetric `json:"proxied"`
    	// replication metrics summary for each site replication peer
    	Metrics map[string]SRMetric `json:"replMetrics"`
    	// uptime of node being queried for site replication metrics
    	Uptime int64 `json:"uptime"`
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  2. docs/metrics/prometheus/grafana/replication/grafana-replication-cluster.png

    grafana-replication-cluster.png...
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Mar 28 17:15:39 GMT 2024
    - 443.8K bytes
    - Click Count (0)
  3. cmd/metrics-v3-replication.go

    		"Average number of active replication workers")
    	replicationAverageQueuedBytesMD = NewGaugeMD(replicationAverageQueuedBytes,
    		"Average number of bytes queued for replication since server start")
    	replicationAverageQueuedCountMD = NewGaugeMD(replicationAverageQueuedCount,
    		"Average number of objects queued for replication since server start")
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Aug 15 12:04:40 GMT 2024
    - 4.6K bytes
    - Click Count (0)
  4. cmd/bucket-replication-metrics.go

    }
    
    // ActiveWorkerStat is stat for active replication workers
    type ActiveWorkerStat struct {
    	Curr int     `json:"curr"`
    	Avg  float32 `json:"avg"`
    	Max  int     `json:"max"`
    	hist metrics.Histogram
    }
    
    func newActiveWorkerStat(r metrics.Registry) *ActiveWorkerStat {
    	h := metrics.NewHistogram(metrics.NewUniformSample(100))
    	r.Register("replication.active_workers", h)
    	return &ActiveWorkerStat{
    		hist: h,
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Aug 15 12:04:40 GMT 2024
    - 14.2K bytes
    - Click Count (0)
  5. cmd/admin-handlers-site-replication.go

    		adminLogIf(ctx, err)
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    }
    
    // SRStateEdit - PUT /minio/admin/v3/site-replication/state/edit
    //
    // used internally to tell current cluster to update site replication state
    func (a adminAPIHandlers) SRStateEdit(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 19.4K bytes
    - Click Count (0)
  6. cmd/metrics-v3-bucket-replication.go

    		"Number of DELETE tagging requests proxied to replication target",
    		bucketL, targetArnL)
    	bucketReplProxiedGetRequestsFailuresMD = NewCounterMD(bucketReplProxiedGetRequestsFailures,
    		"Number of failures in GET requests proxied to replication target",
    		bucketL, targetArnL)
    	bucketReplProxiedGetRequestsTotalMD = NewCounterMD(bucketReplProxiedGetRequestsTotal,
    		"Number of GET requests proxied to replication target",
    		bucketL, targetArnL)
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Jun 04 20:45:31 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  7. docs/metrics/prometheus/grafana/replication/grafana-replication-node.png

    grafana-replication-node.png...
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Mar 28 17:15:39 GMT 2024
    - 229.7K bytes
    - Click Count (0)
  8. docs/site-replication/run-ssec-object-replication.sh

    touch /tmp/data/defpartsize
    shred -s 500M /tmp/data/defpartsize
    touch /tmp/data/custpartsize
    shred -s 500M /tmp/data/custpartsize
    echo "done"
    
    # Add replication site
    ./mc admin replicate add minio1 minio2 --insecure
    # sleep for replication to complete
    sleep 30
    
    # Create bucket in source cluster
    echo "Create bucket in source MinIO instance"
    ./mc mb minio1/test-bucket --insecure
    
    # Load objects to source site
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Sep 24 08:03:58 GMT 2024
    - 9.9K bytes
    - Click Count (0)
  9. cmd/site-replication-utils.go

    package cmd
    
    import (
    	"context"
    	"maps"
    	"math/rand"
    	"sync"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    )
    
    //go:generate msgp -file=$GOFILE
    
    // SiteResyncStatus captures current replication resync status for a target site
    type SiteResyncStatus struct {
    	Version int `json:"version" msg:"v"`
    	// Overall site status
    	Status                        ResyncStatusType            `json:"st" msg:"ss"`
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  10. docs/site-replication/run-replication-with-checksum-header.sh

    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello World" >/tmp/data/obj
    touch /tmp/data/mpartobj
    shred -s 500M /tmp/data/mpartobj
    echo "done"
    
    # Add replication site
    ./mc admin replicate add minio1 minio2 --insecure
    # sleep for replication to complete
    sleep 30
    
    # Create bucket in source cluster
    echo "Create bucket in source MinIO instance"
    ./mc mb minio1/test-bucket --insecure
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon Jan 20 14:49:07 GMT 2025
    - 11.5K bytes
    - Click Count (0)
Back to Top