Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BandwidthLimit (1.05 sec)

  1. cmd/bucket-targets.go

    	}
    	if !found && !update {
    		newtgts = append(newtgts, *tgt)
    	}
    
    	sys.targetsMap[bucket] = newtgts
    	sys.arnRemotesMap[tgt.Arn] = arnTarget{Client: clnt}
    	sys.updateBandwidthLimit(bucket, tgt.Arn, tgt.BandwidthLimit)
    	return nil
    }
    
    func (sys *BucketTargetSys) updateBandwidthLimit(bucket, arn string, limit int64) {
    	if limit == 0 {
    		globalBucketMonitor.DeleteBucketThrottle(bucket, arn)
    		return
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  2. cmd/admin-bucket-handlers.go

    				tgt.Path = target.Path
    			case madmin.BandwidthLimitUpdateType:
    				tgt.BandwidthLimit = target.BandwidthLimit
    			case madmin.HealthCheckDurationUpdateType:
    				tgt.HealthCheckDuration = target.HealthCheckDuration
    			}
    		}
    		target = tgt
    	}
    
    	// enforce minimum bandwidth limit as 100MBps
    	if target.BandwidthLimit > 0 && target.BandwidthLimit < 100*1000*1000 {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Feb 18 16:25:55 UTC 2025
    - 33.3K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    				bucketTarget := target
    				bucketTarget.Secure = ep.Scheme == "https"
    				bucketTarget.Endpoint = ep.Host
    				if peer.DefaultBandwidth.IsSet && target.BandwidthLimit == 0 {
    					bucketTarget.BandwidthLimit = int64(peer.DefaultBandwidth.Limit)
    				}
    				if !peer.SyncState.Empty() {
    					bucketTarget.ReplicationSync = (peer.SyncState == madmin.SyncEnabled)
    				}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 184.7K bytes
    - Viewed (0)
Back to top