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

Fix session credentials to be passed to s3fs (fix #375) #378

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion pyathena/pandas/result_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,20 @@ def _get_engine(self) -> "str":
def __s3_file_system(self):
from s3fs import S3FileSystem

creds = self.connection.session.get_credentials().get_frozen_credentials()
client_kwargs = self.connection._client_kwargs
client_kwargs.update(
{
"aws_access_key_id": creds.access_key,
"aws_secret_access_key": creds.secret_key,
"aws_session_token": creds.token,
}
)
return S3FileSystem(
profile=self.connection.profile_name,
client_kwargs={
"region_name": self.connection.region_name,
**self.connection._client_kwargs,
**client_kwargs,
},
)

Expand Down