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

Listkeysv2 #371

Merged
merged 6 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
26 changes: 20 additions & 6 deletions hsds/util/s3Client.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,10 @@
except KeyError:
pass

self._aio_config = AioConfig(max_pool_connections=max_pool_connections,
signature_version=signature_version)
kwargs = {"max_pool_connections": max_pool_connections}
if signature_version:
kwargs["signature_version"] = signature_version
self._aio_config = AioConfig(**kwargs)

log.debug(f"S3Client init - aws_region {self._aws_region}")

Expand Down Expand Up @@ -144,9 +146,15 @@
kwargs["region_name"] = self._aws_region
kwargs["aws_secret_access_key"] = self._aws_secret_access_key
kwargs["aws_access_key_id"] = self._aws_access_key_id
kwargs["aws_session_token"] = self._aws_session_token
kwargs["endpoint_url"] = self._s3_gateway
kwargs["use_ssl"] = self._use_ssl
if self._aws_session_token:
kwargs["aws_session_token"] = self._aws_session_token
if self._s3_gateway and not self._s3_gateway.endswith("amazonaws.com"):
Fixed Show fixed Hide fixed
# let boto sort out the endpoint if it's on aws
# for third party s3 compatible services (e.g. minio), set it here
kwargs["endpoint_url"] = self._s3_gateway
if self._use_ssl:
kwargs["use_ssl"] = self._use_ssl

kwargs["config"] = self._aio_config
# log.debug(f"s3 kwargs: {kwargs}")
return kwargs
Expand Down Expand Up @@ -627,8 +635,10 @@
session = self._app["session"]
self._renewToken()
kwargs = self._get_client_kwargs()
if prefix and prefix[-1] != "/":
prefix += "/" # list_v2 requires prefix end with slash
async with session.create_client("s3", **kwargs) as _client:
paginator = _client.get_paginator("list_objects")
paginator = _client.get_paginator("list_objects_v2")

# use a dictionary to hold return values if stats are needed
key_names = {} if include_stats else []
Expand Down Expand Up @@ -667,6 +677,10 @@
msg += f"but got {len(key_names)}"
log.warning(msg)

if not include_stats:
# list_keys_v2 does not return keys in lexographic order, so sort here
key_names.sort()

return key_names

async def releaseClient(self):
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,11 @@ version = "0.8.5"

dependencies = [
"aiohttp == 3.9.4",
"aiobotocore == 2.5.0",
"aiobotocore == 2.13.0",
jreadey marked this conversation as resolved.
Show resolved Hide resolved
"aiohttp_cors",
"aiofiles",
"azure-storage-blob",
"bitshuffle",
"botocore",
"cryptography",
"h5py >= 3.6.0",
"numcodecs",
Expand Down
Loading