Interface IteratorEnvironment


  • public interface IteratorEnvironment
    • Method Detail

      • registerSideChannel

        @Deprecated
        default void registerSideChannel​(SortedKeyValueIterator<Key,​Value> iter)
        Deprecated.
        since 2.0.0. This was an experimental feature and was never tested or documented.
      • cloneWithSamplingEnabled

        default IteratorEnvironment 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 calling cloneWithSamplingEnabled()
        Returns:
        true if sampling is enabled for this environment.
        Since:
        1.8.0
      • getSamplerConfiguration

        default SamplerConfiguration 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
      • getServiceEnv

        default ServiceEnvironment getServiceEnv()
        Returns an object containing information about the server where this iterator was run. To obtain a table configuration, use the following methods:
         iterEnv.getServiceEnv().getConfiguration(env.getTableId())
         
        Since:
        2.0.0
      • getTableId

        default TableId getTableId()
        Return the table Id associated with this iterator.
        Since:
        2.0.0