Class HdfsLocalityReporter

    • Constructor Detail

      • HdfsLocalityReporter

        public HdfsLocalityReporter()
        Deprecated.
    • Method Detail

      • setHost

        public void setHost​(String hostname)
        Deprecated.
        Set the host name to use when determining locality
        Parameters:
        hostname - The name of this host; should correspond to what HDFS Data Nodes think this is.
      • getName

        public String getName()
        Deprecated.
        Description copied from interface: SolrInfoBean
        Simple common usage name, e.g. BasicQueryHandler, or fully qualified class name.
        Specified by:
        getName in interface SolrInfoBean
      • getMetricNames

        public Set<String> getMetricNames()
        Deprecated.
        Description copied from interface: SolrInfoBean
        Modifiable set of metric names that this component reports (default is null, which means none). If not null then this set is used by SolrInfoBean.registerMetricName(String) to capture what metrics names are reported from this component.

        NOTE: this set has to allow iteration under modifications.

        Specified by:
        getMetricNames in interface SolrInfoBean
      • getMetricRegistry

        public com.codahale.metrics.MetricRegistry getMetricRegistry()
        Deprecated.
        Description copied from interface: SolrInfoBean
        An instance of MetricRegistry that this component uses for metrics reporting (default is null, which means no registry).
        Specified by:
        getMetricRegistry in interface SolrInfoBean
      • initializeMetrics

        public void initializeMetrics​(SolrMetricsContext parentContext,
                                      String scope)
        Deprecated.
        Provide statistics on HDFS block locality, both in terms of bytes and block counts.
        Specified by:
        initializeMetrics in interface SolrMetricProducer
        Parameters:
        parentContext - parent metrics context. If this component has the same life-cycle as the parent it can simply use the parent context, otherwise it should obtain a child context using SolrMetricsContext.getChildContext(Object) passing this as the child.
        scope - component scope
      • registerDirectory

        public void registerDirectory​(HdfsDirectory dir)
        Deprecated.
        Add a directory for block locality reporting. This directory will continue to be checked until its close method has been called.
        Parameters:
        dir - The directory to keep metrics on.