Questions tagged [minio]

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.

MinIO offers high-performance, S3 compatible object storage on any cloud environment.

Resources :

  1. Official Website
  2. GitHub
  3. License and Paid (SLA backed) Support
  4. Community support
906 questions
2
votes
1 answer

Minio s3:ListAllMyBucket bucket policy not working?

My objective is userone buckets shoud not show to other users: s3:ListAllMyBucket Returns a list of all buckets owned by the authenticated sender of the request. To use this operation, you must have the s3:ListAllMyBuckets permission. This is my…
2
votes
0 answers

Grafana-Loki move instance by copy bucket

I was install Loki in multi tenant mode, for persistent data it have Minio. It works fine, but i need to move it to diffretn storage, so I did bucket, copy all files from old bucket and create new instance of loki witch point on new bucket. After…
zaku
  • 61
  • 1
  • 5
2
votes
1 answer

Caused by: java.net.UnknownHostException: alc-vbox-testarchiveservice.minio with Minio and docker-compose

We are using Minio for local testing of S3 AND we have created docker-compose file with Minio and our app dependency are as follows: Docker-Compose File: version: "2.1" services: minio: image: minio/minio container_name: minio ports: …
Anshita Singh
  • 1,583
  • 1
  • 17
  • 40
2
votes
1 answer

How to get Object ID in MinIO

I am currently making some reaching for the MinIO. I wonder if there is the object ID concept in MinIO that we can identify the object uniquely. or the only way is through the bucket name and file name to identify the stored object.
Matt
  • 115
  • 1
  • 11
2
votes
0 answers

Minio - bucket usage count not updating

I'm running MinIO via Docker (version 2022-04-16, so it could do with being updated). I have a handful of buckets used to store backups. Each bucket containers a handful of date stamped folders, each with 1 or 2 large (10GB+) files inside. In the…
fistameeny
  • 1,048
  • 2
  • 14
  • 27
2
votes
1 answer

How to Upload file in a directory to minIO bucket

Hello everyone i have bucket in minio server and bucket name is 'geoxing' and geoxing have directory img/site. i want to upload picture in site directry using nodejs. below is code and i am getting error Invalid bucket name: geoxing/img/site. how…
umer
  • 49
  • 2
  • 8
2
votes
1 answer

kafka connect s3 source not working with Minio

I have verified the connection to minio, making sure that the credentials are working fine and minio is reachable. Also if I try any other value for store.url = http://minio:9000 I am not able to save the config, so I guess that there is no issue in…
2
votes
1 answer

Connecting Airflow and Minio s3

I am using docker compose with bitnami's airflow image as well as minio. I can get airflow to talk to AWS S3, but when I try to substitute Minio I am getting this error: File…
BuffaloDev
  • 373
  • 2
  • 11
2
votes
1 answer

Minio in docker cluster is not reachable from spark container

I have created network docker network create app-tier --driver bridge and used this docker compose file networks: default: external: name: app-tier services: minio: image: 'bitnami/minio:latest' container_name:…
2
votes
0 answers

SignatureDoesNotMatch when sending data with presigned put object link on Minio

On the server side, I have an endpoint that uses the nodejs client of minio to generate a pre-signed URL successfully. minioclient.presignedPutObject('my_bucket', 'WechatIMG141.png', 24 * 60 *60 , (err, url) => {}); The pre-signed URL is returned…
user824624
  • 7,077
  • 27
  • 106
  • 183
2
votes
2 answers

How to get the result from IObservable subscription without a blocking call?

I'm trying to get filenames within a bucket of my MinIO server using the ListObjectsAsync method. Here is the relevant code: public async Task GetFileName(string userID, string datasetID) { ListObjectsArgs args = new ListObjectsArgs() …
Roland Deschain
  • 2,211
  • 19
  • 50
2
votes
1 answer

Missing fields in request to upload files to minio using the generated presigned url

I'm using Minio Server to handle files in my nodejs API, basically to emulate s3 locally. I generated Presigned Url to upload images directly. Presign Url Generation works fine but when I upload my file from Postman the file it gives me this…
juztcode
  • 1,196
  • 2
  • 21
  • 46
2
votes
2 answers

aws javascript sdk v3 - signature mismatch error

I can generate the presigned url following the steps as described in this section, so I wanted to test uploading a specific image marble.jpg and I tried to use postman to test the upload. So, I copied the presigned url and hit the endpoint with a…
juztcode
  • 1,196
  • 2
  • 21
  • 46
2
votes
1 answer

Unable to login to Minio Console POST to :9000

I recently deployed Minio stand-alone on a K0s pod. I can successfully use mc on my laptop to authenticate and create a bucket on my pod’s ip:9000. But when I try to access the web console and login I get a POST error to ip:9000 and I am unable to…
user3720568
  • 31
  • 1
  • 3
2
votes
1 answer

Does Hub support integrations for MinIO, AWS, and GCP? If so, how does it work?

I was taking a look at Hub—the dataset format for AI—and noticed that hub integrates with GCP and AWS. I was wondering if it also supported integrations with MinIO. I know that Hub allows you to directly stream datasets from cloud storage to ML…