autotier
Automatic Tiering Fuse Filesystem
|
23 #include "concurrentQueue.hpp"
26 #include <45d/socket/UnixSocketServer.hpp>
105 template<
typename... Args>
107 if ([](
int job,
const std::vector<std::string> &) {
return job;} (args...) == ONESHOT) {
108 if (oneshot_in_queue_)
110 oneshot_in_queue_ =
true;
126 void pin_files(
const std::vector<std::string> &args);
132 void unpin_files(
const std::vector<std::string> &args);
139 bool oneshot_in_queue_;
Definition: config.hpp:65
TierEngineAdhoc(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Tier Engine Adhoc object.
Definition: adhoc.cpp:36
Base class of TierEngine. Deals with calling config_ constructor and holds onto some members used in ...
Definition: base.hpp:37
Representation of an ad hoc command with the command index and arguments.
Definition: tools.hpp:66
void process_config(void)
Dump current configuration settings from memory.
Definition: adhoc.cpp:384
void execute_queued_work(void)
Process each Adhoc job enqueued in adhoc_queue_, popping them. Called by the tiering thread as part o...
Definition: adhoc.cpp:477
void set_socket_permissions(void)
Get the gid for group autotier and set the owner of the socket to root:autotier.
Definition: adhoc.cpp:49
void shutdown_socket_server(void)
Call socket_server.shutdown() to wake adhoc server thread from wait_for_connection()
Definition: adhoc.cpp:554
void process_list_popularity(void)
Send all file paths in filesystem along with popularity.
Definition: adhoc.cpp:408
ffd::UnixSocketServer socket_server_
IPC server.
Definition: adhoc.hpp:140
void process_list_pins(void)
Send all pinned files with the corresponding tier they are pinned to.
Definition: adhoc.cpp:393
void enqueue_work(Args &&...args)
Emplace an AdHoc job into the work queue.
Definition: adhoc.hpp:106
void process_which_tier(AdHoc &work)
Send table of each argument file along with its corresponding tier name and full backend path.
Definition: adhoc.cpp:422
void process_oneshot(const AdHoc &work)
Enqueue oneshot AdHoc command into adhoc_work_.
Definition: adhoc.cpp:129
TierEngine component to handle ad hoc commands.
Definition: adhoc.hpp:32
void emplace(Args &&...args)
Emplace into queue with std::queue<T>::emplace().
Definition: concurrentQueue.hpp:72
std::condition_variable sleep_cv_
Condition variable to use wait_until to sleep between tiering, used for the ad hoc server thread or t...
Definition: base.hpp:116
void process_pin_unpin(const AdHoc &work)
Enqueue pin or unpin AdHoc command into adhoc_work_.
Definition: adhoc.cpp:152
void unpin_files(const std::vector< std::string > &args)
Iterate through args, clearing the Metadata::pinned_ flag of each file.
Definition: adhoc.cpp:541
void pin_files(const std::vector< std::string > &args)
Iterate through each string in args[1:] to tier name in args[0]. Sets Metadata::pinned_ flag of each ...
Definition: adhoc.cpp:498
void process_adhoc_requests(void)
Function for ad hoc server thread. Listens to named FIFO in run_path_ to receive ad hoc commands from...
Definition: adhoc.cpp:65
ConcurrentQueue< AdHoc > adhoc_work_
Definition: base.hpp:108
~TierEngineAdhoc()
Destroy the Tier Engine Adhoc object.
Definition: adhoc.cpp:47
void process_status(const AdHoc &work)
Iterate through list of tiers, printing ID, path, current usage, and watermark.
Definition: adhoc.cpp:205