public class CounterStatsPublisher extends Object implements StatsPublisher, StatsCollectionTaskIndependent
Constructor and Description |
---|
CounterStatsPublisher() |
Modifier and Type | Method and Description |
---|---|
boolean |
closeConnection()
This method closes the connection to the temporary storage.
|
boolean |
connect(org.apache.hadoop.conf.Configuration hconf)
This method connects to the intermediate statistics database.
|
boolean |
init(org.apache.hadoop.conf.Configuration hconf)
This method does the necessary one-time initializations, possibly creating the tables and
database (if not exist).
|
boolean |
publishStat(String fileID,
Map<String,String> stats)
This method publishes a given statistic into a disk storage, possibly HBase or MySQL.
|
public boolean init(org.apache.hadoop.conf.Configuration hconf)
StatsPublisher
init
in interface StatsPublisher
hconf
- HiveConf that contains the configurations parameters used to connect to
intermediate stats database.public boolean connect(org.apache.hadoop.conf.Configuration hconf)
StatsPublisher
connect
in interface StatsPublisher
hconf
- HiveConf that contains the connection parameters.public boolean publishStat(String fileID, Map<String,String> stats)
StatsPublisher
publishStat
in interface StatsPublisher
fileID
- : a string identification the statistics to be published by all mappers/reducers
and then gathered. The statID is unique per output partition per task, e.g.,:
the output directory name (uniq per FileSinkOperator) +
the partition specs (only for dynamic partitions) +
taskID (last component of task file)stats
- : a map containing key-value pairs, where key is a string representing the statistic
to be published,
and value is a string representing the value for the given statisticpublic boolean closeConnection()
StatsPublisher
closeConnection
in interface StatsPublisher
Copyright © 2017 The Apache Software Foundation. All rights reserved.