minio

How do I connect to a minio pod using the python API?

How do I connect to a minio pod using the python API? Question: I set up a microk8s deployment with the Minio service activated. I can connect to the Minio dashboard with a browser but cannot find a way to connect to the service via the API. Here is the output to the microk8s kubectl …

Total answers: 1

MLflow S3UploadFailedError: Failed to upload

MLflow S3UploadFailedError: Failed to upload Question: I’ve created with docker a MinioS3 artifact storage and a MySQL backend storage using the next Docker Compose: version: ‘3.8’ services: db: environment: – MYSQL_DATABASE=${MYSQL_DATABASE} – MYSQL_USER=${MYSQL_USER} – MYSQL_PASSWORD=${MYSQL_PASSWORD} – MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} expose: – ‘3306’ volumes: – ‘(path)/server_backend:/var/lib/mysql ‘ image: ‘mysql’ container_name: db storage: environment: – MINIO_ACCESS_KEY=${MINIO_USR} – MINIO_SECRET_KEY=${MINIO_PASS} expose: …

Total answers: 1

Installation DVC on MinIO storage

Installation DVC on MinIO storage Question: Does anybody install DVC on MinIO storage? I have read docs but not all clear for me. Which command should I use for setup MinIO storage with this entrance parameters: storage url: https://minio.mysite.com/minio/bucket-name/ login: my_login password: my_password Asked By: Dmitry Korshunov || Source Answers: Install I usually use it …

Total answers: 1

How to save panda data frame as CSV in MinIO.?

How to save panda data frame as CSV in MinIO.? Question: I am new in MinIo and i am using minio python library and trying to save panda data frame as CSV. as per there documentation, I am using put_object to insert the data in remote cloud location. below is my code. from minio import …

Total answers: 1