autotier
Automatic Tiering Fuse Filesystem
Public Member Functions | Private Attributes | List of all members
TierEngineAdhoc Class Reference

TierEngine component to handle ad hoc commands. More...

#include <adhoc.hpp>

Inheritance diagram for TierEngineAdhoc:
Inheritance graph
[legend]
Collaboration diagram for TierEngineAdhoc:
Collaboration graph
[legend]

Public Member Functions

 TierEngineAdhoc (const fs::path &config_path, const ConfigOverrides &config_overrides)
 Construct a new Tier Engine Adhoc object. More...
 
 ~TierEngineAdhoc ()
 Destroy the Tier Engine Adhoc object. More...
 
void set_socket_permissions (void)
 Get the gid for group autotier and set the owner of the socket to root:autotier. More...
 
void process_adhoc_requests (void)
 Function for ad hoc server thread. Listens to named FIFO in run_path_ to receive ad hoc commands from running autotier while mounted. Grabs command and queues work as an AdHoc object in TierEngineBase::adhoc_work_. More...
 
void process_oneshot (const AdHoc &work)
 Enqueue oneshot AdHoc command into adhoc_work_. More...
 
void process_pin_unpin (const AdHoc &work)
 Enqueue pin or unpin AdHoc command into adhoc_work_. More...
 
void process_status (const AdHoc &work)
 Iterate through list of tiers, printing ID, path, current usage, and watermark. More...
 
void process_config (void)
 Dump current configuration settings from memory. More...
 
void process_list_pins (void)
 Send all pinned files with the corresponding tier they are pinned to. More...
 
void process_list_popularity (void)
 Send all file paths in filesystem along with popularity. More...
 
void process_which_tier (AdHoc &work)
 Send table of each argument file along with its corresponding tier name and full backend path. More...
 
template<typename... Args>
void enqueue_work (Args &&...args)
 Emplace an AdHoc job into the work queue. More...
 
void execute_queued_work (void)
 Process each Adhoc job enqueued in adhoc_queue_, popping them. Called by the tiering thread as part of the main tier loop in begin().
 
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 file then moves the file. More...
 
void unpin_files (const std::vector< std::string > &args)
 Iterate through args, clearing the Metadata::pinned_ flag of each file. More...
 
void shutdown_socket_server (void)
 Call socket_server.shutdown() to wake adhoc server thread from wait_for_connection() More...
 
- Public Member Functions inherited from TierEngineBase
 TierEngineBase (const fs::path &config_path, const ConfigOverrides &config_overrides)
 Construct a new Tier Engine Base object. More...
 
virtual ~TierEngineBase (void)
 Destroy the Tier Engine Base object. More...
 
int create_run_path (void) const
 Creates path for FIFOs and database, chowning to root:autotier. More...
 
std::list< Tier > & get_tiers (void)
 Get reference to the list of tiers.Used in fusePassthrough.cpp to get references to each tier for finding full backend paths. More...
 
Tiertier_lookup (fs::path p)
 Find Tier from path. More...
 
Tiertier_lookup (std::string id)
 Find tier from ID. More...
 
void mount_point (const fs::path &mount_point)
 Set the mount_point_ variable. More...
 
virtual bool tier (void)
 Virtual tier function to allow other components to call TierEngineTiering::tier(). More...
 
virtual bool currently_tiering (void) const
 

Private Attributes

bool oneshot_in_queue_
 
ffd::UnixSocketServer socket_server_
 IPC server.
 

Additional Inherited Members

- Protected Member Functions inherited from TierEngineBase
virtual void exit (int status) const
 Virtual exit function that can be overridden by other components for cleanup. More...
 
- Protected Attributes inherited from TierEngineBase
bool stop_flag_
 Set to false to make thread exit. Used to continue or cancel sleeping after being woken to do ad hoc command work. More...
 
std::list< Tiertiers_
 List of tiers built from configuration file.
 
Config config_
 Configuration read from config_file path.
 
fs::path run_path_
 Path to mutex lock file, ad hoc FIFO, and database. Defaults to /var/lib/autotier/<hash of config path>, can be overridden in config.
 
fs::path mount_point_
 Where autotier filesystem is mounted, set by mount_point().
 
ConcurrentQueue< AdHocadhoc_work_
 
std::condition_variable sleep_cv_
 Condition variable to use wait_until to sleep between tiering, used for the ad hoc server thread or the main thread to wake the tiering thread from sleep. More...
 
std::shared_ptr< rocksdb::DB > db_
 Nosql database holding file metadata.
 

Detailed Description

TierEngine component to handle ad hoc commands.

Constructor & Destructor Documentation

◆ TierEngineAdhoc()

TierEngineAdhoc::TierEngineAdhoc ( const fs::path &  config_path,
const ConfigOverrides config_overrides 
)

Construct a new Tier Engine Adhoc object.

Parameters
config_pathPath to config file
config_overridesConfig options overridden from main()

◆ ~TierEngineAdhoc()

TierEngineAdhoc::~TierEngineAdhoc ( )

Destroy the Tier Engine Adhoc object.

Member Function Documentation

◆ enqueue_work()

template<typename... Args>
void TierEngineAdhoc::enqueue_work ( Args &&...  args)
inline

Emplace an AdHoc job into the work queue.

Parameters
workJob to execute.

◆ pin_files()

void TierEngineAdhoc::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 file then moves the file.

Parameters
argsTier name and list of files to pin.

◆ process_adhoc_requests()

void TierEngineAdhoc::process_adhoc_requests ( void  )

Function for ad hoc server thread. Listens to named FIFO in run_path_ to receive ad hoc commands from running autotier while mounted. Grabs command and queues work as an AdHoc object in TierEngineBase::adhoc_work_.

◆ process_config()

void TierEngineAdhoc::process_config ( void  )

Dump current configuration settings from memory.

◆ process_list_pins()

void TierEngineAdhoc::process_list_pins ( void  )

Send all pinned files with the corresponding tier they are pinned to.

◆ process_list_popularity()

void TierEngineAdhoc::process_list_popularity ( void  )

Send all file paths in filesystem along with popularity.

◆ process_oneshot()

void TierEngineAdhoc::process_oneshot ( const AdHoc work)

Enqueue oneshot AdHoc command into adhoc_work_.

Parameters
workThe command to be processed, containing needed args_.

◆ process_pin_unpin()

void TierEngineAdhoc::process_pin_unpin ( const AdHoc work)

Enqueue pin or unpin AdHoc command into adhoc_work_.

Parameters
workThe command to be processed, containing needed args_.

◆ process_status()

void TierEngineAdhoc::process_status ( const AdHoc work)

Iterate through list of tiers, printing ID, path, current usage, and watermark.

Parameters
workThe command to be processed, containing needed args_.

◆ process_which_tier()

void TierEngineAdhoc::process_which_tier ( AdHoc work)

Send table of each argument file along with its corresponding tier name and full backend path.

Parameters
workThe command to be processed, containing needed args_.

◆ set_socket_permissions()

void TierEngineAdhoc::set_socket_permissions ( void  )

Get the gid for group autotier and set the owner of the socket to root:autotier.

◆ shutdown_socket_server()

void TierEngineAdhoc::shutdown_socket_server ( void  )

Call socket_server.shutdown() to wake adhoc server thread from wait_for_connection()

◆ unpin_files()

void TierEngineAdhoc::unpin_files ( const std::vector< std::string > &  args)

Iterate through args, clearing the Metadata::pinned_ flag of each file.

Parameters
argsList of file paths to unpin.

The documentation for this class was generated from the following files: