https://dagster.io/ logo
a

Adrian

01/30/2021, 1:33 AM
is there anyway to set the endpoint for s3 storage? I'm using minio in my cluster as a gateway/abstraction. Something like...
Copy code
config:
  s3_bucket: STORAGE_BUCKET
  endpoint: MINIO-SERVICE-NAME:PORT
I'm interested to know if you can get the
verify
settings to work. (I couldn't; but I suspect that is related more to my companies blob storage device that dagster)
a

Adrian

01/31/2021, 6:47 PM
thanks, I'll verify if this works tomorrow and look into the
verify
settings too
m

mrdavidlaing

02/02/2021, 8:55 PM
I fixed my verify problems by upgrading to the latest version of `certifi` It seems that if you have
certifi
installed; Boto will use its certs rather than your system certs (at least on a Mac); potentially giving different behaviour when you curl an endpoint vs access it via Boto.
s

Simon Späti

02/08/2021, 7:42 AM
we solved it by adding
verify=False
to the
utils.py
in dagster_aws/s3/utils.py. I guess would be nice to have it build in as config. By the way, are you using spark? I’m struggling with io manger and spark and dataframes (pickles are not possible). Need to write my own io-manager.
3 Views