MinIO offers high-performance, S3 compatible object storage. Native to Kubernetes, MinIO is the only object storage suite available on every public cloud, every Kubernetes distribution, the private cloud and the edge. MinIO is software-defined and is 100% open source under GNU AGPL v3.
Questions tagged [minio]
906 questions
6
votes
5 answers
Minio bucket size
I want to calculate bucket size of minio.
is it possible to calculate storage quota using MinioClient?
or is there any best way to calculate bucket size of minio storage.
thanks in advance

shiva
- 75
- 1
- 7
6
votes
2 answers
Backing up Minio to S3
I'm setting up distributed Minio servers locally to use in a solution but would like to back them up to S3 regularly in case the local file system fails/just for more durability or just to migrate to AWS. The use case being we need an S3 compatible…

Rahul
- 61
- 1
- 3
5
votes
2 answers
MiniO docker container does not show files from local folder
I am trying to create a default bucket in MiniO docker container with my local files uploaded as a default content.
I have written a simple docker-compose file to run Minio client:
version: "2.0"
services:
minio:
image: 'bitnami/minio:latest'
…

Armando
- 91
- 1
- 7
5
votes
1 answer
Upload image to MinIO
I want to upload image with format .png to MinIo. But I have problem with error not find directory
Error: open /sensors/download (1).png: no such file or directory
I have created a directory file with sensor name inside minio bucket named…

Titanio Yudista
- 241
- 4
- 8
5
votes
0 answers
S3 Select with Presto
I am trying out S3 Select from Presto using hive connector and Minio Object store. I am able to create an external table and run all the SQL queries. But, S3 Select does not seem to be working, even with the hive.s3select-pushdown.enabled=true set…

Shreyas Bhagavath
- 51
- 2
5
votes
3 answers
Is aws-go-sdk-v2 integrated with local MinIO server?
How can I hook up my local minIO storage with aws-sdk-go-v2? I can find clear documentation of how to do that in the previous version of go SDK but not with V2. I read through the version 2 source code and it seems aws-sdk-go-v2 removed the option…

Susie
- 103
- 6
5
votes
2 answers
how to get the file link after successfully uploading in minio
I am using minio to manage the files
const getMinioClient = () => {
const minioClient = new Minio.Client({
endPoint: '127.0.0.1',
port: 9000,
useSSL: false,
accessKey: 'minioadmin',
secretKey: 'minioadmin'
});
return…

user824624
- 7,077
- 27
- 106
- 183
5
votes
1 answer
What is the progress object to upload functions on Minio?
I know that this can be a dumb question but, what's the Progress object that I must pass to MinIO to see the upload status of an object?
This documentation:
https://docs.min.io/docs/python-client-api-reference.html
The…

R. Karlus
- 2,094
- 3
- 24
- 48
5
votes
0 answers
Error while mounting local volume for docker services
I am deploying an application in an ubuntu instance of OCI.
I have a docker-compose file with named volumes for this.
There is a volume specification at the top-level and that named volume is mentioned in the nested-level under the…

AnjK
- 2,887
- 7
- 37
- 64
5
votes
3 answers
Creating a Minio(S3) container inside a github actions yml file
I am trying to create an Minio/S3 container so I can run my test suite as an action on github. I currently have the following:
name: Run Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
…

Robert Johnstone
- 5,431
- 12
- 58
- 88
5
votes
1 answer
Minio bucket failed to copy, Please reduce your request
I'm trying to mirror a minio bucket(70gb of images) to a local machine. while mirroring some images are skipped saying mc: Failed to copy {url}. Please reduce your request. Then that particular file is skipped. How can I mirror without…

Yasiru Dinuksha
- 53
- 1
- 4
5
votes
3 answers
How to run Apache Spark with S3 (Minio) secured with self-signed certificate?
I installed Minio (I installed Minio in Kubernetes using helm) with TLS using a self-signed certificate. Previsouly I was able to run my spark job with Minio without TLS.
Now it is not possible to conect to Minio (normal !)
Then, I created a…

Yassir S
- 1,032
- 3
- 21
- 44
5
votes
2 answers
Laravel s3 filesystem driver not using AWS_URL variable
I am trying to upload a file to an s3 compatible object storage (I'm using Minio) but the aws client in laravel doesn't use the url I provided in my .env AWS_URL variable.
AWS_URL=http://192.168.1.22:9000
I am using the artisan built-in server and…

hugo4715
- 85
- 1
- 1
- 9
5
votes
1 answer
Airflow/minio: How do I use minio as a local S3 proxy for data sent from Airflow?
Simple question:
Rather than using S3 or GCS, I'd like to know how to use minio as a local S3 proxy to hold Airflow-sent data. How do I do this? Can I use the FileToGoogleCloudStorageOperator or not really?
And if not this route for local storage…

jtlz2
- 7,700
- 9
- 64
- 114
5
votes
3 answers
How to make Minio-client (from host) talk with Minio-server(docker container)?
I am running a minio-server in the container of docker-compose. I am trying to upload a file to the minio-server in the container, from the host machine (Ubuntu) (instead of container) by using minio-client (python SDK).
I did not make it happen as…

mindcoder
- 377
- 3
- 11