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
minio bucket private but objects public
We are using minio server on mac. We generate a presigned put url using node npm package and upload from a browser using a simple fetch call.
We want to keep the bucket private but inside objects (files) should be publicly available, How can we…

j10
- 2,009
- 3
- 27
- 44
0
votes
1 answer
Get the object from minio server without passing extra data into the URL
I'm working on an app and I upload photos to the minio server. I want to access them from the frontend and I cannot simply write a location of the object in the url because it returns an XML response that says "Access denied.", so I have to pass the…

Jakub Klimek
- 433
- 6
- 18
0
votes
1 answer
Parse a file to a variable from request body golang
I'm creating an API for uploading images to MinIO server and I need to send files in the request body. Then I need to get the file and pass io.Reader type variable into a function that will add it to the bucket. I don't know what data type I have to…

Jakub Klimek
- 433
- 6
- 18
0
votes
1 answer
How to set S3v2 api to Minio (AWS S3 local) in a docker-compose
My origin docker-compose is :
s3:
image: minio/minio
command: server /data --console-address ":9001"
ports:
- 9000:9000
- 9001:9001
networks:
- lambda-local
is it possible to set S3v2 by default when docker…

Stéphane GRILLON
- 11,140
- 10
- 85
- 154
0
votes
0 answers
How to connect big files from Minio bucket, split it into multiple files based on timestamp and store it back using Dask framework in python
I have a big text (with millions of record) as bz2 format in Minio bucket.
Now I am processing them demonstrated by the procedure below:
Call the file from Minio bucket;
Partition the files per day based on 'timestamp' column;
Remove some of the…

MALAM
- 37
- 7
0
votes
0 answers
HAProxy not load balancing S3 multipart uploads from mc (MinIO client)
Here's what I'm trying to do: I have a bunch of hosts running reverse proxied MinIO instances (using nginx) and I want to load balance requests by using HAProxy. I don't want to use TLS termination and instead terminate at the targeted hosts.
I used…

RobertL
- 76
- 1
- 6
0
votes
0 answers
I can not access from rust application to MinIO server that are built by docker on Intel NUC
I am developing a Rust application. And I am deploying a Intel NUC with docker. I am using Redis, RabbitMQ, Postgre sql with Rust application successfully on Intel NUC. And I can use Rust and MinIO on local development. But I can not access from…

Burak Dağlı
- 512
- 2
- 10
- 33
0
votes
0 answers
Restricting upload of any other file on s3 bucket except the file for which the presigned url is generated
I am using php to create a presigned url and send that to front-end and that uploads directly to s3 using that presigned url. I want to secure and restrict that upload.
for example I have created a presigned url for file "stack.txt" and I want the…
0
votes
1 answer
MinIO Uploading a file with name containing especial characters issues an HTTP 403 Forbidden
Uploading an object from a .net webclient to MinIO where the object contains special characters in the name issues an HTTP 403.
This object fails: old_me_bold+19(1).jpg
This object is ok: old_me_bold19.jpg
The message is:
The request signature we…

Pepe Marino
- 11
- 3
0
votes
1 answer
MinIO .Net client API failing with bogus General Exception
MinIO is returning a general exception when calling the API from a .net client. In the library parsing the xml fails telling me that "Client calls PutObjectAsync General Exception 'doctype' is an unexpected token. The expected token is 'DOCTYPE'"…

Pepe Marino
- 11
- 3
0
votes
1 answer
MINIO: GetVersions of the object
I'm a beginner in MinIO and I want to know Is there any way to get all versions of object? I ony have the name of the object, and I want to know what version it has?
Please help
EDIT: I use minio-dotnet-master

Konrad Mieszała
- 41
- 1
- 5
0
votes
2 answers
Can't get the data from the stream
I have some code that in which I build a minIO client and the I try to access an object through the getObject method and the perform other tasks. The thing is I can't get the data from the stream. I have tried to with Buffer.from and push the data…

George V
- 87
- 1
- 2
- 10
0
votes
1 answer
Is there any way to access the same minio UI which gets deployed by kubeflow from cloud shell?
In short, we have deployed kubeflow on GKE & as we know that minio comes pre-installed with kubeflow. On kubeflow UI, one can see that several pipeline artifacts are referencing minio for storage.In order to access that minio UI, I went on to expose…

Dubey Ashutosh
- 1
- 1
0
votes
1 answer
Nestjs this.minioClientService.upload is not a function
This is my minio-client.service:
@Injectable()
export class MinioClientService {
private readonly logger = new Logger(MinioClientService.name);
private readonly defaultBucketName = 'default';
constructor(private minio: Minio.Client) {}
…

ShaSha
- 589
- 3
- 9
- 24
0
votes
1 answer
How to connect airflow to minio s3
I'm trying to run docker containers with airflow and minio and connect airflow tasks to buckets defined in minio. I'm using the new versions - airflow 2.1.3 and the newest minio image.
How would I get the access key and access secret in minio for…

Marin
- 861
- 1
- 11
- 27