1 /* Blue Sky: File Systems in the Cloud
3 * Copyright (C) 2009 The Regents of the University of California
4 * Written by Michael Vrable <mvrable@cs.ucsd.edu>
14 #include "bluesky-private.h"
16 int bluesky_verbose = 0;
18 BlueSkyOptions bluesky_options;
20 /* Maximum number of threads to use in any particular thread pool, or -1 for no
22 int bluesky_max_threads = 16;
24 /* Watermark levels for cache tuning: these control when dirty data is flushed
25 * from cache, when clean data is dropped from the cache, etc. These values
26 * are measured in blocks, not bytes.
28 * There are a few relevant levels:
29 * low: Below this point, data is not forced out due to memory pressure
30 * medium: At this point start flushing data to get back below medium
31 * high: Flush data very aggressively (launch extra tasks if needed)
33 int bluesky_watermark_low_dirty = (64 << 20) / BLUESKY_BLOCK_SIZE;
34 int bluesky_watermark_medium_dirty = (96 << 20) / BLUESKY_BLOCK_SIZE;
35 int bluesky_watermark_high_dirty = (192 << 20) / BLUESKY_BLOCK_SIZE;
37 int bluesky_watermark_low_total = (64 << 20) / BLUESKY_BLOCK_SIZE;
38 int bluesky_watermark_medium_total = (128 << 20) / BLUESKY_BLOCK_SIZE;
39 int bluesky_watermark_high_total = (256 << 20) / BLUESKY_BLOCK_SIZE;
41 /* Environment variables that can be used to initialize settings. */
46 {"BLUESKY_OPT_SYNC_STORES", &bluesky_options.synchronous_stores},
47 {"BLUESKY_OPT_WRITETHROUGH", &bluesky_options.writethrough_cache},
48 {"BLUESKY_OPT_SYNC_INODE_FETCH", &bluesky_options.sync_inode_fetches},
49 {"BLUESKY_OPT_SYNC_FRONTENDS", &bluesky_options.sync_frontends},
53 /* BlueSky library initialization. */
55 void bluesky_store_init_s3(void);
56 void bluesky_store_init_kv(void);
57 void bluesky_store_init_multi(void);
58 void bluesky_store_init_bdb(void);
60 /* Initialize the BlueSky library and dependent libraries. */
61 void bluesky_init(void)
66 for (int i = 0; option_table[i].env != NULL; i++) {
67 const char *val = getenv(option_table[i].env);
70 g_print("Option %s set to %d\n", option_table[i].env, v);
71 *option_table[i].option = atoi(val);
76 bluesky_store_init_kv();
77 bluesky_store_init_s3();
78 bluesky_store_init_multi();
79 bluesky_store_init_bdb();