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
3
votes
1 answer
How to setup MinIO Server to use Virtual Hosted-Style
I'm using aws-sdk-go (https://github.com/aws/aws-sdk-go) to connect so AWS S3. I also want to support MinIO (http://minio.io/) through the same code. But due to some restrictions on my part I can't use S3ForcePathStyle flag in config. Is there any…

abhijit wakchaure
- 390
- 2
- 17
3
votes
0 answers
Cannot enable TLS for minio on local docker
Currently trying to enable TLS on docker image locally. I am using the S3 gateway to enable access S3 via. minio.
Working from windows box.
Ran the following commands to create public.crtt under C:\Users\/mnt/config/certs
openssl genrsa…

cheddarDev
- 232
- 1
- 7
- 22
3
votes
1 answer
Node.JS how to create parquet file and save to Minio
Taking the example below from the NPM documentation (https://www.npmjs.com/package/parquets), how would I write the resulting parquet file directly to minio. I want to avoid writing the parquet file to disk and then a second operation to move the…

PrestonDocks
- 4,851
- 9
- 47
- 82
3
votes
3 answers
Download entire directory in a bucket of MinIO
Here is my MinIO tree
bucket1
|
|-dir1
|-dir2
|-file1
|-file2
|-file3
I want to download the entire directory "dir2" using python API.
The only way I can think of is to download files one by one. Is there another way / API call to…

warunapww
- 966
- 4
- 18
- 38
3
votes
1 answer
ImportError: cannot import name Minio
I am using minio 5.0.1 with this command:
pip install minio
But I still get this error
Traceback (most recent call last):
File "minio.py", line 2, in
from minio import Minio
File "/root/minio.py", line 2, in
from…

Quang Vũ
- 109
- 1
- 3
- 10
3
votes
1 answer
How to we send a file (accepted as part of Multipart request) to MINIO object storage in python without saving the file in local storage?
I am trying to write an API in python (Falcon) to accept a file from multipart-form parameter and put the file in MINIO object storage. The problem is I want to send the file to Minio without saving it in any temp location.
Minio-python client has…

impromptu_user
- 41
- 4
3
votes
2 answers
Change minimum upload part size of minio server
there is a limitation of 5MB per part of multipart upload on S3 API. Is there any solution to change this limitation on minio?

meshkati
- 1,720
- 2
- 16
- 29
3
votes
2 answers
How do I set the minio domain for pre-signed URLs?
I'm using minio in Kubernetes and it works great. However, I can't seem to to change the domain and protocol for a pre-signed URL. Minio keeps giving me http://minio.test.svc:9000/delivery/ where as I want https://example.com/delivery. I've tried…

Jason Leach
- 3,889
- 7
- 37
- 54
3
votes
1 answer
.Net Core Swashbuckle skip authorization header on redirects
In a .Net Core web API I integrated Swagger using Swashbuckle. The API is protected so one will need to authorize and login before doing some requests in the Swagger UI. This all works great.
Now one API call creates a presigned URL and returns an…

monty
- 7,888
- 16
- 63
- 100
3
votes
2 answers
Is it possible for running pods on kubernetes to share the same PVC
I've currently set up a PVC with the name minio-pvc and created a deployment based on the stable/minio chart with the values
mode: standalone
replicas: 1
persistence:
enabled: true
existingClaim: minio-pvc
What happens if I increase the number…

vhflat
- 561
- 6
- 19
3
votes
0 answers
Cannot see MinIO metadata in MinIO Browser
I am able to upload an object to bucket successfully but when I add custom metadata along with object I don't find metadata in minio browser.
S3Client = new aws.S3 //config
var metaData = {
'X-Amz-Meta-Test': "some-value"
};
…

Sid
- 31
- 3
3
votes
0 answers
Docker-Compose Entrypoint Using Command Exit Code As A Failure Detection Mechanism For A Dependent Service, Always Exits With 0
I am using docker-compose to start a minio service and a minio/mc service (createbuckets) to create a default bucket. For minio failure detection, I am using the exit code of the mc command that adds a host to the config for failure detection. The…

dcs3spp
- 493
- 1
- 9
- 23
3
votes
3 answers
How to move an object from one bucket to another?
I have a big amount of objects stored in Minio. I need to move them from one bucket to another. Due to the big amount of the objects (and the size of the objects themselves), I do not want to upload them into memory.
The only way I found so far is…

yaskovdev
- 1,213
- 1
- 12
- 22
3
votes
2 answers
Webflux FileUpload Minio
I'm trying to work out why a file upload to minio (S3 compliant document store) via a WebFlux endpoint doesn't complete; I always only get 4kb of the file into Minio.
My endpoint:
public Mono uploadFile(ServerRequest request) {
…

Anthony Ikeda
- 534
- 2
- 6
- 11
3
votes
1 answer
gitlab-ci cache on kubernetes with minio-service not working anymore
I'm running gitlab 10.4.3 with gitlab-runner 10.4.0 as a kubernetes deployment with kubernetes runner and a minio-server for caching. I installed it according to the gitlab docs.
Everything worked with the cache as expected, when adding the…

Lars
- 5,757
- 4
- 25
- 55