embulk-input-s3 icon indicating copy to clipboard operation
embulk-input-s3 copied to clipboard

Add ability to fetch restored glacier object

Open kjmkznr opened this issue 4 years ago • 0 comments
trafficstars

The restored Glacier object has been excluded from loading because the storage class remains Glacier. This fix will load the Glacier object if it has already been restored.

  • Restored object's HeadObject response example
{
    "Restore": "ongoing-request=\"false\", expiry-date=\"Sun, 13 Aug 2017 00:00:00 GMT\"",
    ...
    "StorageClass": "GLACIER",
    "Metadata": {}
}
  • Ongoing restore object's HeadObject response example
{
    "Restore": "ongoing-request=\"true\"",
    ...
    "StorageClass": "GLACIER",
    "Metadata": {}
}

kjmkznr avatar Feb 27 '21 13:02 kjmkznr