greenplumn CMDCache 源码

  • 2022-08-18
  • 浏览 (235)

greenplumn CMDCache 代码

文件路径:/src/backend/gporca/libgpopt/src/mdcache/CMDCache.cpp

//---------------------------------------------------------------------------
//	Greenplum Database
//	Copyright (C) 2011 EMC Corp.
//
//	@filename:
//		CMDCache.cpp
//
//	@doc:
//		 Function implementation of CMDCache
//---------------------------------------------------------------------------

#include "gpopt/mdcache/CMDCache.h"

#include "gpos/task/CAutoTraceFlag.h"

using namespace gpos;
using namespace gpmd;
using namespace gpopt;


// global instance of metadata cache
CMDAccessor::MDCache *CMDCache::m_pcache = nullptr;

// maximum size of the cache
ULLONG CMDCache::m_ullCacheQuota = UNLIMITED_CACHE_QUOTA;

//---------------------------------------------------------------------------
//	@function:
//		CMDCache::Init
//
//	@doc:
//		Initializes global instance
//
//---------------------------------------------------------------------------
void
CMDCache::Init()
{
	GPOS_ASSERT(nullptr == m_pcache && "Metadata cache was already created");

	m_pcache = CCacheFactory::CreateCache<IMDCacheObject *, CMDKey *>(
		true /*fUnique*/, m_ullCacheQuota, CMDKey::UlHashMDKey,
		CMDKey::FEqualMDKey);
}


//---------------------------------------------------------------------------
//	@function:
//		CMDCache::Shutdown
//
//	@doc:
//		Cleans up the underlying cache
//
//---------------------------------------------------------------------------
void
CMDCache::Shutdown()
{
	GPOS_DELETE(m_pcache);
	m_pcache = nullptr;
}


//---------------------------------------------------------------------------
//	@function:
//		CMDCache::SetCacheQuota
//
//	@doc:
//		Set the maximum size of the cache
//
//---------------------------------------------------------------------------
void
CMDCache::SetCacheQuota(ULLONG ullCacheQuota)
{
	GPOS_ASSERT(nullptr != m_pcache && "Metadata cache was not created");
	m_ullCacheQuota = ullCacheQuota;
	m_pcache->SetCacheQuota(ullCacheQuota);
}

//---------------------------------------------------------------------------
//	@function:
//		CMDCache::ULLGetCacheQuota
//
//	@doc:
//		Get the maximum size of the cache
//
//---------------------------------------------------------------------------
ULLONG
CMDCache::ULLGetCacheQuota()
{
	// make sure that the CMDCache's saved quota is reflected in the underlying CCache
	GPOS_ASSERT_IMP(nullptr != m_pcache,
					m_pcache->GetCacheQuota() == m_ullCacheQuota);
	return m_ullCacheQuota;
}

//---------------------------------------------------------------------------
//	@function:
//		CMDCache::ULLGetCacheEvictionCounter
//
//	@doc:
// 		Get the number of times we evicted entries from this cache
//
//---------------------------------------------------------------------------
ULLONG
CMDCache::ULLGetCacheEvictionCounter()
{
	// make sure that we already initialized our underlying CCache
	GPOS_ASSERT(nullptr != m_pcache);

	return m_pcache->GetEvictionCounter();
}

//---------------------------------------------------------------------------
//	@function:
//		CMDCache::Reset
//
//	@doc:
//		Reset metadata cache
//
//---------------------------------------------------------------------------
void
CMDCache::Reset()
{
	Shutdown();
	Init();
}

// EOF

相关信息

greenplumn 源码目录

相关文章

greenplumn CMDAccessor 源码

greenplumn CMDAccessorUtils 源码

greenplumn CMDKey 源码

0  赞