MinIO AIStor vs MinIO OSS - Complete Technical Comparison (13,061 commits analyzed)
Analysis based on full commit history review of 13,061 commits
Analysis based on full commit history review of 2800+ commits
Client waits for replication to complete before receiving response.
ββββββββββ βββββββββββββββββββββββββββββββ ββββββββββββββ
β β PUT β SOURCE CLUSTER β β REMOTE β
β Client ββββββββββΊβ β β TARGET β
| ## template:jinja | |
| {# | |
| This file (/etc/cloud/templates/hosts.debian.tmpl) is only utilized | |
| if enabled in cloud-config. Specifically, in order to enable it | |
| you need to add the following to config: | |
| manage_etc_hosts: True | |
| -#} | |
| # Your system has configured 'manage_etc_hosts' as True. | |
| # As a result, if you wish for changes to this file to persist | |
| # then you will need to either |
| #!/bin/bash | |
| docker system prune -af --filter "until=8h" |
Previous
Outbound
βββββββββββββββββββββ ββββββββββββββββββ βββββββββββββββββ ββββββββββββββββββ
β β Parr. β β (http body) β β β β
β Bitrot Hash β Write β Pipe β Read β HTTP buffer β Write (syscall) β TCP Buffer β
β Erasure Shard β βββββββββββΊ β (unbuffered) β βββββββββββββΊ β (64K Max) β ββββββββββββββββββββΊ β (4MB) β
β β β β β (io.Copy) β β β
| version: '3.7' | |
| # Settings and configurations that are common for all containers | |
| x-minio-common: &minio-common | |
| image: quay.io/minio/minio:${RELEASE} | |
| command: server http://site1-minio{1...4}/data{1...2} | |
| environment: | |
| - MINIO_PROMETHEUS_AUTH_TYPE=public | |
| - CI=true |
| """ | |
| FTP benchmark. | |
| Usage: | |
| ftpbench --help | |
| ftpbench -h <host> -u <user> -p <password> [options] login | |
| ftpbench -h <host> -u <user> -p <password> [options] upload <workdir> [-s <size>] | |
| ftpbench -h <host> -u <user> -p <password> [options] download <workdir> [-s <size>] [--files <count>] | |
| Connection options: |
| #!/bin/bash \ | |
| i=1 | |
| sudo rm -f /tmp/fstab | |
| for disk in $(lsblk -i -p -n -o NAME | grep -v 'loop\|nvme0\|nvme1\|nvme2\|nvme3\|ubuntu\|md\|sda' | sort); do | |
| sudo mkdir -p /disk${i} | |
| sudo mkfs.xfs -f -L disk${i} $disk | |
| echo "LABEL=disk${i} /disk${i} xfs defaults,noatime 0 0" | sudo tee -a /tmp/fstab | |
| i=$(( $i + 1 )) |