Support ETags for immutable files in web front-end #844

Closed
opened 2009-11-27 07:14:33 +00:00 by davidsarah · 1 comment
davidsarah commented 2009-11-27 07:14:33 +00:00
Owner

Tahoe immutable files are, well, immutable. GETting an immutable file at a given URL should always retrieve the same content. But caching proxies don't know that.

For instance, in http://allmydata.org/pipermail/tahoe-dev/2009-November/003221.html , it is pointed out that adding a HTTP caching proxy on the client side of the gateway doesn't work:

My first instinct was to turn to Squid. However, I quickly discovered that because my JPG was being decrypted every time I accessed it, Squid was concluding that it had been changed, and dumping it from the cache.

If the gateway were to use a unique identifier for the file (such as its storage index / verify cap / read cap) as an ETag, and support the associated If-Match, If-None-Match and Vary HTTP headers, then Squid (and any similar caching proxy that supports ETags) would know that the file hasn't changed.

Note that if a caching proxy is used, file integrity will depend on the proxy's correctness and security.

Caching of mutable files/directories is more complicated and potentially error-prone; let's leave that to another ticket.

Tahoe immutable files are, well, immutable. GETting an immutable file at a given URL should always retrieve the same content. But caching proxies don't know that. For instance, in <http://allmydata.org/pipermail/tahoe-dev/2009-November/003221.html> , it is pointed out that adding a HTTP caching proxy on the client side of the gateway doesn't work: > My first instinct was to turn to Squid. However, I quickly discovered that because my JPG was being decrypted every time I accessed it, Squid was concluding that it had been changed, and dumping it from the cache. If the gateway were to use a unique identifier for the file (such as its storage index / verify cap / read cap) as an ETag, and support the associated `If-Match`, `If-None-Match` and `Vary` HTTP headers, then Squid (and any similar caching proxy that supports ETags) would know that the file hasn't changed. Note that if a caching proxy is used, file integrity will depend on the proxy's correctness and security. Caching of mutable files/directories is more complicated and potentially error-prone; let's leave that to another ticket.
tahoe-lafs added the
code-frontend-web
major
enhancement
1.5.0
labels 2009-11-27 07:14:33 +00:00
tahoe-lafs added this to the undecided milestone 2009-11-27 07:14:33 +00:00
davidsarah commented 2009-11-28 04:51:56 +00:00
Author
Owner

Oops. The current code is supposed to support ETags (search for setETag in code:src/allmydata/web/filenode.py). twisted.web.http also supports If-None-Match. (I couldn't immediately see any support for If-Match or Vary, but I don't know whether they're needed.) So, this ticket is invalid as an enhancement.

This doesn't explain why Squid was concluding that immutable files had been changed, but that should be a different ticket.

Oops. The current code is supposed to support ETags (search for `setETag` in code:src/allmydata/web/filenode.py). twisted.web.http also supports `If-None-Match`. (I couldn't immediately see any support for `If-Match` or `Vary`, but I don't know whether they're needed.) So, this ticket is invalid as an enhancement. This doesn't explain why Squid was concluding that immutable files had been changed, but that should be a different ticket.
tahoe-lafs added the
invalid
label 2009-11-28 04:51:56 +00:00
davidsarah closed this issue 2009-11-28 04:51:56 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#844
No description provided.