mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-01 22:41:43 +03:00
124 lines
3.7 KiB
C++
124 lines
3.7 KiB
C++
/* Copyright (C) 2014 InfiniDB, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; version 2 of
|
|
the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
/******************************************************************************
|
|
* $Id: MonitorProcMem.h 2035 2013-01-21 14:12:19Z rdempsey $
|
|
*
|
|
*****************************************************************************/
|
|
|
|
/** @file StagedDL datalist used to process data concurrently in stages.
|
|
*
|
|
*/
|
|
|
|
#ifndef MonitorProcMem_H__
|
|
#define MonitorProcMem_H__
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "cgroupconfigurator.h"
|
|
|
|
//#include "pp_logger.h"
|
|
|
|
namespace utils
|
|
{
|
|
|
|
/** @brief A class to monitor a process's memory usage.
|
|
*
|
|
* This class will monitor and terminate the process if
|
|
* this process exceeds the specified memory limit.
|
|
*/
|
|
class MonitorProcMem
|
|
{
|
|
public:
|
|
/** @brief MonitorProcMem constructor
|
|
*
|
|
* @param maxPct (in) maximum allowable memory usage
|
|
* @param memChk (in) monitor total system physical memory usage
|
|
* @param msgLog (in) message logger to log msg to
|
|
* @param sec (in) number of seconds between memory checks
|
|
*/
|
|
explicit MonitorProcMem(size_t maxPct,
|
|
size_t memChk,
|
|
uint32_t subsystemID,
|
|
unsigned sec=1) :
|
|
fPid ( getpid() ),
|
|
fMaxPct ( maxPct ),
|
|
fSleepSec ( sec ),
|
|
fSubsystemID ( subsystemID ),
|
|
fPageSize ( getpagesize() ) { fMemPctCheck = memChk; fMemTotal = memTotal(); }
|
|
|
|
virtual ~MonitorProcMem() {};
|
|
|
|
/** @brief Thread entry point
|
|
*
|
|
* Entry point for this thread that monitors memory usage.
|
|
*/
|
|
virtual void operator()() const;
|
|
|
|
/* Accessor to return the free memory
|
|
*
|
|
*/
|
|
size_t getFreeMem() const {return fMemFree;}
|
|
|
|
/* return the % of total memory used
|
|
*
|
|
*/
|
|
static unsigned memUsedPct();
|
|
|
|
/* return true if memory usage is below configured limit
|
|
*
|
|
*/
|
|
static bool isMemAvailable(size_t memRequest = 0);
|
|
|
|
protected:
|
|
//Defaults are okay
|
|
//MonitorProcMem (const MonitorProcMem& rhs);
|
|
//MonitorProcMem& operator=(const MonitorProcMem& rhs);
|
|
|
|
/** return the current process RSS size in MB
|
|
*
|
|
*/
|
|
size_t rss() const;
|
|
|
|
/* return the system RAM size in MB
|
|
*
|
|
*/
|
|
size_t memTotal() const;
|
|
|
|
/* pause for fSleepSec seconds between memory usage checks
|
|
*
|
|
*/
|
|
void pause_() const;
|
|
|
|
pid_t fPid; // process pid
|
|
size_t fMaxPct; // max allowable % memory use
|
|
unsigned fSleepSec; // sleep interval in seconds
|
|
uint32_t fSubsystemID; // Subsystem ID for Logger
|
|
int fPageSize; // page size for this host (in bytes)
|
|
|
|
// @bug4507, monitor % of total used system memory
|
|
static uint64_t fMemTotal;
|
|
static uint64_t fMemFree;
|
|
static int fMemPctCheck;
|
|
mutable CGroupConfigurator cg;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|