Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Generated data like image thumbnails is often stored in a (comparatively) temporary filesystem location, and <a href="http://sorl-thumbnail.readthedocs.org/en/latest/operation.html" rel="nofollow noreferrer">How sorl-thumbnail operates</a> suggest the same:</p> <blockquote> <p>When you use the thumbnail template tag sorl-thumbnail looks up the thumbnail in a Key Value Store. The key for a thumbnail is generated from its filename and storage. [...] <strong>It is worth noting that sorl-thumbnail does not check if source or thumbnail exists</strong> if the thumbnail key is found in the Key Value Store.</p> <p><strong>Note:</strong> This means that <strong>if you change or delete a source file or delete the thumbnail, sorl-thumbnail will still fetch from the Key Value Store</strong>. Therefore it is important that if you delete or change a source or thumbnail file notify the Key Value Store.</p> <p><em>[emphasis mine]</em></p> </blockquote> <p>Now, <a href="http://aws.amazon.com/ec2/" rel="nofollow noreferrer">Amazon EC2</a> instances usually feature two distinct storage types, namely the persistent <a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AmazonEBS.html" rel="nofollow noreferrer">Amazon Elastic Block Store (Amazon EBS)</a> volumes, which are copied when cloning an instance, and also the <a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html" rel="nofollow noreferrer">Amazon EC2 Instance Store</a> volumes (usually referred to as <em>ephemeral storage</em>), which are lost when cloning an instance; see my answer to <a href="https://stackoverflow.com/a/10751034/45773">how to take backup of aws ec2 instance/ephemeral storage?</a> for more on this difference/problem.</p> <p>So presumably your thumbnails have been stored on the ephemeral volume and would need to be generated now accordingly.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload