Project

General

Profile

Actions

Bug #19368

closed

[keep-web] [S3] slow requests caused by logUploadOrDownload

Added by Tom Clegg over 1 year ago. Updated over 1 year ago.

Status:
Resolved
Priority:
Normal
Assigned To:
Category:
-
Target version:
Story points:
-
Release relationship:
Auto

Description

While investigating slow HEAD requests I noticed a few inefficiencies in logUploadOrDownload that could be causing substantial delays:
  • if request method is anything other than PUT, POST, or GET, logUploadOrDownload() doesn't log anything -- but it does all the work to determine the collection ID and properties that would be logged if the method were different.
  • if Collections.WebDAVLogEvents is disabled, it spends time determining the collection ID and properties to log them to stderr (although not to the logs table).
  • determineCollection() walks the filesystem tree from root to requested target, looking for a special .arvados#collection file at each level, which may incur several unnecessary API calls (e.g., /by_id/$projectid/.arvados#collection will try to look up a subproject or collection with that name)
  • (most importantly?) generating the magic .arvados#collection file involves writing a new manifest for the entire directory tree, which (a) is not actually needed here, (b) can be very large and therefore slow to generate, and (c) due to the root-to-leaf approach is always generated for the entire collection, even though reading the magic file from the same directory as the requested target would often generate a much smaller manifest and still return the correct collection UUID (although it wouldn't reveal the path relative to collection root, which the logging feature uses).
Proposed fix:
  • Introduce an .arvados#uuid special file that just returns the UUID of the relevant collection or project represented by that directory
Related possible improvement:
  • Attach the user/collection IDs to the "response" log rather than creating a third ("file upload" / "file download") log entry per request with those fields added. We now have a feature in the httpserver package to make this easy.

Files

keep-web (11 MB) keep-web 265afdad112b129c36235935470d4a410161a9ef-dev Tom Clegg, 08/09/2022 04:10 PM
keep-web (11 MB) keep-web 0d8b4f1ad827a575bf74b058426eb898257592e5-dev Tom Clegg, 08/22/2022 02:48 PM
keep-web (11 MB) keep-web b896ceb55db0593631718cb13ee95b2414afe8f9-dev Tom Clegg, 08/24/2022 02:03 PM
keep-web (11 MB) keep-web 87a93969ba0b4eaa1d8c63af5c039e7fed908a31-dev Tom Clegg, 08/29/2022 10:01 PM
keep-web (11 MB) keep-web 13ebfc417bbdb8c5d325112a72248041b4ae49fd-dev Tom Clegg, 08/30/2022 02:44 PM

Subtasks 1 (0 open1 closed)

Task #19384: Review 19368-webdav-logging-speedupResolvedTom Clegg08/12/2022Actions

Related issues

Related to Arvados - Idea #17464: Logging and restricting downloads in keep-web and keepproxyResolvedPeter Amstutz06/15/2021Actions
Related to Arvados - Bug #19192: WebDAVCache not performing as expected for S3 requestsResolvedTom Clegg06/21/2022Actions
Actions

Also available in: Atom PDF