Interface IteratorEnvironment
public interface IteratorEnvironment
-
Method Summary
Modifier and TypeMethodDescriptiondefault IteratorEnvironmentReturns a new iterator environment object that can be used to create deep copies over sample data.default AuthorizationsReturn the Scan Authorizations used in this Iterator.default IteratorUtil.IteratorScopeReturn the executed scope of the Iterator.default PluginEnvironmentReturns an object containing information about the server where this iterator was run.default SamplerConfigurationdefault TableIdReturn the table Id associated with this iterator.default booleanReturn true if the compaction is a full major compaction.default booleanReturn whether or not the server is running low on memorydefault booleanThere are at least two conditions under which sampling will be enabled for an environment.default booleanTrue if compaction was user initiated.
-
Method Details
-
getIteratorScope
Return the executed scope of the Iterator. Value will be one of the following:IteratorUtil.IteratorScope.scan,IteratorUtil.IteratorScope.minc,IteratorUtil.IteratorScope.majc -
isFullMajorCompaction
default boolean isFullMajorCompaction()Return true if the compaction is a full major compaction. Will throw IllegalStateException ifgetIteratorScope()!=IteratorUtil.IteratorScope.majc. -
getAuthorizations
Return the Scan Authorizations used in this Iterator. Will throw UnsupportedOperationException ifgetIteratorScope()!=IteratorUtil.IteratorScope.scan. -
cloneWithSamplingEnabled
Returns a new iterator environment object that can be used to create deep copies over sample data. The new object created will use the current sampling configuration for the table. The existing iterator environment object will not be modified.Since sample data could be created in many different ways, a good practice for an iterator is to verify the sampling configuration is as expected.
class MyIter implements SortedKeyValueIterator<Key,Value> { SortedKeyValueIterator<Key,Value> source; SortedKeyValueIterator<Key,Value> sampleIter; @Override void init(SortedKeyValueIterator<Key,Value> source, Map<String,String> options, IteratorEnvironment env) { IteratorEnvironment sampleEnv = env.cloneWithSamplingEnabled(); //do some sanity checks on sampling config validateSamplingConfiguration(sampleEnv.getSamplerConfiguration()); sampleIter = source.deepCopy(sampleEnv); this.source = source; } }- Throws:
SampleNotPresentException- when sampling is not configured for table.- Since:
- 1.8.0
-
isSamplingEnabled
default boolean isSamplingEnabled()There are at least two conditions under which sampling will be enabled for an environment. One condition is when sampling is enabled for the scan that starts everything. Another possibility is for a deep copy created with an environment created by callingcloneWithSamplingEnabled()- Returns:
- true if sampling is enabled for this environment.
- Since:
- 1.8.0
-
getSamplerConfiguration
- Returns:
- sampling configuration is sampling is enabled for environment, otherwise returns null.
- Since:
- 1.8.0
-
isUserCompaction
default boolean isUserCompaction()True if compaction was user initiated.- Since:
- 2.0.0
-
getPluginEnv
Returns an object containing information about the server where this iterator was run. To obtain a table configuration, use the following methods:iterEnv.getPluginEnv().getConfiguration(env.getTableId())
- Since:
- 2.1.0
-
getTableId
Return the table Id associated with this iterator.- Since:
- 2.0.0
-
isRunningLowOnMemory
default boolean isRunningLowOnMemory()Return whether or not the server is running low on memory- Returns:
- true if server is running low on memory
- Since:
- 3.0.0
-