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
0
votes
1 answer

MinIO AWS CLI via nginx-ingress controller

Running MinIO (https://docs.min.io/) on kubernetes 1.12. I am unable to run aws cli commands via nginx-ingress. Commands work fine when port-forwarding directly to the kubernetes service. Tried proxy_set_header Host $http_host; and …
David H.
  • 183
  • 1
  • 1
  • 8
0
votes
0 answers

How to get list of failed parts on s3 multipart upload

sometimes after completing the multipart upload request with s3 client, I get this error: InvalidPart: One or more of the specified parts could not be found. The part may not have been uploaded, or the specified entity tag may not match the part's…
meshkati
  • 1,720
  • 2
  • 16
  • 29
0
votes
1 answer

minIO on Kubernetes : Best way to back it up

I have tried to deploy so far in the below 2 ways: 1. Deploy it as a statefulset on Kubernetes and using persistent volume of nfs as its storage . But then I learnt that we shouldn't be running minio backed by NAS as erasure code should not be run…
swetad90
  • 784
  • 1
  • 13
  • 34
0
votes
1 answer

minio docker runs in Ubuntu (VirtualBox), trying to connect to minio server from host machine (MacOS or Win10), connection reset

The Context: Got minio (s3 compatible storage) from docker hub Run the minio docker image in Unbuntu (VirtualBox) Host OS: Mac or Win10 Set up network -> port forwarding -> 9000:9000 in VirtualBox The Problem: - In Ubuntu, minio works perfectly,…
Michael Qin
  • 629
  • 6
  • 10
0
votes
1 answer

Minio data does not persist through reboot

I deployed Minio on Kubernetes on an Ubuntu desktop. It works fine, except that whenever I reboot the machine, everything that was stored in Minio mysteriously disappears (if I create several buckets with files in them, I come back to a completely…
kd2amc
  • 39
  • 8
0
votes
1 answer

How to connect minio when build Dockerfile Nodejs

Can not connect with minio when I build project by Dockerfile. Everything working when I run project by script node. const minioConfig = { endPoint: process.env.domain_minio || process.env.domain; port: Number(process.env.port_endPoint) ||…
Võ Cát Thư
  • 47
  • 2
  • 9
0
votes
1 answer

Tracking file usage in Minio

Is there any way to track usage of files in a Minio storage? If I could trigger a script (that will keep and periodically write file usage info in a database), then I could find files that have not been used for a very long time (e.g. 1-2 year). I…
wmac
  • 1,023
  • 1
  • 16
  • 34
0
votes
1 answer

Hive problem connection to local Minio S3

I have configured my local S3 server with Minio. I can access to the files stored in it from Spark following these steps. But, if I try to configure Hive to access to a external parquet file stored in this server, I get following error: FAILED:…
AngryCoder
  • 396
  • 3
  • 15
0
votes
1 answer

How to set local model repository - Tensorrt inference server with Minio

Hi I want to setup Kubeflow - NVIDIA TensorRT inference server with repository located in MinIO. I don't how to change gs://inference-server-model-store/tf_model_store to connect Minio. ks init my-inference-server cd my-inference-server ks registry…
0
votes
1 answer

Cannot send data to Minio using Argo workflow running on Minikube

I'm testing Argo workflow on Minikube and I'm using Minio to upload/download data created within the workflow. And when I submit the template yaml, I got failed to save outputs error on the pod. I checked the logs using kubectl logs -n air [POD…
user3368526
  • 2,168
  • 10
  • 37
  • 52
0
votes
1 answer

How to find the source for the SignatureDoesNotMatch error on Minio

Since more than a year we are runnig a single page application (SPA with Angular) which receives Json objects with presigned urls from a .NET Core API. The SPA displays a list and uses the presigned url to display the image/video (directly…
monty
  • 7,888
  • 16
  • 63
  • 100
0
votes
1 answer

S3 alternate endpoints for presigned operations

I am using minio client to access S3. The S3 storage I am using has two endpoints - one (say EP1) which is accessible from a private network and other (say EP2) from the internet. My application creates a presigned URL for downloading an S3 object…
aniztar
  • 2,443
  • 4
  • 18
  • 24
0
votes
1 answer

replacing minio node in 4-node cluster

One of the nodes in our 4-node minio cluster is having issues and will be terminated by our cloud provider in a couple of weeks. I have done prior testing with minio and know that it will continue to function with 3 nodes, but I will be…
SourceSimian
  • 682
  • 4
  • 18
0
votes
1 answer

kafka connect transforms RegExRouter exiting with unrecoverable exception

I have made a kafka pipeline to copy a sqlserver table to s3 During sink, i'm trying to transform topic names dropping prefix with the regexrouter function : "transforms":"dropPrefix", …
0
votes
1 answer

Unable to upload file via uploadlink generated by minio

I have a backend that returns uploadlink via minio server, when an API call is made to an endpoint, /attachments in my case. This is the POST handler in backend. @POST @Consumes({MediaType.APPLICATION_JSON}) @Produces({MediaType.TEXT_PLAIN}) public…
Roshan Upreti
  • 1,782
  • 3
  • 21
  • 34