autotier
Automatic Tiering Fuse Filesystem
popularityCalc.hpp
Go to the documentation of this file.
1 
25 #pragma once
26 
27 #define MINUTE 60.0
28 #define HOUR (60.0 * MINUTE)
29 #define DAY (24.0 * HOUR)
30 #define WEEK (7.0 * DAY)
31 
32 /* popularity calculation
33  * y[n] = MULTIPLIER * x / DAMPING + (1.0 - 1.0 / DAMPING) * y[n-1]
34  * where x is file usage frequency
35  */
36 #define START_DAMPING 50000.0
37 #define DAMPING 1000000.0
38 #define MULTIPLIER 3600.0
39 #define REACH_FULL_DAMPING_AFTER (1.0 * WEEK)
40 #define SLOPE ((DAMPING - START_DAMPING) / REACH_FULL_DAMPING_AFTER)
41 /* DAMPING is how slowly popularity changes.
42  * MULTIPLIER is to scale values to accesses per hour.
43  */
44 
45 #define AVG_USAGE 0.238 // 40hr/(7days * 24hr/day)
46 /* for calculating initial popularity for new files
47  * Unit: accesses per second.
48  */