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
0
votes
1 answer
Different MinIO disk cache configuration for each bucket
I got a challenge to setup a simple object storage server or cdn, especially for storing and loading (via API) any PNG, TXT, and TIFF files, the server have docker and kubernetes both running. I am new to MinIO but managed to install a fresh MinIO…

aswzen
- 1,512
- 29
- 46
0
votes
1 answer
Context of using Object Storage
Can someone please give me a solid use case example (in terms of performance/scalability/reliability) that an Object Storage FS should be used over Block Storage FS?
I am so confused since PM wants us to use MinIO in a company's project, but didn't…

GreenLake4964
- 744
- 9
- 20
0
votes
1 answer
minio - s3 - bucket policy explanation
In minio. when you set bucket policy to download with mc command like this:
mc policy set download server/bucket
The policy of bucket changes to:
{
"Statement": [
{
"Action": [
"s3:GetBucketLocation",
"s3:ListBucket"
],
…

bluemmb
- 85
- 1
- 9
0
votes
1 answer
Bucket policy with Minio
please note: I am not using AWS as the S3 provider but something called Cegedim S3.
Following operation is not working with Minio client but with boto3 it's working.
When I am trying to setup the following policy with Minio client it works for the…

Januka samaranyake
- 2,385
- 1
- 28
- 50
0
votes
1 answer
copy object from minio bucket to S3 bucket
I'm trying to use native boto3 to copy objects from Minio bucket to aws s3 bucket. I have seen that the protocol is exactly the same but the problem with the buckets endpoint. I know it can be possible through mc client but i want to use native…

aly khaled
- 13
- 3
0
votes
1 answer
Minio CURLE_PEER_FAILED_VERIFICATION
I have opened a forum post in virtualmin, because I told that my Issue is related to their software, but seems the problem comes from MINIO.
They said "Probably best to ask within the minio community", but I can't find minio forum and my minio is…

xlameee
- 1
- 4
0
votes
1 answer
Pyspark writing to minio (s3) partitioned fails
I am writing files into Minio S3 using pyspark 3.1.2 with.
I am using partitioning so data shall be stored in batch_id's eg:
s3a://0001/transactions/batch_id=1
s3a://0001/transactions/batch_id=2
etc.
Everything works perfectly fine when writing to…

Mateusz
- 101
- 1
- 6
0
votes
1 answer
Spark on Kubernetes with Minio - Postgres -> Minio -unable to create executor due to
Hi I am facing an error with providing dependency jars for spark-submit in kubernetes.
/usr/middleware/spark-3.1.1-bin-hadoop3.2/bin/spark-submit --master k8s://https://112.23.123.23:6443 --deploy-mode cluster --name spark-postgres-minio-kubernetes …

Rafa
- 487
- 7
- 22
0
votes
0 answers
Create TLS self-signed certificate for MinIO in Kubernetes cluster
My goal now is to create a TLS certificate for MinIO in my k8s cluster.
Link to MinIO requirements for TLS connection - up to date.
MinIO running through port-forward to get into the service in the cluster.
There is a cert-manager chart installed…

n1vgabay
- 91
- 1
- 11
0
votes
1 answer
aws s3 cpp sdk finning connection with minio after handshake wih tls 1.2
I'm working with a MINIO server and AWS cpp SDK client.
Everything works with HTTP, but after switching to HTTPS I'm getting "NETWORK CONNECTION" errors.
In Wireshark the connection is:
client Hello
server hello
server sends Certificate , Server…

tami h
- 21
- 1
0
votes
1 answer
Distributed MINIO deployment duplicates server in pool
I want to run minio cluster for tests, this cluster should contain 2 servers with 4 drives each.
For this purpose was selected minio setup as systemd service.
Both servers has same configuration in /etc/default/minio file:
# Volume to be used for…

user3007501
- 283
- 1
- 4
- 13
0
votes
1 answer
minio ilm configuration suggestion needed
Hello Im working with minio these days and found out there is a feature which configures the life cycle of the minio objects, which is called ilm. And I can set the storage class as the tier to transit the object data to it.
the official explanation…

Jinyu
- 1
0
votes
1 answer
MinIO operator on minikube is not working
I'm trying to use the MinIO operator on a minikube (1 node) deployed in an EC2 machine.
The operator is deployed correctly and the same is for the tenant creation and it seems all good until I try to make a connection to the created tenant.
In this…

Salvatore Coluccia
- 85
- 5
0
votes
1 answer
MissingContentLength response from Minio on PUT to presigned URL
When trying to perform a PUT request to a pre-signed Minio URL using the golang httpClient library the following error is returned:
You must provide the Content-Length HTTP…
MissingContentLength

Cirrith
- 147
- 11
0
votes
1 answer
How to solving TypeError: metaData should be of type "object" on upload to minio
I want to upload a file to minio, but when I run it I get an error like this
TypeError: metaData should be of type "object"
at Client.fPutObject (/Users/berliana/Documents/nodejs-simple-file-upload/node_modules/minio/dist/main/minio.js:1210:15)
…