Risposte:
Amazon ora ha la possibilità di impostare criteri bucket per far scadere automaticamente i contenuti:
http://docs.amazonwebservices.com/AmazonS3/latest/UG/ObjectExpiration.html
Nel frattempo Amazon ha introdotto i cicli di vita di S3 (consultare il post introduttivo sul blog Amazon S3 - Scadenza oggetti ), in cui è possibile specificare un'età massima in giorni per gli oggetti in un secchio - vedere Scadenza oggetti per i dettagli sul suo utilizzo tramite l'API S3 o AWS Management Console.
È possibile utilizzare s3cmd per scrivere uno script per eseguire il bucket ed eliminare i file in base a una condizione preliminare.
Dovrai scrivere del codice (bash, python) sopra di esso.
Puoi scaricare s3cmd da http://s3tools.org/s3cmd
script shell per eliminare vecchi bucket usando l'origine utility 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 non dà il resto.
No, S3 è solo un archivio dati. Dovrai utilizzare un client esterno per eliminare periodicamente i vecchi file.
Ho trovato batch molto più veloce di eliminazione della soluzione utilizzando 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";
}
Riferimento per l'eliminazione batch /programming//a/41734090/1589444
Riferimento per la gestione di file con spazio con custodia del 100% /programming/36813327/how-to-display-only-files-from-aws-s3-ls-command