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
How to compressed file in Minio (Spring, Docker)
I have a Spring project that runs in Docker, back, web are launched through the docker-compose file, minio is also there, I don't know how to set up compression, I tried all the different options, it doesn't work. Please help)
This is my…

Limbo1111
- 9
- 4
0
votes
2 answers
How to get object from MinIO response?
I am using python API to save and download model from MinIO. This is a MinIO installed on my server. The data is in binary format.
a = 'Hello world!'
a = pickle.dumps(a)
client.put_object(
bucket_name='my_bucket',
…

Kunal
- 196
- 3
- 8
0
votes
1 answer
Minio too many open files, please increase 'ulimit -n'
1、when I visit the minio by brower,the log is following.
returned an error (too many open files, please increase 'ulimit -n')…
0
votes
1 answer
How does MinIO replicate compressed objects
I am trying to better understand how server-side bucket replication works w.r.t to compressed objects. Seemingly, MinIO does not (yet) support compressed transfer between client and server (https://github.com/minio/minio/issues/6880).
I'm storing…

Rüdiger Herrmann
- 20,512
- 11
- 62
- 79
0
votes
1 answer
can't connect on minio with node js
i tried to connect on minio with node js using minioClient
this is my code
Minio.js
const Minio = require('minio')
const minioClient = new Minio.Client({
endPoint: 'xxxxxx',
port: 9000,
useSSL: true,
accessKey: 'xxxxxx',
secretKey:…

Fabien
- 1
- 1
0
votes
1 answer
Password protect an Amazon S3 share link , is it possible?
We are trying to host Minio S3 as our public shared file repo.
Management is asking to put a password on top of shared links to secure confidential data.
Is it possible to protect Minio S3 share link with credentials ?

James Arems
- 87
- 3
- 11
0
votes
1 answer
Browser won't play video streamed from Node
I'm trying to stream a video from a minio bucket (very similar to S3) through my app's Node server to a browser (tried Firefox 89 and Chrome 91). The problem is the video seems to load successfully but when I click the play button the video plays…

SimpleJ
- 13,812
- 13
- 53
- 93
0
votes
1 answer
How to retrieve complete Data from the folders that has subfolders. in minio?
using
objects = s3Client.list_objects("sample", "samplefolder/sample1")
i managed to get into the folder,
but i want to print/download the files in the folders that is sorted out with timestamp subfolders.
any idea on how to solve this ?

Styleeeeez
- 1
- 1
0
votes
1 answer
How to Access minio bucket using Python API, Read in all the folders and write them as a database?
I would like to access Minio using python API, read in all the folders,files,directories within in Minio Bucket
Ingest them into the script and write them into the database
any help would be really appreciated

Styleeeeez
- 1
- 1
0
votes
1 answer
Need help to add url path as an endpoint point for minio
I have deployed standalone Minio in a server. I also have my backend running in it. So the enpoints would be something like this:
Minio URL: https://example.com/minio
Backend URL: https://example.com/api
When I tried to setup Minio configuration…

Kousika Ganesan
- 539
- 1
- 6
- 22
0
votes
0 answers
Download as zip from Minio
I'm trying to create a zip file from the object path I'm passing to minio. In minio objects are stored as paths, i.e. my/path/to/file.jpg.
private void zip(HttpServletResponse response, String bucket, String path) {
try (ZipOutputStream zos = new…

Forin
- 1,549
- 2
- 20
- 44
0
votes
1 answer
How to do server side encryption while uploading file in MinIO using Java
I am able to upload the file on MinIO Server using Java and facing absolutely no problem in it.
But my Requirement is to encrypt the file (Object) before storing in MinIO Server (SSE-C). Basically I am looking for a sample code to do so which is…

user2320488
- 11
- 3
0
votes
0 answers
minio on AKS - unable to mount the volume
I am trying to spin minio pods on AKS service, the pod runs for keeps crashing, here are the detailed logs:
Waiting for a minimum of 2 disks to come online (elapsed 0s)
Waiting for a minimum of 2 disks to come online (elapsed 0s)
Waiting for a…

Abhishek Anvekar
- 338
- 1
- 5
- 18
0
votes
1 answer
Minio removeObject
I'm trying to programmatically remove something from my S3 bucket, and I'm using Minio to facilitate it.
When I run minioClient.removeObject() like…

Stuff
- 47
- 1
- 1
- 4
0
votes
1 answer
Access Minio from outside the Kubernetes cluster
I deployed Minio on Kubernetes by using the new operator:
helm repo add minio https://operator.min.io/
helm install --namespace minio-operator --create-namespace --generate-name minio/minio-operator
kubectl apply -f…

SkuPak
- 307
- 8
- 16