回答:
Amazonは、コンテンツを自動的に期限切れにするバケットポリシーを設定できるようになりました。
http://docs.amazonwebservices.com/AmazonS3/latest/UG/ObjectExpiration.html
一方、AmazonはS3ライフサイクルを導入しています(ブログの紹介記事Amazon S3-Object Expirationを参照)。バケット内のオブジェクトの最大日数を指定できます-S3 APIまたはAWS Managementを介した使用の詳細については、Object Expirationを参照してくださいコンソール。
s3cmdを使用して、バケットを実行し、前提条件に基づいてファイルを削除するスクリプトを作成できます。
その上にいくつかのコード(bash、python)を書く必要があります。
s3cmdはhttp://s3tools.org/s3cmdからダウンロードできます。
s3cmdユーティリティ
ソースを使用して古いバケットを削除するシェルスクリプト:http :
//shout.setfive.com/2011/12/05/deleting-files-older-than-specified-time-with-s3cmd-and-bash/
#!/bin/bash
# Usage: ./deleteOld "bucketname" "30 days"
s3cmd ls s3://$1 | while read -r line; do
createDate=`echo $line|awk {'print $1" "$2'}`
createDate=`date -d"$createDate" +%s`
olderThan=`date -d"-$2" +%s`
if [[ $createDate -lt $olderThan ]]
then
fileName=`echo $line|awk '{$1=$2=$3=""; print $0}' | sed 's/^[ \t]*//'`
echo $fileName
if [[ $fileName != "" ]]
then
s3cmd del "$fileName"
fi
fi
done;
Video 1280x720 (2)13201781136780000000.mp4
は、Videoに残りの部分ではなく、単に与えます。
いいえ、S3は単なるデータストアです。古いファイルを定期的に削除するには、外部クライアントを使用する必要があります。
AWS cliを使用してバッチを削除するソリューションがはるかに高速であることがわかりました
#!/usr/bin/env php
<?php
//remove files which were created 24 hrs ago
$fcmd = 'aws s3 ls s3://<bucket>/<prefix>/ | awk \'{$3=""; print $0}\'';//remove file size and handle file with spaces
exec($fcmd, $output, $return_var);
$seconds_24_hour = 24 * 60 * 60;
$file_deleted_count = 0;
if (!empty($output)) {
$deleted_keys = array();
foreach ($output as $file) {
$file_path = substr($file, 21);
$file_time_stamp = substr($file, 0, 19); //2017-09-19 07:59:41
if (time() - strtotime($file_time_stamp) > $seconds_24_hour) {
$deleted_keys[]["Key"] = "<prefix>/" . $file_path;
$file_deleted_count++;
}
}
if (!empty($deleted_keys)) {
$json_data_delete = array("Objects" => $deleted_keys);
echo $cmd = ("aws s3api delete-objects --bucket <bucket> --delete '" . json_encode($json_data_delete) . "'");
system($cmd);
}
echo "\n$file_deleted_count files deleted from content_media\n";
}
バッチ削除のリファレンス/programming//a/41734090/1589444
100%パスケースでスペースのあるファイルを処理するためのリファレンス/programming/36813327/how-to-display-only-files-from-aws-s3-ls-command