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
How to bulk remove objects in minio with golang
I'm trying to bulk remove objects in minio as described here:
objectsCh := make(chan minio.ObjectInfo)
// Send object names that are needed to be removed to objectsCh
go func() {
defer close(objectsCh)
// List all objects from a bucket-name…

Avag Sargsyan
- 2,437
- 3
- 28
- 41
2
votes
1 answer
Minio deployment using kubernetes doesn't work as expected
I'm experimenting with kubernetes and a minio deployment. I have a k3s 4 node cluster, each one with 4 50GB disk. Following the instructions here I have done this:
First I installed krew in order to install the minio and the directpv operators.
I…

k.Cyborg
- 155
- 10
2
votes
1 answer
Can Minio decide to delete files for some reason?
I have a Minio Replicated system with 4 nodes.
It worked well for about 1 year. Then, recently, after some curruption and uploading errors, it has been decided to upgrade the Minio version several times during the last two weeks to check if the…

Ilario_847
- 23
- 3
2
votes
0 answers
How to connect to MinIo server using temporary credentials and ASW S3 client in C#?
I am able to connect to MinIo bucket and upload objects using AWS SDK and S3 client by passing MinIo credentials in C#.
{
AuthenticationRegion = RegionEndpoint.USEast1.SystemName,
ServiceURL = minioURL,
…

dotnet developer
- 65
- 6
2
votes
1 answer
K8s deployment Minio How to access the Console?
How do I access the Minio console?
minio.yaml
apiVersion: v1
kind: Service
metadata:
name: minio
labels:
app: minio
spec:
clusterIP: None
ports:
- port: 9000
name: minio
selector:
app: minio
---
apiVersion: apps/v1
kind:…

seth
- 23
- 4
2
votes
1 answer
Issue with okhttp and minio 3.x packages
I have a Java 8 project using Maven to import io.minio minio package. We have been using minio package 8.2.1 but due to this vulnerability we are trying to update this package to a newer version. After trying to update to any of the 8.3 versions, I…

qlangman
- 43
- 7
2
votes
1 answer
Get list of objects from S3 bucket using Minio in .Net
I'm using Minio .Net SDK (v 3.1.13) in a web app to get buckets and files storage at IONOS Cloud Storage. It uses the AWS S3 specifications.
I can check is a bucket exists and its contents, but just only the first time after compilation. Next times…

Pyrus
- 95
- 1
- 7
2
votes
1 answer
Apache Flink with S3 Minio state backend - Cannot run the job locally from IntelliJ IDEA
Is it possible to run an Apache Flink job with a S3 state backend locally from a development environment?
The IDE I'm using is IntelliJ IDEA.
I created the project from the following Maven archetype:
…

Kubus
- 677
- 6
- 18
2
votes
3 answers
Minio with laravel, bucket name prefixed as a subdomain on a local server
I'am using minio for file storage, also i've configured it all using docker-compose. My laravel filesystem configuration file looks like this.
's3' => [
'driver' => 's3',
'key' => '',
'secret' => '',
'region' =>…

pandesantos
- 339
- 2
- 13
2
votes
1 answer
How can I access MinIO files on the file system?
On the underlying server filesystem, MinIO seems to store the content of an uploaded file (e.g. X) in a file called xl.meta in a directory bearing the original file name (e.g. X/xl.meta).
However, the file xl.meta is encoded. How can I access the…

Polgar Smitt
- 21
- 1
- 3
2
votes
2 answers
Minio deployment in Microk8s does not start properly
I'm trying to deploy a Minio instance (not the operator) on a kubernetes server (Microk8s) using the helm chart provided in https://github.com/minio/minio/tree/master/helm/minio.
To match with my test server, I did some modifications :
The number…

Rémi Borredon
- 21
- 1
- 2
2
votes
1 answer
minio create and list a bucket with curl
For automation, I want to create some standard buckets in minio, without having a minio client available in the specific environments, as not all machine have the necessary clients installed or maintained.
How would I call "bucket create" with curl?…

Mandragor
- 4,684
- 7
- 25
- 40
2
votes
0 answers
Cannot log sklearn model to minio (s3) server
My docker-composed setup consists of 3 containers - mlflow + minio(s3) + mysql and I am trying to run a simple sklearn training model python script from within the mlflow container and it works fine but for the last line below -
import pandas as…

ZeroGraviti
- 1,047
- 2
- 12
- 28
2
votes
1 answer
Minio Spark Integration
I am trying to load data using spark into the minio storage -
Below is the spark program -
from pyspark.sql import SparkSession
from pyspark.sql.functions import *
from pyspark.sql.types import *
from datetime import datetime
from pyspark.sql import…

Rafa
- 487
- 7
- 22
2
votes
1 answer
How to find minio objects by tag?
I am using minio mc client. There is possible to use mc find command to find minio files or objects. But I can't find how to find or filter files by theirs tags. Any idea?
NAME:
mc find - search for objects
USAGE:
mc find PATH [FLAGS]
FLAGS:
…

kolisko
- 1,548
- 3
- 17
- 22