X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2047324c9ba95a41fd3a7c275886a4c69ca7984d..32e56d60fd965260662b5c8d8aaafc0d793e33bd:/services/fuse/arvados_fuse/command.py?ds=sidebyside diff --git a/services/fuse/arvados_fuse/command.py b/services/fuse/arvados_fuse/command.py index c2242eb2bf..8c24467aeb 100644 --- a/services/fuse/arvados_fuse/command.py +++ b/services/fuse/arvados_fuse/command.py @@ -18,6 +18,12 @@ import sys import time import resource +# This is speculative, but we're having low frequency SSL crashes +# early in the execution and so I thought maybe importing the SSL module +# before we start any threads might be helpful. +# On the other hand, I've still had it crash on me. +import _ssl + import arvados.commands._util as arv_cmd from arvados_fuse import crunchstat from arvados_fuse import * @@ -117,7 +123,13 @@ class ArgumentParser(argparse.ArgumentParser): self.add_argument('--unmount-timeout', type=float, default=2.0, help="Time to wait for graceful shutdown after --exec program exits and filesystem is unmounted") - + self.add_argument( + '--filters', + type=arv_cmd.JSONArgument(arv_cmd.validate_filters), + help="""Filters to apply to all project, shared, and tag directory +contents. Pass filters as either a JSON string or a path to a JSON file. +The JSON object should be a list of filters in Arvados API list filter syntax. +""") self.add_argument('--exec', type=str, nargs=argparse.REMAINDER, dest="exec_args", metavar=('command', 'args', '...', '--'), help="""Mount, run a command, then unmount and exit""") @@ -134,21 +146,40 @@ class Mount(object): if self.args.logfile: self.args.logfile = os.path.realpath(self.args.logfile) + try: + self._setup_logging() + except Exception as e: + self.logger.exception("exception during setup: %s", e) + exit(1) + try: nofile_limit = resource.getrlimit(resource.RLIMIT_NOFILE) - if nofile_limit[0] < 10240: - resource.setrlimit(resource.RLIMIT_NOFILE, (min(10240, nofile_limit[1]), nofile_limit[1])) + + minlimit = 10240 + if self.args.file_cache: + # Adjust the file handle limit so it can meet + # the desired cache size. Multiply by 8 because the + # number of 64 MiB cache slots that keepclient + # allocates is RLIMIT_NOFILE / 8 + minlimit = int((self.args.file_cache/(64*1024*1024)) * 8) + + if nofile_limit[0] < minlimit: + resource.setrlimit(resource.RLIMIT_NOFILE, (min(minlimit, nofile_limit[1]), nofile_limit[1])) + + if minlimit > nofile_limit[1]: + self.logger.warning("file handles required to meet --file-cache (%s) exceeds hard file handle limit (%s), cache size will be smaller than requested", minlimit, nofile_limit[1]) + except Exception as e: - self.logger.warning("arv-mount: unable to adjust file handle limit: %s", e) + self.logger.warning("unable to adjust file handle limit: %s", e) - self.logger.debug("arv-mount: file handle limit is %s", resource.getrlimit(resource.RLIMIT_NOFILE)) + nofile_limit = resource.getrlimit(resource.RLIMIT_NOFILE) + self.logger.info("file cache capped at %s bytes or less based on available disk (RLIMIT_NOFILE is %s)", ((nofile_limit[0]//8)*64*1024*1024), nofile_limit) try: - self._setup_logging() self._setup_api() self._setup_mount() except Exception as e: - self.logger.exception("arv-mount: exception during setup: %s", e) + self.logger.exception("exception during setup: %s", e) exit(1) def __enter__(self): @@ -281,7 +312,14 @@ class Mount(object): usr = self.api.users().current().execute(num_retries=self.args.retries) now = time.time() dir_class = None - dir_args = [llfuse.ROOT_INODE, self.operations.inodes, self.api, self.args.retries, self.args.enable_write] + dir_args = [ + llfuse.ROOT_INODE, + self.operations.inodes, + self.api, + self.args.retries, + self.args.enable_write, + self.args.filters, + ] mount_readme = False storage_classes = None @@ -347,7 +385,12 @@ class Mount(object): return e = self.operations.inodes.add_entry(Directory( - llfuse.ROOT_INODE, self.operations.inodes, self.api.config, self.args.enable_write)) + llfuse.ROOT_INODE, + self.operations.inodes, + lambda: self.api.config(), + self.args.enable_write, + self.args.filters, + )) dir_args[0] = e.inode for name in self.args.mount_by_id: @@ -429,7 +472,7 @@ From here, the following directories are available: def _llfuse_main(self): try: - llfuse.main() + llfuse.main(workers=1) except: llfuse.close(unmount=False) raise