Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 570 for replicate (0.35 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 Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Nov 22 18:51:46 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  2. cmd/batch-replicate_gen.go

    Anis Eleuch <******@****.***> 1700679106 -0800
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Nov 22 18:51:46 GMT 2023
    - 40.6K bytes
    - Viewed (0)
  3. cmd/batch-replicate_gen_test.go

    Krishnan Parthasarathi <******@****.***> 1693333643 -0700
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Aug 29 18:27:23 GMT 2023
    - 14.2K bytes
    - Viewed (1)
  4. docs/bucket/replication/README.md

    The replication configuration in use on a bucket can be viewed using the `mc replicate export alias/bucket` command.
    
    To disable replica metadata modification syncing, use `mc replicate edit` with the --replicate flag.
    
    ```
    mc replicate edit alias/bucket --id xyz.id --replicate "delete,delete-marker"
    ```
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jan 24 23:46:33 GMT 2023
    - 18.2K bytes
    - Viewed (0)
  5. docs/bucket/replication/setup_3site_replication.sh

    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for olockbucket a -> c : ${remote_arn}"
    ./mc replicate add sitea/olockbucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9006/olockbucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync" --priority 2
    sleep 1
    
    echo "adding replication rule for olockbucket c -> a : ${remote_arn}"
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 08:43:09 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  6. 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 Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 26.2K bytes
    - Viewed (0)
  7. docs/bucket/replication/DESIGN.md

    replication and ResetID. For saving iops, the objects which are re-replicated are not first set to `PENDING` state.
    
    This is a slower operation that does not use replication queues and is designed to walk the namespace and replicate objects one at a time so as not to impede server load. Ideally, resync should not be initiated for multiple buckets simultaneously - progress of the syncing can be monitored by looking at `mc replicate resync status alias/bucket --remote-bucket <arn>`. In the event...
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 14.7K bytes
    - Viewed (0)
  8. docs/bucket/replication/setup_ilm_expiry_replication.sh

    ./mc ilm rule list sitea/bucket
    
    ## Check ilm expiry flag
    ./mc admin replicate info sitea --json
    flag1=$(./mc admin replicate info sitea --json | jq '.sites[0]."replicate-ilm-expiry"')
    flag2=$(./mc admin replicate info sitea --json | jq '.sites[1]."replicate-ilm-expiry"')
    if [ "$flag1" != "true" ]; then
    	echo "BUG: Expected ILM expiry replication not set for 'sitea'"
    	exit 1
    fi
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 12:48:19 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  9. 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 Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Oct 06 06:00:43 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  10. 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 Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 20 09:05:54 GMT 2024
    - 112K bytes
    - Viewed (1)
Back to top