Guillaume Tauzin
06/27/2024, 12:07 PMconf/local/credentials.yml
and updated my catalog data to:
waveforms:
type: ifd.datasets.TDMSDataset
filepath: <s3://my_bucket_name/filename.tdms>
credentials: dev_s3
TDMSDataset is a dataset I created to handle this proprietary format and it works fine with local files.
I get the following error when trying to load the data with a kedro ipython
session:
TypeError: AioSession.__init__() got an unexpected keyword argument 'aws_access_key_id'
I could not find much on the internet regarding this error. Anyone has an idea? Thanks! ☀️Guillaume Tauzin
06/27/2024, 12:14 PMconf/local/credentials.yml
may not be correct.
Instead of:
# prod_s3:
# aws_access_key_id: token
# aws_secret_access_key: key
I think it should be:
# prod_s3:
# client_kwargs:
# aws_access_key_id: token
# aws_secret_access_key: key
Elena Khaustova
06/27/2024, 12:36 PMElena Khaustova
06/27/2024, 1:00 PM