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

S3 buckets composition

I'm developing CMS which runs as a single instance, but serves multiple websites of different users. This CMS needs to store files in storage. Each website can have either few images but also thousands of objects. Currently we serve around 5…
Mikeee
  • 85
  • 2
  • 8
0
votes
0 answers

How to copy a folder into another folder using minio python sdk?

Below is the code I'm trying. from minio.commonconfig import REPLACE, CopySource # copy an object `src` from a bucket `darshan` to object `dest_obj` result = client.copy_object( "darshan", "dest_obj", CopySource("darshan",…
Darshan
  • 352
  • 8
  • 24
0
votes
1 answer

Why do I need to specify hostname when deploy minio in docker swarm?

From the offical doc, the hostname is specified for each minio service when running in docker swarm. But from the offical doc, we don't need to specify hostname in docker compose. I'd like to know the reason. Thank you in advance.
xue zhang
  • 303
  • 3
  • 12
0
votes
1 answer

Can a minio bucket be set up so that stored objects are immutable and non-versioned?

Is it possible to set up a minio bucket so that files are not overwritten, nor versioned? Conceptually what I want is: $ mc cp myobject.bin myminio/mybucket // should be ok if 'myobject.bin' does not already exist in the bucket $ mc cp myobject.bin…
arillbert
  • 63
  • 1
  • 4
0
votes
0 answers

Why is a file not being uploaded using minIO's putObject?

I am using Minio's JAVA SDK. I managed to copy objects within the same Minio Server. Is there a way to copy the objects from one Minio server to another? I have tried using the below code: InputStream inputStream =…
Mohendra Amatya
  • 371
  • 6
  • 24
0
votes
1 answer

Can’t run the Minio client

I am a complete beginner and I was just introduced to minIO and I wanted to run it for a local project. Now I wanted to run minIO on Docker and also its client on Docker. So I take a quick look at the documentation and I setup the Minio image in my…
0
votes
0 answers

Minio NAS gateway security

I am trying to understand what is the security setup for a Minio NAS gateway - documentation here. Are all the authorization/authentication options supported for a Minio server still valid? e.g. LDAP, OAUTH2/Openid, etc.? In case of a distributed…
user3030851
  • 123
  • 11
0
votes
1 answer

PDF file generation. Java

I am forming a pdf file. When generating a file locally in Idea - pdf is generated correctly. And if you send this file to MiniO S3 - instead of Russian letters, the symbols '#' are generated I myself tried to specify the encoding explicitly via…
0
votes
1 answer

Socket hang up in Nestjs for uploading files with minio client

I am uploading files to my minio storage using nestjs-minio-client. I have my application running on a docker container behind Nginx as a reverse proxy. The minio storage is on another docker container on another server. The uploading process works…
Ana Lava
  • 769
  • 1
  • 6
  • 13
0
votes
1 answer

Minio uploads through the web interface and API receives "Unauthorized request."

I can successfully upload files to my Minio server using mc command line client (logged in as root): ./mc cp roobina.jpg minio/mag roobina.jpg: 63.50 KiB / 63.50 KiB But when I try to upload a file to a bucket using minio's…
wmac
  • 1,023
  • 1
  • 16
  • 34
0
votes
2 answers

Could not register service and start it on Centos

I have installed Minio server on a Centos 7.9 and I am trying to run it as a service. I used this guide and the minio.service file it provided to install Minio as a service:…
wmac
  • 1,023
  • 1
  • 16
  • 34
0
votes
1 answer

Kubernetes Minio tenant ui redirects to 0.0.0.0:9443

i've setup a minio tenant using the minio operator and was following the getting started guide. Now if i create an IngressRoute to for the ui i'm just getting redirected to 0.0.0.0:9443. This is the IngressRoute: apiVersion:…
0
votes
1 answer

Can minio be run as nonroot user in a docker container?

Can someone let me know if we can run MINIO as non root user? Found some articles where it can run only as root and not as non root. Please guide if someone has any idea on how it can achieved if possible.
0
votes
1 answer

Kafka Connector Record Writer gets stuck in S3OutputStream for lack of memory to allocate but does not fail staying idle for hours

I'm having a behavior I don't exactly know how to modify. I'm testing the s3 Kafka sync connector and I have very little data in my topics. At the moment I can see that there is data in the topic by using the Kafka manager but my connector reads the…
Miguel Costa
  • 627
  • 1
  • 12
  • 30
0
votes
1 answer

Spark history server with minIO: getting AmazonHttpClient: Unable to execute HTTP request: Connection refused

I am trying to run Spark History Server with minIO but keep getting AmazonHttpClient: Unable to execute HTTP request: Connection refused Complete exception: 20/10/20 09:06:21 INFO AmazonHttpClient: Unable to execute HTTP request: Connection refused…
JDev
  • 1,662
  • 4
  • 25
  • 55