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
0 answers

kafka connector cannot find s3 target which is minio url

I've Kafka and Kafka Connector clusters installed by Strimzi on Kubernetes. This is my s3/minio connector config: apiVersion: kafka.strimzi.io/v1alpha1 kind: KafkaConnector metadata: name: "minio-connector" labels: strimzi.io/cluster:…
0
votes
0 answers

MemoryStream upload to Minio results in size 0

I am trying to copy data selectively from one Minio server to another with a c# windows application. Data is downloaded OK, no exceptions occur, but file size in destination server is zero. A little bit simplified, my source code is something as…
0
votes
1 answer

Unable to run s3 sink connector for persisting kafka data on Minio

I have a Kubernetes cluster running with minikube, inside the cluster is running one kafka pod, one zookeeper pod and minio pod everyone with it service. Everything looks working properly. I have a minio topic generated called minio-topic working on…
0
votes
1 answer

Store file to s3 bucket using php Laravel

please I want to store a file in s3 according to its directory, but when I do this code it saves the string "storage / ;;;" on a file but not the docx with its content?? $path =…
0
votes
1 answer

Server /data is not valid command when deploying Minio inside Fargate ECS

I am deploying report portal on AWS FARGATE ECS containers. I want to use below settings. minio: image: minio/minio:latest #ports: # - '9000:9000' volumes: - ./data/storage:/data environment: MINIO_ACCESS_KEY:…
Vishal
  • 339
  • 1
  • 9
  • 26
0
votes
1 answer

How to read a file from minIO in apache beam java sdk

I just started with minio and apache beam. I have created a bucket on play.min.io and added few files (let suppose files stored are one.txt and two.txt). I want to access the files stored on that bucket with Apache beam java sdk. When i deal with…
D_D
  • 11
  • 4
0
votes
0 answers

prestosql minio connection refused (minio as metastore)

I'm trying to connect presto to minio using the hive connector, however, when querying I get a connection refused message. presto connector…
0
votes
1 answer

Can't send notification minio to rabbitMQ (docker-compose)

Scenario: I use docker compose and i can't send notification minio to rabbitMQ I have the following rabbitmq.yml version: '2' services: rabbitmq: image: rabbitmq:3-management ports: # the management port -…
yacin
  • 1
  • 1
0
votes
1 answer

How to download multiple files from minio server in java by passing bucket name and file name

How to download multiple files from minio server in java by passing bucket name and file name. Suppose one bucket is having file abc1.txt and abc2.text and so on.I want to get more then one file.
0
votes
1 answer

docker minio/mc not create bucket

minio: image: "minio/minio" container_name: myminio ports: - "9000:9000" environment: - "MINIO_ACCESS_KEY=AKIAIOSFODNN7EXAMPLE" -…
tapos ghosh
  • 2,114
  • 23
  • 37
0
votes
1 answer

Python upload to s3 : Stuck on put_object() call

I want to send an image in an s3 storage (MinIO). Here is an example code : import cv2 import argparse import boto3 from botocore.client import Config import logging logging.basicConfig(level=logging.INFO) parser =…
Nakeuh
  • 1,757
  • 3
  • 26
  • 65
0
votes
2 answers

hive-on-tez mapper stuck in INITIALIZING with total number of containers being -1 when accessing data on S3/MinIO

I have a Hadoop+Hive+Tez setup from scratch (meaning I deployed it component by component). Hive is set up using Tez as execution engine. In its current status, Hive can access table on HDFS, but it can not access table stored on MinIO (using s3a…
Naitree
  • 1,088
  • 1
  • 14
  • 23
0
votes
1 answer

unable to connect to minio-s3 spark

I am trying to connect to s3 provided by minio using spark But it is saying the bucket minikube does not exists. (created bucket already) val spark = SparkSession.builder().appName("AliceProcessingTwentyDotTwo") .config("spark.serializer",…
Sumit G
  • 436
  • 8
  • 21
0
votes
1 answer

minio client (GO SDK) API calls are not working

None of the API calls to perform functions on the minio server running locally works Here is how I am connecting to the server and listing the buckets // Use a secure connection. ssl := false // Initialize minio client object. minioClient, err :=…
RPT
  • 728
  • 1
  • 10
  • 29
0
votes
1 answer

download large files and continue uploading to minio with nodejs, KILLED MY SERVICE?

I have an API built with NodeJS, in that API there is a process where I download a large file using modules request-promise and then it is made a new buffer uploaded to minio. But I have a problem that my API always crashes if the file is above…
Aminudin
  • 109
  • 2
  • 8