From 08fadcc2a706342e4eee79dc7d9b48ba01fcb312 Mon Sep 17 00:00:00 2001 From: Krutika Dhananjay Date: Tue, 9 Jan 2018 15:11:00 +0530 Subject: mount/fuse: Add support for multi-threaded fuse readers Usage: Use 'reader-thread-count=' as command line option to set the thread count at the time of mounting the volume. Next task is to make these threads auto-scale based on the load, instead of having the user remount the volume everytime to change the thread count. Updates #412 Change-Id: I94aa1505e5ae6a133683d473e0e4e0edd139b76b Signed-off-by: Krutika Dhananjay --- libglusterfs/src/glusterfs.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libglusterfs/src/glusterfs.h') diff --git a/libglusterfs/src/glusterfs.h b/libglusterfs/src/glusterfs.h index 84e33449dad..43e6f48d905 100644 --- a/libglusterfs/src/glusterfs.h +++ b/libglusterfs/src/glusterfs.h @@ -512,6 +512,7 @@ struct _cmd_args { char *process_name; char *event_history; int thin_client; + uint32_t reader_thread_count; }; typedef struct _cmd_args cmd_args_t; -- cgit