File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,14 +61,14 @@ public final class TinyLfuBlockCache implements FirstLevelBlockCache {
61
61
private static final long DEFAULT_MAX_BLOCK_SIZE = 16L * 1024L * 1024L ;
62
62
private static final int STAT_THREAD_PERIOD_SECONDS = 5 * 60 ;
63
63
64
- private final Eviction <BlockCacheKey , Cacheable > policy ;
65
- private final ScheduledExecutorService statsThreadPool ;
64
+ private transient final Eviction <BlockCacheKey , Cacheable > policy ;
65
+ private transient final ScheduledExecutorService statsThreadPool ;
66
66
private final long maxBlockSize ;
67
67
private final CacheStats stats ;
68
68
69
- private BlockCache victimCache ;
69
+ private transient BlockCache victimCache ;
70
70
71
- final Cache <BlockCacheKey , Cacheable > cache ;
71
+ transient final Cache <BlockCacheKey , Cacheable > cache ;
72
72
73
73
/**
74
74
* Creates a block cache.
You can’t perform that action at this time.
0 commit comments