18941: Tweak the prefetch thread max to 7
authorPeter Amstutz <peter.amstutz@curii.com>
Wed, 30 Mar 2022 17:27:55 +0000 (13:27 -0400)
committerPeter Amstutz <peter.amstutz@curii.com>
Wed, 30 Mar 2022 17:27:55 +0000 (13:27 -0400)
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

services/fuse/arvados_fuse/fusedir.py

index 876825a370dc466a216ccb2053ae4f159e47fdf8..f3816c0d3e783b6272c5abcc424641a4bb39d6dc 100644 (file)
@@ -525,9 +525,12 @@ class CollectionDirectory(CollectionDirectoryBase):
                         self.collection.update()
                         new_collection_record = self.collection.api_response()
                     else:
-                        # too much prefetch and you end up stepping on your own transfers
-                        # experimentally the optimal somewhere between 4 and 6
-                        get_threads = min(max((self.api.keep.block_cache.cache_max // (64 * 1024 * 1024)) - 1, 1), 6)
+                        # If there's too many prefetch threads and you
+                        # max out the CPU, delivering data to the FUSE
+                        # layer actually ends up being slower.
+                        # Experimentally, capping 7 threads seems to
+                        # be a sweet spot.
+                        get_threads = min(max((self.api.keep.block_cache.cache_max // (64 * 1024 * 1024)) - 1, 1), 7)
                         # Create a new collection object
                         if uuid_pattern.match(self.collection_locator):
                             coll_reader = arvados.collection.Collection(