Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug]: external s3/minio #1318

Closed
1 task done
MyWay opened this issue Jun 17, 2023 · 27 comments
Closed
1 task done

[bug]: external s3/minio #1318

MyWay opened this issue Jun 17, 2023 · 27 comments
Assignees
Labels
🐛bug Something isn't working 🛫plane Sync issues onto Plane 🏠self-hosted 🔥urgent

Comments

@MyWay
Copy link

MyWay commented Jun 17, 2023

Is there an existing issue for this?

  • I have searched the existing issues

Current behavior

When I upload the logo, the loader is stuck, while on the console I get: "Something went wrong please try again later".

Steps to reproduce

  1. In my docker-compose.yml I disabled plane-minio, createbuckets and set USE_MINIO to 0.
  2. In my environment variables I did set AWS_S3_ENDPOINT_URL=s3.eu-west-2.wasabisys.com, AWS_REGION=eu-west-2 and all AWS related variables

Couldn't find any useful info neither on the docs, nor here among the issues.

Browser

Google Chrome

Version

Self-hosted

@MyWay MyWay added the 🐛bug Something isn't working label Jun 17, 2023
@pablohashescobar
Copy link
Collaborator

pablohashescobar commented Jun 19, 2023

Hi @MyWay,

I noticed that you're encountering an issue with the endpoint URL. To resolve this, could you please try prepending https:// before the URL? This should ensure that the URL is using the correct protocol for the request.

@rhea0110 rhea0110 added 🛫plane Sync issues onto Plane 🏠self-hosted labels Jun 19, 2023
@MyWay
Copy link
Author

MyWay commented Jun 19, 2023

Hi @MyWay,

I noticed that you're encountering an issue with the endpoint URL. To resolve this, could you please try prepending https:// before the URL? This should ensure that the URL is using the correct protocol for the request.

Hi, i have tried your suggestion, but I'm getting the same error.

@anvy2
Copy link

anvy2 commented Jul 12, 2023

Any update or solution for this. I'm having the same issue. I've even tried minio setup when s3 didn't work thinking there might be some issue with the s3 endpoint url but no luck. Still can't make uploads work, the upload api gives 400 with the message "Something went wrong please try again later", that's it. I guess one good way is to log the actual error in the console or the logger so it would be easier to debug and know where it is failing than just ignoring the error with such a broad exception catch. I'd be happy to open a PR regarding the same

@orbatschow
Copy link

Maybe this is helpful:

I had the same problem and debugging was pretty hard. It turned out, that my self hosted minio setup had TLS verification enabled. Those were custom signed TLS certificates and plane was not able to verify the certificate correctly. I completely disable the minio TLS setup and configured plane to use plain HTTP. After this I was able to upload assets.

@shibacomputer
Copy link

shibacomputer commented Aug 2, 2023

I have this issue too. I'm using OpenStack / Swift and I just cannot get anything to upload.

In the browser:

POST
https://[redacted]/api/users/file-assets/
[HTTP/2 400 Bad Request 992ms]
Object { error: "Something went wrong please try again later" }


In Plane's logs:

planebackend     | POST - /api/users/file-assets/ of Queries: 1
planebackend     | Bad Request: /api/users/file-assets/
planebackend     | 172.23.0.2:39992 - "POST /api/users/file-assets/ HTTP/1.1" 400

My env:

AWS_REGION="us-east-1" // Set by my Openstack provider
AWS_ACCESS_KEY_ID="[redacted]"
AWS_SECRET_ACCESS_KEY="[redacted]"
AWS_S3_ENDPOINT_URL="https://s3.[redacted]/object/v1/AUTH_[redacted]" // As per my Openstack provider's documentation
AWS_S3_BUCKET_NAME="plane-uploads"
FILE_SIZE_LIMIT=5242880

I'm not even sure how to diagnose this, there's nothing helpful at all in the logs.

@shibacomputer
Copy link

A small update, issue not fully fixed however. In my Openstack case changing AWS_S3_ENDPOINT_URL="https://s3.[redacted]/object/v1/AUTH_[redacted]" to AWS_S3_ENDPOINT_URL="https://s3.[redacted]" allows for authentication and successful POST requests (eg file uploads.) However, actual bucket location is still at https://s3.[redacted]/object/v1/AUTH_[redacted]/plane-uploads/, which is not reflected in the AWS_S3_ENDPOINT_URL. This mismatch means the uploads can not be retrieved.

@ka6u7ack
Copy link

ka6u7ack commented Oct 12, 2023

I solved it. My situation is more like django-storages issue.

  • I print the exception. The error message is An error occurred (AccessControlListNotSupported) when calling the PutObject operation: The bucket does not allow ACLs.
  • Make sure AWS_S3_ENDPOINT_URL="https://s3.amazonaws.com", not AWS_S3_ENDPOINT_URL="https://[bucket_name].s3.amazonaws.com"
  • Edit apiserver/plane/settings/production.py
    1. Make sure AWS_S3_BUCKET_AUTH = True. It is important.

    2. You need edit AWS_S3_ADDRESSING_STYLE. Based on aws region, you can refer to

      Region Setting
      us-east-1 default or AWS_S3_SIGNATURE_VERSION = "s3v4"
      us-east-2 AWS_S3_ADDRESSING_STYLE = "virtual"
      ap-northeast-1 AWS_S3_SIGNATURE_VERSION = "s3v4"
      ap-southeast-2 AWS_S3_ADDRESSING_STYLE = "virtual"
      ap-south-1 AWS_S3_ADDRESSING_STYLE = "virtual"
      eu-central-1 AWS_S3_ADDRESSING_STYLE = "virtual"
      eu-central-1 AWS_S3_ADDRESSING_STYLE = "virtual"
      eu-west-1 AWS_S3_SIGNATURE_VERSION = "s3v4" AWS_S3_ADDRESSING_STYLE = "virtual"
      eu-west-2 AWS_S3_ADDRESSING_STYLE = "virtual"
      eu-west-3 AWS_S3_ADDRESSING_STYLE = "virtual"
      ca-central-1 AWS_S3_ADDRESSING_STYLE = "virtual"

      My aws region is us-east-2. I replaced AWS_S3_ADDRESSING_STYLE = "auto" with AWS_S3_ADDRESSING_STYLE = "virtual".

    3. (optional) AWS_S3_MAX_AGE_SECONDS = 7 * 24 * 60 * 60

    4. (optional) Set AWS_S3_PUBLIC_URL, if your bucket has a CDN link. (Although the comment say This setting cannot be used with "AWS_S3_BUCKET_AUTH", actually it works.)

@pablohashescobar
Copy link
Collaborator

Hey @MyWay, can you check by upgrading to the latest version. This issue should be fixed now. Let us know if you are still facing this issue.

@MyWay
Copy link
Author

MyWay commented Dec 15, 2023

Hey @MyWay, can you check by upgrading to the latest version. This issue should be fixed now. Let us know if you are still facing this issue.

How should I configure it for an alternative s3 in the latest version? Because upload is working, I can see the file in the bucket, but then the url generated by plane is pointing to my plane instance, so maybe I'm missing some setting.

@pablohashescobar
Copy link
Collaborator

pablohashescobar commented Dec 18, 2023

You can turn the USE_MINIO environment to 0.

@MyWay
Copy link
Author

MyWay commented Dec 18, 2023

You can turn the USE_MINIO environment to 0.

I did set it at 0, the file is uploaded, the filename is correct, but the url is mydomain.ext/mybucketname instead of my external s3 compatible service.

@pablohashescobar
Copy link
Collaborator

Oh okay @MyWay, can you also remove the AWS_S3_ENDPOINT_URL.

@MyWay
Copy link
Author

MyWay commented Dec 18, 2023

Oh okay @MyWay, can you also remove the AWS_S3_ENDPOINT_URL.

If I do won't it use Amazon s3? 🤔

@pablohashescobar
Copy link
Collaborator

It will be still using Amazon S3 only.

@MyWay
Copy link
Author

MyWay commented Dec 18, 2023

It will be still using Amazon S3 only.

But I'd like to use my s3 compatible provider.

@pablohashescobar
Copy link
Collaborator

Oh okay currently Plane only supports S3 and Minio what storage are you using @MyWay ?

@MyWay
Copy link
Author

MyWay commented Dec 18, 2023

Oh okay currently Plane only supports S3 and Minio what storage are you using @MyWay ?

I see, that's the issue with my instance then. I have tried both wasabi and synology, currently on synology.

Apparently only missing thing is to generate the correct url using AWS_S3_ENDPOINT_URL.

@pablohashescobar
Copy link
Collaborator

@MyWay, you may have to also update the nginx.conf to point to your file server.

@MyWay
Copy link
Author

MyWay commented Dec 19, 2023

@MyWay, you may have to also update the nginx.conf to point to your file server.

You mean I should rewrite urls to reflect my s3 instance, instead of expecting plane to do it?

@pablohashescobar
Copy link
Collaborator

You may have to do some changes the current plane setup either connects with S3 or minio for fetching assets for other services you may have to change the configuration a bit to make it work.

@MyWay
Copy link
Author

MyWay commented Dec 19, 2023

I see. Since all of them implement the same API, do you plan to add support to any of the s3 services?

@dbtek
Copy link

dbtek commented Dec 29, 2023

Please see #3278 for using custom s3 endpoints

@MyWay
Copy link
Author

MyWay commented Dec 31, 2023

Please see #3278 for using custom s3 endpoints

It's still not working for custom s3 endpoints from what I see.

@amalpaul54111
Copy link

amalpaul54111 commented Jan 9, 2024

Couldn't upload files to AWS S3, I am using the script to run it on a linux server with docker.
I did update the environment variables with the working AWS credentials.

DATA STORE SETTINGS

USE_MINIO=0
AWS_REGION="eu-west-1"
AWS_ACCESS_KEY_ID="[reducted]"
AWS_SECRET_ACCESS_KEY="[reducted]"
AWS_S3_ENDPOINT_URL="https://s3.amazonaws.com"
AWS_S3_BUCKET_NAME="[reducted]"
FILE_SIZE_LIMIT=52428800

Is there some other change we have to make to enable it to upload to S3.

Getting the following error from plane-app-api-1

/api/workspaces/internal/file-assets/ HTTP/1.0" 400

@truongnat
Copy link

I facing same issue when setup default minio.

Bellow my config

# DATA STORE SETTINGS
USE_MINIO=1
AWS_REGION=""
AWS_ACCESS_KEY_ID=""
AWS_SECRET_ACCESS_KEY=""
AWS_S3_ENDPOINT_URL=<my-url>
AWS_S3_BUCKET_NAME=uploads
MINIO_ROOT_USER="<my-user>"
MINIO_ROOT_PASSWORD="<my-password>"
BUCKET_NAME=uploads
FILE_SIZE_LIMIT=5242880

But in UI, i see it call api workspace/<name>/file-assets and it return 500 server error (Something went wrong please try again later)

Please help

@srinivaspendem
Copy link
Collaborator

srinivaspendem commented May 17, 2024

This issue will be resolved when you update to the latest version of Plane.

@MyWay
Copy link
Author

MyWay commented May 17, 2024

I'm already using latest stable, which version you are referring exactly?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛bug Something isn't working 🛫plane Sync issues onto Plane 🏠self-hosted 🔥urgent
Projects
None yet
Development

No branches or pull requests