We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For example, all object names will be logged here when the deletion of objects fails.
return this.s3.deleteObjects(request).thenApply(resp -> { LOGGER.info("[ControllerS3Operator]: Delete objects: {}, cost: {}", Arrays.toString(resp.deleted().toArray()), System.currentTimeMillis() - start); return resp.deleted().stream().map(DeletedObject::key).collect(Collectors.toList()); }).exceptionally(ex -> { LOGGER.error("[ControllerS3Operator]:Delete objects: {} failed", Arrays.toString(objectKeys.toArray()), ex); return Collections.emptyList(); });
The text was updated successfully, but these errors were encountered:
Migrate to AutoMQ/automq-for-rocketmq#176
Sorry, something went wrong.
feat(s3stream): improve s3stream observarbility (#257)
8fb2081
Signed-off-by: Shichao Nie <niesc@automq.com>
d6164f1
Chillax-0v0
When branches are created from issues, their pull requests are automatically linked.
For example, all object names will be logged here when the deletion of objects fails.
The text was updated successfully, but these errors were encountered: