use of alluxio.client.quota.CacheScope in project alluxio by Alluxio.
the class LocalCacheManagerWithMemPageStoreTest method putWithQuotaEviction.
@Test
public void putWithQuotaEviction() throws Exception {
mConf.set(PropertyKey.USER_CLIENT_CACHE_QUOTA_ENABLED, true);
CacheScope partitionCacheScope = CacheScope.create("schema.table.partition");
CacheScope tableCacheScope = CacheScope.create("schema.table");
CacheScope schemaCacheScope = CacheScope.create("schema");
CacheScope[] quotaCacheScopes = { partitionCacheScope, tableCacheScope, schemaCacheScope, CacheScope.GLOBAL };
for (CacheScope cacheScope : quotaCacheScopes) {
mMetaStore = new QuotaMetaStore(mConf);
mPageStore = PageStore.create(PageStoreOptions.create(mConf));
mCacheManager = createLocalCacheManager(mConf, mMetaStore, mPageStore);
CacheQuota quota = new CacheQuota(ImmutableMap.of(cacheScope.level(), (long) PAGE1.length + PAGE2.length - 1));
CacheContext context = CacheContext.defaults().setCacheScope(partitionCacheScope).setCacheQuota(quota);
assertTrue(mCacheManager.put(PAGE_ID1, PAGE1, context));
assertEquals(PAGE1.length, mCacheManager.get(PAGE_ID1, PAGE1.length, mBuf, 0));
assertTrue(mCacheManager.put(PAGE_ID2, PAGE2, context));
assertEquals(0, mCacheManager.get(PAGE_ID1, PAGE1.length, mBuf, 0));
assertEquals(PAGE2.length, mCacheManager.get(PAGE_ID2, PAGE2.length, mBuf, 0));
}
}
use of alluxio.client.quota.CacheScope in project alluxio by Alluxio.
the class LocalCacheManagerWithMemPageStoreTest method putWithQuotaMoreThanCacheCapacity.
@Test
public void putWithQuotaMoreThanCacheCapacity() throws Exception {
mConf.set(PropertyKey.USER_CLIENT_CACHE_QUOTA_ENABLED, true);
CacheScope partitionCacheScope = CacheScope.create("schema.table.partition");
CacheScope tableCacheScope = CacheScope.create("schema.table");
CacheScope schemaCacheScope = CacheScope.create("schema");
CacheScope[] quotaCacheScopes = { partitionCacheScope, tableCacheScope, schemaCacheScope, CacheScope.GLOBAL };
for (CacheScope cacheScope : quotaCacheScopes) {
mMetaStore = new QuotaMetaStore(mConf);
mPageStore = PageStore.create(PageStoreOptions.create(mConf));
mCacheManager = createLocalCacheManager(mConf, mMetaStore, mPageStore);
CacheQuota quota = new CacheQuota(ImmutableMap.of(cacheScope.level(), (long) CACHE_SIZE_BYTES + 1));
int cacheSize = CACHE_SIZE_BYTES / PAGE_SIZE_BYTES;
for (int i = 0; i < 2 * cacheSize; i++) {
PageId pageId = new PageId("3", i);
CacheContext context = CacheContext.defaults().setCacheScope(partitionCacheScope).setCacheQuota(quota);
assertTrue(mCacheManager.put(pageId, page(i, PAGE_SIZE_BYTES), context));
if (i >= cacheSize) {
assertEquals(0, mCacheManager.get(new PageId("3", i - cacheSize), PAGE_SIZE_BYTES, mBuf, 0));
// check the subsequent page is still in cache
assertEquals(true, mMetaStore.hasPage(new PageId("3", i - cacheSize + 1)));
}
}
}
}
use of alluxio.client.quota.CacheScope in project alluxio by Alluxio.
the class LocalCacheManagerWithMemPageStoreTest method putWithInsufficientParentQuota.
@Test
public void putWithInsufficientParentQuota() throws Exception {
mConf.set(PropertyKey.USER_CLIENT_CACHE_QUOTA_ENABLED, true);
CacheScope partitionCacheScope1 = CacheScope.create("schema.table.partition1");
CacheScope partitionCacheScope2 = CacheScope.create("schema.table.partition2");
CacheScope tableCacheScope = CacheScope.create("schema.table");
CacheScope schemaCacheScope = CacheScope.create("schema");
CacheScope[] quotaCacheScopes = { tableCacheScope, schemaCacheScope, CacheScope.GLOBAL };
for (CacheScope cacheScope : quotaCacheScopes) {
mMetaStore = new QuotaMetaStore(mConf);
mPageStore = PageStore.create(PageStoreOptions.create(mConf));
mCacheManager = createLocalCacheManager(mConf, mMetaStore, mPageStore);
CacheQuota quota = new CacheQuota(ImmutableMap.of(partitionCacheScope1.level(), (long) PAGE1.length + PAGE2.length, cacheScope.level(), (long) PAGE1.length + PAGE2.length - 1));
CacheContext context1 = CacheContext.defaults().setCacheScope(partitionCacheScope1).setCacheQuota(quota);
assertTrue(mCacheManager.put(PAGE_ID1, PAGE1, context1));
assertEquals(PAGE1.length, mCacheManager.get(PAGE_ID1, PAGE1.length, mBuf, 0));
CacheContext context2 = CacheContext.defaults().setCacheScope(partitionCacheScope2).setCacheQuota(quota);
assertTrue(mCacheManager.put(PAGE_ID2, PAGE2, context2));
assertEquals(0, mCacheManager.get(PAGE_ID1, PAGE1.length, mBuf, 0));
assertEquals(PAGE2.length, mCacheManager.get(PAGE_ID2, PAGE2.length, mBuf, 0));
}
}
use of alluxio.client.quota.CacheScope in project alluxio by Alluxio.
the class QuotaMetaStore method addPage.
@Override
public void addPage(PageId pageId, PageInfo pageInfo) {
super.addPage(pageId, pageInfo);
for (CacheScope cacheScope = pageInfo.getScope(); cacheScope != CacheScope.GLOBAL; cacheScope = cacheScope.parent()) {
mBytesInScope.compute(cacheScope, (k, v) -> (v == null) ? pageInfo.getPageSize() : v + pageInfo.getPageSize());
CacheEvictor evictor = mCacheEvictors.computeIfAbsent(cacheScope, k -> mSupplier.get());
evictor.updateOnPut(pageId);
}
}
Aggregations