In-progress work on better cache flushing.
[bluesky.git] / bluesky / init.c
1 /* Blue Sky: File Systems in the Cloud
2  *
3  * Copyright (C) 2009  The Regents of the University of California
4  * Written by Michael Vrable <mvrable@cs.ucsd.edu>
5  *
6  * TODO: Licensing
7  */
8
9 #include <stdint.h>
10 #include <stdlib.h>
11 #include <glib.h>
12 #include <string.h>
13
14 #include "bluesky-private.h"
15
16 BlueSkyOptions bluesky_options;
17
18 /* Maximum number of threads to use in any particular thread pool, or -1 for no
19  * limit */
20 int bluesky_max_threads = 16;
21
22 /* Watermark levels for cache tuning: these control when dirty data is flushed
23  * from cache, when clean data is dropped from the cache, etc.  These values
24  * are measured in blocks, not bytes.
25  *
26  * There are a few relevant levels:
27  *   low: Below this point, data is not forced out due to memory pressure
28  *   medium: At this point start flushing data to get back below medium
29  *   high: Flush data very aggressively (launch extra tasks if needed)
30  */
31 int bluesky_watermark_low_dirty    = (64 << 20) / BLUESKY_BLOCK_SIZE;
32 int bluesky_watermark_medium_dirty = (96 << 20) / BLUESKY_BLOCK_SIZE;
33 int bluesky_watermark_high_dirty   = (192 << 20) / BLUESKY_BLOCK_SIZE;
34
35 /* Environment variables that can be used to initialize settings. */
36 static struct {
37     const char *env;
38     int *option;
39 } option_table[] = {
40     {"BLUESKY_OPT_SYNC_STORES", &bluesky_options.synchronous_stores},
41     {"BLUESKY_OPT_WRITETHROUGH", &bluesky_options.writethrough_cache},
42     {"BLUESKY_OPT_SYNC_INODE_FETCH", &bluesky_options.sync_inode_fetches},
43     {"BLUESKY_OPT_SYNC_FRONTENDS", &bluesky_options.sync_frontends},
44     {NULL, NULL}
45 };
46
47 /* BlueSky library initialization. */
48
49 void bluesky_store_init_s3(void);
50 void bluesky_store_init_kv(void);
51
52 /* Initialize the BlueSky library and dependent libraries. */
53 void bluesky_init(void)
54 {
55     g_thread_init(NULL);
56     bluesky_crypt_init();
57
58     for (int i = 0; option_table[i].env != NULL; i++) {
59         const char *val = getenv(option_table[i].env);
60         if (val != NULL) {
61             int v = atoi(val);
62             g_print("Option %s set to %d\n", option_table[i].env, v);
63             *option_table[i].option = atoi(val);
64         }
65     }
66
67     bluesky_store_init();
68     bluesky_store_init_kv();
69     bluesky_store_init_s3();
70 }