You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to run the Athena example but unfortunately this grinds to a halt rather quickly. My experience with both Splink and Python are very limited, so I'm a bit lost searching through the discussions, and I couldn't find a somewhat related one.
I copied the example and run the following in VScode
from splink.exploratory import profile_columns
profile_columns(df, db_api, column_expressions=["first_name", "substr(surname,1,2)"])
this one however throws an error:
ParamValidationError: Parameter validation failed:
Invalid bucket name "mybucket\test1\r7ycem9x": Bucket name must match the regex "^[a-zA-Z0-9.\-_]{1,255}$" or be an ARN matching the regex "^arn:(aws).*:(s3|s3-object-lambda):[a-z\-0-9]*:[0-9]{12}:accesspoint[/:][a-zA-Z0-9\-.]{1,63}$|^arn:(aws).*:s3-outposts:[a-z\-0-9]+:[0-9]{12}:outpost[/:][a-zA-Z0-9\-]{1,63}[/:]accesspoint[/:][a-zA-Z0-9\-]{1,63}$"
which to me seems as if the bucketname is concatenated with the database and the filepath somewhere rather than just the bucket itself.
I noticed that there was no Linker created, but trying
linker = Linker(df,settings,db_api)
gives me the exact same error. Am I missing something? thanks in advance
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm trying to run the Athena example but unfortunately this grinds to a halt rather quickly. My experience with both Splink and Python are very limited, so I'm a bit lost searching through the discussions, and I couldn't find a somewhat related one.
I copied the example and run the following in VScode
after this step I get the MFA popup and everything seems to work fine
this works fine as well
this one however throws an error:
which to me seems as if the bucketname is concatenated with the database and the filepath somewhere rather than just the bucket itself.
I noticed that there was no Linker created, but trying
linker = Linker(df,settings,db_api)
gives me the exact same error. Am I missing something? thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions