我无法使用AWS CLI下载Postgres RDS实例的完整日志-
aws rds download-db-log-file-portion \
--db-instance-identifier $INSTANCE_ID \
--starting-token 0 --output text \
--max-items 99999999 \
--log-file-name error/postgresql.log.$CDATE-$CHOUR > DB_$INSTANCE_ID-$CDATE-$CHOUR.log
我在控制台中看到的日志文件显示它的大小约为10GB,但是使用CLI时,我总是得到的日志文件仅为100MB。
Ref-https://docs.aws.amazon.com/cli/latest/reference/rds/download-db-log-file-portion.html
AWS文档-
要下载整个文件,您需要--starting-token 0 参数:
aws rds download-db-log-file-portion --db-instance-identifier test-instance \ --log-file-name log.txt --starting-token 0 --output text > full.txt
有人可以建议吗?