1,003 questions
0
votes
1
answer
157
views
How to configure jupyter-fs to connect to MinIO with self-signed SSL certificates?
I am using jupyter-fs to connect JupyterHub's notebooks with a MinIO instance deployed in another namespace on Kubernetes. The MinIO endpoint is configured with HTTPS and uses a self-signed ...
0
votes
0
answers
80
views
How to upload to existing folder to minio through strapi
I have a bucket called mybucket in minio and MINO_FOLDER=static. I connected this to my strapi CMS. When using CMS interface I am able to upload images to folder and get image url like domain/static/...
3
votes
1
answer
773
views
Laravel with MinIO on Docker: Unable to Write File When Uploading an Image
I’m working on a Laravel project that uses MinIO as the storage solution. The project is running on Laravel Sail/Docker. However, when I attempt to upload an image, I encounter the following error:
...
0
votes
0
answers
83
views
Why is Grafana not uploading rendered images to MinIO despite correct S3 configuration?
I am trying to configure Grafana to upload rendered images to a MinIO bucket using the S3-compatible external image storage feature. However, the images are being stored locally in the /var/lib/...
0
votes
0
answers
34
views
Milvus RemoteBulkWriter remote-path
I am trying to RemoteBulkWrite to a standalone instance using parquet files. It does not appear to work unless you use RemoteBulkWrite (see issue here: https://github.com/milvus-io/milvus/issues/36445)...
0
votes
0
answers
97
views
Spark Streaming MinIO Write Issue
I have docker containers for spark-iceberg, rest catalog and minio. When I am trying to write data to iceberg tables, I am getting the following error
Code
query = windowed_df.writeStream \
....
0
votes
0
answers
124
views
Django getting 404 error when trying to load files from MinIO on the same server
I have setup a Django web app (Django version 5.0.6) on an Ubuntu 22.04 LTS operating system with its default backend file system running MinIO 2024-08-03T04-33-23Z. The services are all running using ...
0
votes
1
answer
4k
views
Correct CORS configuration for minio
I have minio running locally, and I face cors issue while fetching a file. So I try to run this config:
<CORSConfiguration>
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
&...
2
votes
2
answers
612
views
Docker minio web console access not accessible
i have used host windows virtual box and running rocky linux and docker.
highly appreciated results/inputs
docker minio pulled
docker run executed
virtual box port forward enabled 9000 , 9001
results ...
0
votes
0
answers
290
views
Trino Delta Lake connector fails to read _last_checkpoint file from MinIO
I'm experiencing an issue with Trino's Delta Lake connector when trying to query a Delta Lake table stored in MinIO. My setup involves Trino, MinIO, and Hive Metastore, all running in Docker ...
0
votes
0
answers
28
views
Awssdk in c++ ignores Legal Hold Locks of the MinIO s3 store
I have a object on a MinIO s3 Object Store and want to lock it with a Legal Hold so that I cannot overwrite it in c++.
I set the Legal Hold like that:
Aws::S3::Model::PutObjectLegalHoldRequest ...
0
votes
1
answer
575
views
minio.error.S3Error: S3 operation failed; code: AccessDenied with root user access key
I have docker cluster with several containers such as minio as file storage and backend on django and it roughly looks like this:
files:
image: minio/minio
container_name: files
env_file:...
0
votes
0
answers
1k
views
minio - s3 - CORS policy not well-formed
I set a bucket policy that my specific domain can get the bucket object, now how to set CORS policy in minio - s3? I purchase it from my hosting company and they give me only client web interface so ...
0
votes
1
answer
102
views
Error connecting S3 Minio Object Store to Artifactory
What could be the problem? Maybe I need to add some more parameters to binarystore.xml. I also don't understand why it tries to connect to port 443 if I specified 9000.
binarystore.xml file:
<...
1
vote
1
answer
635
views
Cannot authenticate to minIO for reading data in local bucket using pyspark
I'm facing an authentication issue when using MinIO with PySpark, Iceberg, and Nessie catalog. I can access the catalog, databases, and tables, but I cannot query the tables. Here's my setup:
version: ...
1
vote
1
answer
1k
views
trino select from iceberg tables in Minio not working
I'm writing data from Kafka to Minio using the Confluent Iceberg sink. The catalog is a REST catalog.
I can see the tables in the catalog:
trino> show tables from iceberg.callcenter;
Table
-----...
1
vote
0
answers
520
views
SignatureDoesNotMatch Errors When Using Pre-Signed URLs with MinIO in Docker and Node JS
I am running MinIO inside a Docker Compose setup and using the minio-js SDK to generate pre-signed URLs for accessing files. However, when I attempt to access these URLs, I encounter ...
0
votes
1
answer
568
views
Read_parquet function of duckdb from MinIO issue
I am trying to query a parquet file using duckdb. the parquet file is stored in MINIO. I am using Jupyter notebook. the code is as below
def queryduckdb(bucketname, parquetfilepath):
try:
...
0
votes
0
answers
223
views
Partition evolution by PyIceberg
I am trying to put a dataframe to Minio-iceber with partition evolution. But it throw this error:
ValueError: Could not find in old schema: 1000: datetime_day: day(15)
I am trying to put a dataframe ...
0
votes
1
answer
354
views
Configuring Django and MinIO using HTTPS on same server
I have set up MinIO as my Django app object storage and integrate the functionality of this module on my the same server. I followed the instruction in django-minio-backend, but I got the below error.
...
1
vote
1
answer
353
views
Error when append data to Iceberg using Spark
I read a csv file in MinIO Bucket and tried to append it to Iceberg table but error occurred.
This is my code:
from pyspark.sql import SparkSession
# Initialize SparkSession
spark = SparkSession....
0
votes
1
answer
238
views
Not able to access minio on browser deployed on kubernetes through nodeport
I have deployed minio on kubernetes with service (nodeport) and deployment using PV and PVCs and I am not able to access it from the browser. I have to use NodePort only that is a constraint.
All the ...
0
votes
1
answer
719
views
get list of folders contained in a specific folder in a given bucket in MinIO by R
Hi!
I have a problem communicating with MinIO using R in an optimal way.
The task is to list the available folders in a given subfolder located in the appropriate bucket.
Example:
A bucket named ...
-2
votes
2
answers
479
views
Getting java.lang.UnsatisfiedLinkError when trying to run my Code
i am trying to follw this tutorial https://dzone.com/articles/databricks-delta-lake-using-java
So i want to use spark with delta lake, but for my storage i use minio and not hdfs or s3 (But it is ...
0
votes
1
answer
515
views
MinIO console access restriction
I have deployed MinIO on my server and configured two URLs for access:
minio.example.com - MinIO API
minio-admin.example.com - MinIO Console (UI)
I have set policies for my buckets (readonly policy ...