Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
0 answers
59 views

I encountered a SignatureDoesNotMatch issue when switching MinIO from Docker Run to Docker Compose. I'm using PresignedUploadURLs to upload files from the frontend (React/Axios). I've tried all the ...
0 votes
1 answer
89 views

I got a strange error in my pytest after some Dependabot updates. In my case it's triggered by an non-existent MinIO bucket exception. None of the updates made by Dependabot were in MinIO or Python (...
5 votes
3 answers
19k views

Here is my MinIO tree bucket1 | |-dir1 |-dir2 |-file1 |-file2 |-file3 I want to download the entire directory "dir2" using python API. The only way I can think of is to download files ...
0 votes
3 answers
2k views

I ran minio as a docker container using the latest image from https://hub.docker.com/r/minio/minio: docker run -d -p 9000:9000 -p 9001:9001 -v C:\\Users\\drew\\Downloads\\NY:/data minio/minio ...
2 votes
1 answer
55 views

I would like to set a file size limit in uploads through multipart upload in my application, but my problem is, using pre-signed-url, I can't check the file size of each part and all the options I ...
6 votes
4 answers
9k views

We have a Minio cluster that we use as an on-premises object storage. We want to rename a bucket in it. How can I do this?
3 votes
1 answer
10k views

I'm trying to create an object in Minio. Sometimes it works and sometimes no. When I execute : minioClient.makeBucket(bucketName); // bucketName es a random unique string I don´t get error, but if If ...
0 votes
1 answer
133 views

I'm setting up a data lake using the following stack, using docker compose. MinIO + IceBerg Rest + Trino + Superset. docker-compose.yml version: "3.9" services: # ---------------- MinIO --...
0 votes
1 answer
3k views

I'm looking for a hacky way to create temporary URLs with Minio I see on the Laravel docs it says: Generating temporary storage URLs via the temporaryUrl method is not supported when using MinIO. ...
7 votes
3 answers
7k views

I am trying to download a file from minio using official Minio package. The way I managed to download a file seems pretty incorrect to me: var downloadStream = new MemoryStream(); var args = new ...
3 votes
1 answer
295 views

I have the next case: Get a certain count of N objects from Minio and create zip archive and upload it zip to Minio as one object. Problem: I have many objects, that are up to 40gb in size I can't ...
5 votes
1 answer
907 views

recently I updated my PHP to PHP 8.2.6. It was 8.0 Now I was testing Minio on my Laravel APP, when I tried to get a s3 object I'm getting this error: Error executing "ListObjectsV2" on &...
0 votes
0 answers
46 views

I have created an identity plugin for MinIO as per the documentation. I have manually verified that if I now send an [AssumeRoleWithCustomToken] (https://min.io/docs/minio/linux/developers/security-...
0 votes
0 answers
54 views

I’m running PyFlink 1.19.1 inside a Jupyter notebook on a local MiniCluster and trying to write a filesystem sink to an S3-compatible MinIO endpoint. When I submit the same job (same JARs, same ...
0 votes
0 answers
128 views

I'm setting up MinIO and MLflow in a Minikube Kubernetes cluster and encountering persistent volume issues. The deployment works correctly when using hostPath, but fails with a "Rename across ...
0 votes
0 answers
100 views

I have been pulling my hair out trying to implement an equivalent for this mc cli command in Python. [me@kompir ~/src/mc]$ mc quota info localhost-reporting-api/bucket-99 Bucket `bucket-99` has hard ...
9 votes
2 answers
22k views

I am experimenting with MinIO. I try to send REST API calls directly to MinIO port 9000. So far, I understood that authentication works the same as the Amazon S3 API authentication works - correct? ...
0 votes
0 answers
44 views

I am working on a MinIO cluster that receives around 20k RPS. I am using a custom authorization service, which is essentially a proxy, that contains all the authorisation logic. If a request is marked ...
0 votes
1 answer
155 views

I'm trying to download a folder by calling my controller in Laravel. However, I'm running into a "memory exceeded" issue because one of the files I'm downloading is around 500MB. Currently, ...
0 votes
0 answers
29 views

i'm a newbie to Flet and i can't solve this problem. After the command: file_picker.upload([FilePickerUploadFile(name=filename,upload_url=presigned_url)]) Object from userside' files start to be ...
0 votes
0 answers
144 views

I can write and read aniceberg successfully using pyspark, Nessie and MINIO: #!/usr/bin/python3.9 from pyspark.sql import SparkSession iceberg_spark_jar = '/AKE/iceberg-spark-runtime-3.5_2.12-1.9.0....
3 votes
2 answers
1k views

I am using the list_objects method of the python minio client and trying to retrieve the metadata for each object while traversing folders in S3. I attempted to do this by setting the ...
0 votes
2 answers
5k views

The steps I followed are. get all objects from recursive objects Iterable<Result<Item>> results = minioClient.listObjects(ListObjectsArgs.builder() .bucket(bucketName).recursive(true)...
21 votes
4 answers
38k views

Below is a service in my docker compose. minio: image: minio/minio:edge environment: MINIO_ACCESS_KEY: minio123 MINIO_SECRET_KEY: minio123 volumes: - datastore:/data ...
0 votes
1 answer
83 views

I'm having this trouble: I have a minio instance on kubernetes with my minio-dev.example.io dominio, I also have my object lambda to transform some files but this one is on Knative pod: http://object-...

1
2 3 4 5
21