关注 spark技术分享,
撸spark源码 玩spark最佳实践

MetricsConfig — Metrics System Configuration

MetricsConfig — Metrics System Configuration

MetricsConfig is the configuration of the MetricsSystem (i.e. metrics sources and sinks).

MetricsConfig is created when MetricsSystem is.

MetricsConfig uses metrics.properties as the default metrics configuration file. It is configured using spark.metrics.conf configuration property. The file is first loaded from the path directly before using Spark’s CLASSPATH.

MetricsConfig accepts a metrics configuration using spark.metrics.conf.-prefixed configuration properties.

Spark comes with conf/metrics.properties.template file that is a template of metrics configuration.

MetricsConfig makes sure that the default metrics properties are always defined.

Table 1. MetricsConfig’s Default Metrics Properties
Name Description

*.sink.servlet.class

org.apache.spark.metrics.sink.MetricsServlet

*.sink.servlet.path

/metrics/json

master.sink.servlet.path

/metrics/master/json

applications.sink.servlet.path

/metrics/applications/json

Note

The order of precedence of metrics configuration settings is as follows:

  1. Default metrics properties

  2. spark.metrics.conf configuration property or metrics.properties configuration file

  3. spark.metrics.conf.-prefixed Spark properties

MetricsConfig takes a SparkConf when created.

Table 2. MetricsConfig’s Internal Registries and Counters
Name Description

properties

java.util.Properties with metrics properties

Used to initialize per-subsystem’s perInstanceSubProperties.

perInstanceSubProperties

Lookup table of metrics properties per subsystem

Initializing MetricsConfig — initialize Method

initialize takes all Spark properties that start with spark.metrics.conf. prefix from SparkConf and adds them to properties (without the prefix).

In the end, initialize splits configuration per Spark subsystem with the default configuration (denoted as *) assigned to all subsystems afterwards.

Note
initialize accepts * (star) for the default configuration or any combination of lower- and upper-case letters for Spark subsystem names.
Note
initialize is used exclusively when MetricsSystem is created.

setDefaultProperties Internal Method

setDefaultProperties sets the default properties (in the input prop).

Note
setDefaultProperties is used exclusively when MetricsConfig is initialized.

Loading Custom Metrics Configuration File or metrics.properties — loadPropertiesFromFile Method

loadPropertiesFromFile tries to open the input path file (if defined) or the default metrics configuration file metrics.properties (on CLASSPATH).

If either file is available, loadPropertiesFromFile loads the properties (to properties registry).

In case of exceptions, you should see the following ERROR message in the logs followed by the exception.

Note
loadPropertiesFromFile is used exclusively when MetricsConfig is initialized.

Grouping Properties Per Subsystem — subProperties Method

subProperties takes prop properties and destructures keys given regex. subProperties takes the matching prefix (of a key per regex) and uses it as a new key with the value(s) being the matching suffix(es).

Note
subProperties is used when MetricsConfig is initialized (to apply the default metrics configuration) and when MetricsSystem registers metrics sources and sinks.

getInstance Method

getInstance…​FIXME

Note
getInstance is used when…​FIXME
赞(0) 打赏
未经允许不得转载:spark技术分享 » MetricsConfig — Metrics System Configuration
分享到: 更多 (0)

关注公众号:spark技术分享

联系我们联系我们

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏