/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.cassandra.db; import java.util.Collection; import java.util.List; import java.util.Map; import java.util.concurrent.ExecutionException; import javax.management.openmbean.CompositeData; import javax.management.openmbean.OpenDataException; /** * The MBean interface for ColumnFamilyStore */ public interface ColumnFamilyStoreMBean { /** * @return the name of the column family */ @Deprecated public String getColumnFamilyName(); public String getTableName(); /** * force a major compaction of this column family * * @param splitOutput * true if the output of the major compaction should be split in * several sstables */ public void forceMajorCompaction(boolean splitOutput) throws ExecutionException, InterruptedException; // NOT even default-throw implementing // forceCompactionForTokenRange // as this is clearly a misplaced method that should not be in the mbean interface // (uses internal cassandra types) /** * Gets the minimum number of sstables in queue before compaction kicks off */ public int getMinimumCompactionThreshold(); /** * Sets the minimum number of sstables in queue before compaction kicks off */ public void setMinimumCompactionThreshold(int threshold); /** * Gets the maximum number of sstables in queue before compaction kicks off */ public int getMaximumCompactionThreshold(); /** * Sets the maximum and maximum number of SSTables in queue before * compaction kicks off */ public void setCompactionThresholds(int minThreshold, int maxThreshold); /** * Sets the maximum number of sstables in queue before compaction kicks off */ public void setMaximumCompactionThreshold(int threshold); /** * Sets the compaction parameters locally for this node * * Note that this will be set until an ALTER with compaction = {..} is * executed or the node is restarted * * @param options * compaction options with the same syntax as when doing ALTER * ... WITH compaction = {..} */ public void setCompactionParametersJson(String options); public String getCompactionParametersJson(); /** * Sets the compaction parameters locally for this node * * Note that this will be set until an ALTER with compaction = {..} is * executed or the node is restarted * * @param options * compaction options map */ public void setCompactionParameters(Map options); public Map getCompactionParameters(); /** * Get the compression parameters */ public Map getCompressionParameters(); /** * Set the compression parameters * * @param opts * map of string names to values */ public void setCompressionParameters(Map opts); /** * Set new crc check chance */ public void setCrcCheckChance(double crcCheckChance); public boolean isAutoCompactionDisabled(); public long estimateKeys(); /** * Returns a list of the names of the built column indexes for current store * * @return list of the index names */ public List getBuiltIndexes(); /** * Returns a list of filenames that contain the given key on this node * * @param key * @return list of filenames containing the key */ public List getSSTablesForKey(String key); /** * Returns a list of filenames that contain the given key on this node * @param key * @param hexFormat if key is in hex string format * @return list of filenames containing the key */ public List getSSTablesForKey(String key, boolean hexFormat); /** * Scan through Keyspace/ColumnFamily's data directory determine which * SSTables should be loaded and load them */ public void loadNewSSTables(); /** * @return the number of SSTables in L0. Always return 0 if Leveled * compaction is not enabled. */ public int getUnleveledSSTables(); /** * @return sstable count for each level. null unless leveled compaction is * used. array index corresponds to level(int[0] is for level 0, * ...). */ public int[] getSSTableCountPerLevel(); /** * @return sstable fanout size for level compaction strategy. */ default public int getLevelFanoutSize() { // TODO: implement for real. This is sort of default. return 10; } /** * Get the ratio of droppable tombstones to real columns (and non-droppable * tombstones) * * @return ratio */ public double getDroppableTombstoneRatio(); /** * @return the size of SSTables in "snapshots" subdirectory which aren't * live anymore */ public long trueSnapshotsSize(); /** * begin sampling for a specific sampler with a given capacity. The * cardinality may be larger than the capacity, but depending on the use * case it may affect its accuracy */ public void beginLocalSampling(String sampler, int capacity); /** * @return top count items for the sampler since beginLocalSampling * was called */ public CompositeData finishLocalSampling(String sampler, int count) throws OpenDataException; /* * Is Compaction space check enabled */ public boolean isCompactionDiskSpaceCheckEnabled(); /* * Enable/Disable compaction space check */ public void compactionDiskSpaceCheck(boolean enable); }