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
2
votes
1 answer
Minio install behind Traefik
I had the previous version (from last yr) of minio running well behind traefik and on portainer with no issues. I attempted an upgrade 4 days ago to the new version and it's been downhill since then. I get the login page but it won't accept…

Papa Kojo
- 793
- 8
- 18
2
votes
0 answers
Error that send files into Minio Object Storage
I am trying to send files into Minio Object storage Using Apache NiFi.
Here are the scenario example:
Create files using NiFi GenerateFlowFile processor
Send the created files into Minio Object Storage using NiFi PutS3Object processor
Note: In…

techNerd
- 23
- 3
2
votes
1 answer
Starting up Spark History Server to write to minIO
I'm trying to get Spark History Server to run on my cluster that is running on Kubernetes, and I'd like the logs to get written to minIO. I'm also using minIO as storage of the input and output of my spark-submit jobs, which is working…

Koedlt
- 4,286
- 8
- 15
- 33
2
votes
1 answer
How can I upload via curl to an S3 presigned url using the v3 api?
I'm trying to use the v3 api to create a pre signed url for uploading. I am able to use this config to access other parts of the api just fine.
I'm running minio in a docker container and my code is running in another container.
Below is how I'm…

justin.m.chase
- 13,061
- 8
- 52
- 100
2
votes
0 answers
Cannot access external IP of Load Balancer in a Kubernetes cluster
I created a load balancer service and the describe command returns the following:
Name: minio-service
Namespace: minio
Labels: app=minio
Annotations:
Selector: …

e7lT2P
- 1,635
- 5
- 31
- 57
2
votes
1 answer
Load Balancer External IP is the same as Internal IP of node in K3s cluster
I have already setup a service in a k3s cluster using:
apiVersion: v1
kind: Service
metadata:
name: myservice
namespace: mynamespace
labels:
app: myapp
spec:
type: LoadBalancer
selector:
app: myapp
ports:
- port: 9012
…

e7lT2P
- 1,635
- 5
- 31
- 57
2
votes
1 answer
AWS S3 java SDK: Can't create bucket
I'm tring to create a bucket with following code:
S3 backend i'm using is minio
runCatching {
bucket = configuration.getString("storage.bucket")
s3Client = AmazonS3Client.builder()
…

lamadaemon
- 65
- 1
- 7
2
votes
1 answer
why do I get empty by calling get_object(self._bucket_name, object_name) of Minio?
I am using S3 cluster. My SDK is Minio. My client code is:
_client = Minio(domain, access_key=access_key, secret_key=secret_key)
I can fetch the file and save to my local from S3 cluster by calling _client.fget_object(self._bucket_name,…

taichi_tiger
- 809
- 1
- 7
- 18
2
votes
0 answers
Cant connect to https minio container from laravel container
I have a laravel application running which tries to upload files to a local minio server which runs on https on port 9001.
This happens on a server with a public domain name we shall call foo.bar.com.
In the host machine (outside my docker…

Peerdb
- 21
- 2
2
votes
1 answer
Kuzzle / Minio example usage
Dose the Kuzzle or Minio development teams have a working example of using the Kuzzle S3 plugin for Minio? I have the following but my file isnt being uploaded and the pre-signed url is referring to…

Chris Jackson
- 718
- 1
- 6
- 14
2
votes
1 answer
How to list_objects in aiobotocore not recursively
I have the following code for getting a list of objects.
paginator = self.client.get_paginator('list_objects')
async for result in paginator.paginate(Bucket=bucket_name, Prefix=prefix):
for file in result.get('Contents', []):
yield…

Fyzzys
- 756
- 1
- 7
- 13
2
votes
1 answer
How to create empty folder/object or new file in new folder (not upload) in Minio using Java Api
I am using Java API (https://docs.min.io/docs/java-client-api-reference.html) to use Minio Client.
I want to create a new folder and a new file (empty or sample text) in existing bucket. How do I do it?
Please note that I do not want to upload any…

Mihir
- 531
- 2
- 10
- 35
2
votes
2 answers
How can I change bucket name in MinIO?
I have a Minio cluster that we you as on-promise object storage, We want to change bucket name in it, How do I do this?

Ali
- 337
- 1
- 5
- 15
2
votes
1 answer
MINIO on localhost?
I want to set up MinIO as my Django app object storage, and I want to test the functionality of this module on my computer (localhost). I follow the instruction in django-minio-backend, but I got the below error.
raise MaxRetryError(_pool, url,…

Zahra Hosseini
- 478
- 2
- 4
- 14
2
votes
1 answer
Why am I getting error creating object in Minio?
I'm trying to create an object in Minio. Sometimes it works and sometimes no.
When I execute :
minioClient.makeBucket(bucketName); // bucketName es a random unique string
I don´t get error, but if If ask Minio if bucket…

Víctor
- 416
- 5
- 15