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
2 answers
How can I set lifecycle rule for object (minIO)?
I'm looking for solution that allow me to set lifecycle policy for object in minio storage.
What do I want?
I want to delete objects from minIO storage after 30 min.
Possible, but not suitable solution
Chronos + mc rm -f --older-than 30m.
AWS S3…

ikanaide
- 117
- 3
- 8
2
votes
0 answers
minio upgrade issue xml invalid
Task: Trying to upgrade from minio.netcore 1.1.1 client to minio client 3.1.13
Problem: When i try to create a bucket with the new client I get the following excpetion thrown:
MinIO API responded with message=The XML you provided was not well-formed…

Mr Giggles
- 2,483
- 3
- 22
- 35
2
votes
4 answers
random.choice prints always the same result
i'm pretty new to python but i know how to use most of the things in it, included random.choice. I want to choose a random file name from 2 files list.
To do so, i'm using this line of code:
minio = Minio('myip',
access_key='mykey',
…

MATTIA ANTONACCI
- 19
- 5
2
votes
1 answer
Is there any way to deal with Minio file by sql-based statements?
I am new on Minio and object based databases.
I know that there is S3 select API but I want to add a new row or update a specific row in CSV file in Minio without need to download it and upload again.
Is there any way to do it?
In another words, I…

Hazem
- 342
- 1
- 5
- 19
2
votes
2 answers
Minio / Keycloak integration: connection refused
I am trying to connect MinIO with KeyCloak and I follow the instructions provided in this documentation:
https://github.com/minio/minio/blob/master/docs/sts/keycloak.md
What I have done so far is deploy a Docker container for the MinIO server,…

csymvoul
- 677
- 3
- 15
- 30
2
votes
1 answer
Minio UI disable public listing of all bucket which has readonly policy
In Minio I have a bucket that has a read-only policy, but I do not want to be viewed in Minio Browser without authentication.
Is it possible?

namaiiee
- 61
- 7
2
votes
1 answer
Is there a way how to search filename in Minio API/SDK?
I'm trying to use Minio as storage for our manufacturing data. I planned to create a bucket with name "color" and I want to store measurement data file 160f33fa03fa8.csv(its just a unique id from our other system) and it will be nice to insert date…

Tibor
- 81
- 1
- 7
2
votes
3 answers
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1108)
I'm trying to run a simple python script to access s3 buckets in minio server in WINDOWS. The server is using self signed certificate. There's an error in SSL handshake. I have tried all possible ways to correct it but it's still throwing the…

Arsha
- 77
- 2
- 5
- 11
2
votes
0 answers
MinIO integration with KMS using Java SDKs
I am new to MinIO and trying to use Java based SDKs (MinIO and/or Amazon SDK).
For normal files it is working fine, but when I try uploading a file with SSE-C (i.e. with KMS client provided key id), I am getting this error (in case of Amazon…

Jawwad
- 21
- 4
2
votes
1 answer
write parquet files to s3 minio is very slow
A simple code takes around 130 seconds to write s3-minio, while write to local disk takes 1 second only. anything wrong?
I have followed this post but doesn't help
https://docs.min.io/docs/disaggregated-spark-and-hadoop-hive-with-minio.html
Run with…

jon
- 395
- 1
- 3
- 21
2
votes
0 answers
docker minio fails at start with error : "disk path full"
I have a docker base on minio, when it starts locally on my mac i got the following error:
Error: disk path full
10: cmd/fs-v1-helpers.go:320:cmd.fsCreateFile()
9: cmd/fs-v1.go:905:cmd.(*FSObjects).putObject()
8:…

Tuz
- 1,810
- 5
- 29
- 58
2
votes
1 answer
How to save panda data frame as CSV in MinIO.?
I am new in MinIo and i am using minio python library and trying to save panda data frame as CSV.
as per there documentation, I am using put_object to insert the data in remote cloud location. below is my code.
from minio import Minio
from…

om tripathi
- 300
- 1
- 5
- 20
2
votes
1 answer
How to upload a file with a presigned URL to an object storage minio with a Java client Api?
I want to upload a file to an object storage minio which created a presigned URL using a Java client API.
In the documentation only refers to creating presigned URL or creating some. Is there a to upload using the presigned url.

A.Dumas
- 2,619
- 3
- 28
- 51
2
votes
4 answers
Laravel cant delete file in remote url using Storage::('s3')->delete($files); but can delete when using aws command
I want to delete these files in my laravel like this. But it doesnt work!!
use Storage;
class SomeController extends Controller
{
public function delete()
{
$filesToDelete = [
…

Ricardinho
- 599
- 9
- 22
2
votes
2 answers
How to remove a path in Minio storage using python SDK?
I can delete an object in minio using below command.
from minio import Minio
from minio.error import ResponseError
minioClient = Minio('localhost:9000',
access_key='your-key',
secret_key='your-key',…

ajayramesh
- 3,576
- 8
- 50
- 75