Questions tagged [minio]

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.

MinIO offers high-performance, S3 compatible object storage on any cloud environment.

Resources :

  1. Official Website
  2. GitHub
  3. License and Paid (SLA backed) Support
  4. Community support
906 questions
1
vote
0 answers

Access minio bucket through minio client from

I have Minio operator installed on Kubernetes cluster. I am trying to mc alias set for minio in distributed mode. I understand that for single node minio we use the command: mc alias set ALIAS HOSTNAME ACCESS_KEY SECRET_KEY I was wondering how do I…
Devaddy
  • 45
  • 6
1
vote
1 answer

How to expand docker minio node for DISTRIBUTED_MODE?

Name and Version bitnami/minio:2022.8.22-debian-11-r1 The docker startup command is as follows, the initial node is 4, it is running well docker run -d --restart=always --name minio --network host \ --ulimit nofile=65536:65536 \ …
AEGG
  • 23
  • 3
1
vote
1 answer

Is there an any option to get a file unique by Etag in minio

I am currently making some progress in MinIO. Is there any way I can get the object by an Etag which is available for each object after uploading.. so that I can identify the thing uniquely!! The existing way am using is to get the object only by…
DIVAKARAN
  • 46
  • 1
  • 6
1
vote
1 answer

How to upload byte[] to Minio

public async Task Put(byte[] data) { var args = new PutObjectArgs { }; args.WithBucket("buckethead"); args.WithObject(Guid.NewGuid.ToString()); args.WithRequestBody(data); args.WithContentType("application/vnd.ms-excel"); …
Nick Farsi
  • 366
  • 4
  • 19
1
vote
0 answers

Hadoop/Swift/Minio... Choosing Large Object Storage solution

I'm laying out a triple-store centric architecture which is, as you may now, one of the last places in the world you would place large binaries (32mo pictures to ~50-150Go point-clouds and simulation models). Hadoop performance is well known and…
1
vote
2 answers

Is there any way i can generate minio preSignedUrl for permanent time

Hello everyone can you please guide me how can i generate permanent preSignedUrl link from minio server to access the object for long time. because i am using preSignedUrl in my application to preview the object. thanks
umer
  • 49
  • 2
  • 8
1
vote
0 answers

Python: Force minio throw error on connection error while (f)putting

I want the minio-client to throw an error if a connection error occurs while putting data to the minio-server. It correctly returns an error when setting up a connection and the server is down. But if I disconnect the network while uploading…
JakeRoberts
  • 53
  • 2
  • 9
1
vote
1 answer

How to connect to MinIO filesystem in Flink sql client?

I'm trying to build data pipeline built with Flink and MinIO as the storage, currently I can sink the data to MinIO bucket success, but when I try to create a table WITH the minio file, it always encountered the Connection Refused error: Flink SQL>…
Liping Huang
  • 4,378
  • 4
  • 29
  • 46
1
vote
1 answer

minio admin panel error Get "": unsupported protocol scheme ""

I build a folder in C:\minio and I run minio with the following command minio server c:\minio\ but I'm getting this error in minio admin panel Get "": unsupported protocol scheme ""
regestea23
  • 456
  • 6
  • 19
1
vote
1 answer

Minio & console behind Traefik reverse proxy

I'm trying to get an instance of MinIO working on my Docker Compose stack with a Traefik reverse proxy. The docker compose for MinIO and Traefik look like this: traefik: container_name: traefik image: traefik:2.2.1 restart:…
1
vote
0 answers

How can I make a Django application connect to a minio server when both are behind an nginx proxy and inside individual docker containers?

Goal Access minio server via subdomain from Django server in docker environment (both minio server and Django server are behind nginx proxy) Expected result: Django can access minio server using the subdomain specified in nginx. I can successfully…
Greennerd
  • 11
  • 1
  • 2
1
vote
1 answer

minio presignedPutObject generated URL only valid for days, how to make it public always without days restriction

I am working on Minio server, using presignedPutObject method can generate a public visiting URL, however this URL can only work for 7 days by default, I tried to extend it to 30 days but restricted. so how would I try to make all the uploaded files…
user824624
  • 7,077
  • 27
  • 106
  • 183
1
vote
0 answers

How does MinIO deals with sharding?

I have been using MinIO for a while now, but I have always used it for smaller than 1GB files. I have a MinIO setup with 4 VMs each one with 2 disks (each disks of 100GB), and I would like to know if there is any problem if I try to copy files…
k.Cyborg
  • 155
  • 10
1
vote
1 answer

Unable to retrieve MinIO Object through Apache camel

I'm facing a problem retrieving an Object from MinIO Server through Apache Camel . I'm using a "third party" library (that I cannot change directly) which use the following approach to connect to camel and download objects: ConsumerTemplate template…
Stefano
  • 129
  • 2
  • 14
1
vote
0 answers

Limit upload speed for MiniO (node.js)

I need set a limit for upload speed for a script that uploads videos to a S3 (MiniO). I tried with 'speed-limiter' and 'bandwidth-throttle-stream' and doesn't work. I want to limit the upload speed to 8MB/s (This is my first node.js script) const…