autotier
Automatic Tiering Fuse Filesystem
|
23 #include "database.hpp"
58 void begin(
bool daemon_mode);
75 fs::directory_entry &itr,
Tier *tptr, std::atomic<ffd::Bytes::bytes_type> &usage));
85 void crawl(fs::path dir,
89 std::atomic<ffd::Bytes::bytes_type> &usage),
90 std::atomic<ffd::Bytes::bytes_type> &usage);
99 emplace_file(fs::directory_entry &file,
Tier *tptr, std::atomic<ffd::Bytes::bytes_type> &usage);
166 void exit(
int status);
Definition: config.hpp:65
bool strict_period(void) const
Return config_.strict_period().
Definition: tiering.cpp:217
Class to represent each tier in the filesystem.
Definition: tier.hpp:35
void calc_popularity(void)
Call File::calc_popularity() for each file in files_.
Definition: tiering.cpp:130
void emplace_file(fs::directory_entry &file, Tier *tptr, std::atomic< ffd::Bytes::bytes_type > &usage)
Place file into files_, constructing with fs::path, Tier*, and db_.
Definition: tiering.cpp:119
void begin(bool daemon_mode)
Tier files with tier(), do ad hoc work, and sleep until next period or woken by more work.
Definition: tiering.cpp:42
bool currently_tiering_
Whether or not tiering is happening. Set and cleared in tier()
Definition: tiering.hpp:168
void sort(void)
Sorts list of files based on popularity, if pop1 == pop2, sort by atime.
Definition: tiering.cpp:144
TierEngine component for dealing with thread sleeping.
Definition: sleep.hpp:31
TierEngine component for ensuring only one instance of autotier runs for a given run path.
Definition: mutex.hpp:28
std::chrono::steady_clock::time_point last_tier_time_
For determining tier period.
Definition: tiering.hpp:169
bool tier(void)
Find files, update their popularities, sort the files by popularity, and finally move the files to th...
Definition: tiering.cpp:66
TierEngine component for dealing with the rocksdb database.
Definition: database.hpp:28
void update_db(void)
Iterate over file list and call File::update_db().
Definition: tiering.cpp:200
TierEngine component to deal with tiering, inherits all other components so this is essentially the e...
Definition: tiering.hpp:34
~TierEngineTiering(void)
Destroy the Tier Engine Tiering object.
Definition: tiering.cpp:40
void crawl(fs::path dir, Tier *tptr, void(TierEngineTiering::*function)(fs::directory_entry &itr, Tier *tptr, std::atomic< ffd::Bytes::bytes_type > &usage), std::atomic< ffd::Bytes::bytes_type > &usage)
Recurse into tier directory, executing function on each file. Function can be emplace_file(),...
Definition: tiering.cpp:100
TierEngine component to handle ad hoc commands.
Definition: adhoc.hpp:32
void launch_crawlers(void(TierEngineTiering::*function)(fs::directory_entry &itr, Tier *tptr, std::atomic< ffd::Bytes::bytes_type > &usage))
Call crawl() for each tier in tiers.
Definition: tiering.cpp:89
std::vector< File > files_
Vector to contain every file across all tiers for sorting.
Definition: tiering.hpp:170
bool currently_tiering(void) const
Check if currently tiering.
Definition: tiering.cpp:213
void simulate_tier(void)
Find out which tier each file belongs in.
Definition: tiering.cpp:166
void move_files(void)
Launch one thread for each tier to move incoming files into their new backend paths based on results ...
Definition: tiering.cpp:189
void stop(void)
Obtain sleep_mt_, set stop_flag_ to true, wake sleeping tier thread with sleep_cv_....
Definition: tiering.cpp:206
void exit(int status)
Unlock mutex and call stop() before calling ::exit()
Definition: tiering.cpp:221
TierEngineTiering(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Tier Engine Tiering object.
Definition: tiering.cpp:32