Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 142 for replicated (0.18 sec)

  1. cmd/batch-replicate.go

    package cmd
    
    import (
    	"time"
    
    	miniogo "github.com/minio/minio-go/v7"
    
    	"github.com/minio/minio/internal/auth"
    )
    
    //go:generate msgp -file $GOFILE
    
    // replicate:
    //   # source of the objects to be replicated
    //   source:
    //     type: "minio"
    //     bucket: "testbucket"
    //     prefix: "spark/"
    //
    //   # optional flags based filtering criteria
    //   # for source objects
    //   flags:
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Nov 22 18:51:46 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  2. internal/bucket/replication/rule.go

    type Status string
    
    // Supported status types
    const (
    	Enabled  Status = "Enabled"
    	Disabled Status = "Disabled"
    )
    
    // DeleteMarkerReplication - whether delete markers are replicated - https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html
    type DeleteMarkerReplication struct {
    	Status Status `xml:"Status"` // should be set to "Disabled" by default
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Jan 24 23:22:20 GMT 2022
    - 8.3K bytes
    - Viewed (0)
  3. docs/batch-jobs/README.md

    E24HH4nNMcgY5taynaPfxu  replicate       minioadmin      1 minute ago
    ```
    
    ### List all 'replicate' batch jobs
    ```
    mc batch list alias/ --type replicate
    ID                      TYPE            USER            STARTED
    E24HH4nNMcgY5taynaPfxu  replicate       minioadmin      1 minute ago
    ```
    
    ### Real-time 'status' for a batch job
    ```
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Oct 06 06:00:43 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  4. cmd/data-usage-utils.go

    	// Total Size for objects that have not yet been replicated
    	ReplicationPendingSizeV1 uint64 `json:"objectsPendingReplicationTotalSize"`
    	// Total size for objects that have witness one or more failures and will be retried
    	ReplicationFailedSizeV1 uint64 `json:"objectsFailedReplicationTotalSize"`
    	// Total size for objects that have been replicated to destination
    	ReplicatedSizeV1 uint64 `json:"objectsReplicatedTotalSize"`
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-oidc.sh

    	exit_1
    fi
    
    # force a resync after removing all site replication
    ./mc admin replicate rm --all --force minio1
    ./mc rb minio2 --force --dangerous
    ./mc admin replicate add minio1 minio2
    ./mc admin replicate resync start minio1 minio2
    sleep 30
    
    ./mc ls -r --versions minio1/newbucket >/tmp/minio1.txt
    ./mc ls -r --versions minio2/newbucket >/tmp/minio2.txt
    
    Shell Script
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Feb 26 21:30:28 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    			}
    			if oi.DeleteMarker && (validReplStatus || replicate) {
    				dsc.Set(newReplicateTargetDecision(tgtArn, replicate, sync))
    				continue
    			}
    			// can be the case that other cluster is down and duplicate `mc rm --vid`
    			// is issued - this still needs to be replicated back to the other target
    			if !oi.VersionPurgeStatus.Empty() {
    				replicate = oi.VersionPurgeStatus == Pending || oi.VersionPurgeStatus == Failed
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  7. cmd/bucket-replication-utils_test.go

    				t.Errorf("Test%d (%s): Invalid  target replicate decision: got %+v, want %+v", i+1, test.name, tdsc, expDsc)
    			}
    		}
    	}
    }
    
    var replicationStateTest = []struct {
    	name      string
    	rs        ReplicationState
    	arn       string
    	expStatus replication.StatusType
    }{
    	{ // 1. no replication status header
    		name:      "no replicated targets",
    		rs:        ReplicationState{},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Aug 08 20:27:40 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  8. cmd/bucket-replication-utils.go

    		}
    	}
    	return
    }
    
    type replicateTargetDecision struct {
    	Replicate   bool   // Replicate to this target
    	Synchronous bool   // Synchronous replication configured.
    	Arn         string // ARN of replication target
    	ID          string
    }
    
    func (t *replicateTargetDecision) String() string {
    	return fmt.Sprintf("%t;%t;%s;%s", t.Replicate, t.Synchronous, t.Arn, t.ID)
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 26.2K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    				}
    				info.StatsSummary[s.DeploymentID] = ss
    			}
    			tagMismatch := !isReplicated(tagCount, numSites, tagSet)
    			olockCfgMismatch := !isReplicated(olockCfgCount, numSites, olockConfigSet)
    			sseCfgMismatch := !isReplicated(sseCfgCount, numSites, sseCfgSet)
    			versionCfgMismatch := !isReplicated(versionCfgCount, numSites, versionCfgSet)
    			policyMismatch := !isBktPolicyReplicated(numSites, policies)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  10. docs/metrics/prometheus/list.md

    | `minio_cluster_replication_sent_bytes`                     | (_Site Replication Only_) Total number of bytes replicated to the target cluster.                        |
    | `minio_cluster_replication_sent_count`                     | (_Site Replication Only_) Total number of objects replicated to the target cluster.                      |
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
Back to top