22 个稳定版本 (4 个主要版本)
12.0.0 | 2024年1月3日 |
---|---|
11.2.0 | 2023年12月5日 |
11.1.2 | 2023年10月12日 |
10.0.8 | 2023年9月19日 |
8.7.0 | 2022年9月13日 |
排名 425 的 命令行工具
每月下载 129 次
200KB
4.5K SLoC
Esthri (S3)
一个极简单的(内存稳定的)S3 客户端,支持 get、put、head、list 和 sync 操作。
esthri 6.3.0
Simple S3 file transfer utility.
USAGE:
esthri <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
SUBCOMMANDS:
abort Manually abort a multipart upload
etag Compute and print the S3 ETag of the file
get Download an object from S3
head-object Retreive the ETag for a remote object
help Prints this message or the help of the given subcommand(s)
list-objects List remote objects in S3
put Upload an object to S3
serve Launch an HTTP server attached to the specified bucket
sync Sync a directory with S3
AWS S3 兼容层
esthri CLI 工具还提供 AWS CLI 兼容模式,可以处理与 aws s3
工具相同的 CLI 界面的 cp
和 sync
操作。目前,这些命令仅实现了基本案例,并且只处理了一些可选参数。
要使用,esthri 二进制文件必须被
- 命名为
aws
或与其硬链接 - 通过设置环境变量
ESTHRI_AWS_COMPAT_MODE
来运行
在此模式下,如果 esthri 遇到它无法处理的命令,它将尝试透明地调用实际的 aws
工具。为此,应将实际 aws
工具的路径放入名为 ESTHRI_AWS_PATH
的环境变量中。例如:ETHRI_AWS_PATH=/usr/bin/aws
。如果未指定此环境变量,则 esthri 将默认调用 aws.real
作为 aws
工具。
$ ln -s /usr/local/bin/aws /usr/local/bin/aws.real
$ ESTHRI_AWS_COMPAT_MODE=1 esthri s3 help # prints the S3 help text, as generated by the aws command
透明同步压缩
esthri 可以透明地压缩文件,使得文件在 S3 中被压缩,但不在本地文件系统中。要启用,请设置环境变量 ESTHRI_AWS_COMPAT_MODE_COMPRESSION
或使用 CLI 选项 --transparent-compression
。例如
ESTHRI_AWS_COMPAT_MODE=1 esthri s3 sync mydirectory/ s3://esthri-test/myfiles/ --transparent-compression # syncs as normal, however files in S3 are gzipped
ESTHRI_AWS_COMPAT_MODE=1 esthri s3 sync s3://esthri-test/myfiles/ mynewdirectory/ --transparent-compression # syncs and decompresses files as they are synced down. mydirectory and mynewdirectory will now contain the same files
esthri 使用 S3 元数据来执行此透明压缩,将压缩文件的 esthri 版本号存储在文件的元数据中。因此,解压缩仅适用于 esthri 自己压缩的文件。
AWS 凭据提供者选择
强烈推荐设置特定的凭证提供者,以提供更好的安全性和细粒度的控制。例如:
CREDENTIAL_PROVIDER=profile esthri s3 sync s3://esthri-test/myfiles/ mynewdirectory/
ESTHRI_CREDENTIAL_PROVIDER=env
——> 从环境变量获取 ESTHRI_CREDENTIAL_PROVIDER=profile
——> 从默认凭证文件获取 ESTHRI_CREDENTIAL_PROVIDER=container
——> 从ECS任务中的IAM角色获取 ESTHRI_CREDENTIAL_PROVIDER=instance_metadata
——> 从实例元数据服务获取 ESTHRI_CREDENTIAL_PROVIDER=k8s
——> 从kubernetes认证服务获取 ESTHRI_CREDENTIAL_PROVIDER
——> 如果为空,则显式使用默认凭证提供者
如果没有设置,程序将回退到默认凭证提供者,按照上述顺序迭代上述提供者,直到找到第一个有效值
发布
cargo-release 用于通过 release.toml 文件进行发布配置来自动化esthri的发布。
要执行发布,请运行 cargo release <release-level> -x
。
版权
Copyright (C) 2021 Swift Navigation Inc.
Contact: Swift Navigation <[email protected]>
This source is subject to the license found in the file 'LICENSE' which must be
be distributed together with this source. All other rights reserved.
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
依赖项
~40–57MB
~1M SLoC