use of org.apache.hadoop.hive.ql.parse.repl.metric.event.Metric in project hive by apache.
the class TestScheduledReplicationScenarios method generateLoadStages.
private List<Stage> generateLoadStages(boolean isBootstrap) {
List<Stage> stages = new ArrayList<>();
// Ranger
Stage rangerDump = new Stage("RANGER_LOAD", Status.SUCCESS, 0);
Metric rangerMetric = new Metric(ReplUtils.MetricName.POLICIES.name(), 0);
rangerDump.addMetric(rangerMetric);
stages.add(rangerDump);
// Atlas
Stage atlasDump = new Stage("ATLAS_LOAD", Status.SUCCESS, 0);
Metric atlasMetric = new Metric(ReplUtils.MetricName.ENTITIES.name(), 0);
atlasDump.addMetric(atlasMetric);
stages.add(atlasDump);
// Hive
Stage replDump = new Stage("REPL_LOAD", Status.SUCCESS, 0);
if (isBootstrap) {
Metric hiveMetric = new Metric(ReplUtils.MetricName.TABLES.name(), 1);
hiveMetric.setCurrentCount(1);
replDump.addMetric(hiveMetric);
hiveMetric = new Metric(ReplUtils.MetricName.FUNCTIONS.name(), 0);
replDump.addMetric(hiveMetric);
} else {
Metric hiveMetric = new Metric(ReplUtils.MetricName.EVENTS.name(), 1);
hiveMetric.setCurrentCount(1);
replDump.addMetric(hiveMetric);
}
stages.add(replDump);
return stages;
}
use of org.apache.hadoop.hive.ql.parse.repl.metric.event.Metric in project hive by apache.
the class ReplicationMetricCollector method reportStageStart.
public void reportStageStart(String stageName, Map<String, Long> metricMap) throws SemanticException {
if (isEnabled) {
LOG.debug("Stage Started {}, {}, {}", stageName, metricMap.size(), metricMap);
Progress progress = replicationMetric.getProgress();
progress.setStatus(Status.IN_PROGRESS);
Stage stage = new Stage(stageName, Status.IN_PROGRESS, getCurrentTimeInMillis());
for (Map.Entry<String, Long> metric : metricMap.entrySet()) {
stage.addMetric(new Metric(metric.getKey(), metric.getValue()));
}
progress.addStage(stage);
replicationMetric.setProgress(progress);
metricCollector.addMetric(replicationMetric);
}
}
use of org.apache.hadoop.hive.ql.parse.repl.metric.event.Metric in project hive by apache.
the class ReplicationMetricCollector method reportStageProgress.
public void reportStageProgress(String stageName, String metricName, long count) throws SemanticException {
if (isEnabled) {
LOG.debug("Stage progress {}, {}, {}", stageName, metricName, count);
Progress progress = replicationMetric.getProgress();
Stage stage = progress.getStageByName(stageName);
Metric metric = stage.getMetricByName(metricName);
metric.setCurrentCount(metric.getCurrentCount() + count);
if (metric.getCurrentCount() > metric.getTotalCount()) {
metric.setTotalCount(metric.getCurrentCount());
}
stage.addMetric(metric);
replicationMetric.setProgress(progress);
metricCollector.addMetric(replicationMetric);
}
}
use of org.apache.hadoop.hive.ql.parse.repl.metric.event.Metric in project hive by apache.
the class TestReplicationMetricSink method testSuccessBootstrapDumpMetrics.
@Test
public void testSuccessBootstrapDumpMetrics() throws Exception {
ReplicationMetricCollector bootstrapDumpMetricCollector = new BootstrapDumpMetricCollector("testAcidTablesReplLoadBootstrapIncr_1592205875387", "hdfs://localhost:65158/tmp/org_apache_hadoop_hive_ql_parse_TestReplicationScenarios_245261428230295" + "/hrepl0/dGVzdGFjaWR0YWJsZXNyZXBsbG9hZGJvb3RzdHJhcGluY3JfMTU5MjIwNTg3NTM4Nw==/0/hive", conf);
Map<String, Long> metricMap = new HashMap<>();
metricMap.put(ReplUtils.MetricName.TABLES.name(), (long) 10);
metricMap.put(ReplUtils.MetricName.FUNCTIONS.name(), (long) 1);
bootstrapDumpMetricCollector.reportStageStart("dump", metricMap);
bootstrapDumpMetricCollector.reportStageProgress("dump", ReplUtils.MetricName.TABLES.name(), 1);
bootstrapDumpMetricCollector.reportStageProgress("dump", ReplUtils.MetricName.TABLES.name(), 2);
bootstrapDumpMetricCollector.reportStageProgress("dump", ReplUtils.MetricName.FUNCTIONS.name(), 1);
bootstrapDumpMetricCollector.reportStageEnd("dump", Status.SUCCESS, 10, new SnapshotUtils.ReplSnapshotCount(), new ReplStatsTracker(0));
bootstrapDumpMetricCollector.reportEnd(Status.SUCCESS);
Metadata expectedMetadata = new Metadata("testAcidTablesReplLoadBootstrapIncr_1592205875387", Metadata.ReplicationType.BOOTSTRAP, "dummyDir");
expectedMetadata.setLastReplId(10);
Progress expectedProgress = new Progress();
expectedProgress.setStatus(Status.SUCCESS);
Stage dumpStage = new Stage("dump", Status.SUCCESS, 0);
dumpStage.setEndTime(0);
Metric expectedTableMetric = new Metric(ReplUtils.MetricName.TABLES.name(), 10);
expectedTableMetric.setCurrentCount(3);
Metric expectedFuncMetric = new Metric(ReplUtils.MetricName.FUNCTIONS.name(), 1);
expectedFuncMetric.setCurrentCount(1);
dumpStage.addMetric(expectedTableMetric);
dumpStage.addMetric(expectedFuncMetric);
expectedProgress.addStage(dumpStage);
ReplicationMetric expectedMetric = new ReplicationMetric(1, "repl", 0, expectedMetadata);
expectedMetric.setProgress(expectedProgress);
Thread.sleep(1000 * 20);
GetReplicationMetricsRequest metricsRequest = new GetReplicationMetricsRequest();
metricsRequest.setPolicy("repl");
ReplicationMetricList actualReplicationMetrics = Hive.get(conf).getMSC().getReplicationMetrics(metricsRequest);
ReplicationMetrics actualThriftMetric = actualReplicationMetrics.getReplicationMetricList().get(0);
ObjectMapper mapper = new ObjectMapper();
ReplicationMetric actualMetric = new ReplicationMetric(actualThriftMetric.getScheduledExecutionId(), actualThriftMetric.getPolicy(), actualThriftMetric.getDumpExecutionId(), mapper.readValue(actualThriftMetric.getMetadata(), Metadata.class));
actualMetric.setMessageFormat(actualThriftMetric.getMessageFormat());
ProgressMapper progressMapper = mapper.readValue(deSerialize(actualThriftMetric.getProgress()), ProgressMapper.class);
Progress progress = new Progress();
progress.setStatus(progressMapper.getStatus());
for (StageMapper stageMapper : progressMapper.getStages()) {
Stage stage = new Stage();
stage.setName(stageMapper.getName());
stage.setStatus(stageMapper.getStatus());
stage.setStartTime(stageMapper.getStartTime());
stage.setEndTime(stageMapper.getEndTime());
for (Metric metric : stageMapper.getMetrics()) {
stage.addMetric(metric);
}
progress.addStage(stage);
}
actualMetric.setProgress(progress);
checkSuccess(actualMetric, expectedMetric, "dump", Arrays.asList(ReplUtils.MetricName.TABLES.name(), ReplUtils.MetricName.FUNCTIONS.name()));
// Incremental
conf.set(Constants.SCHEDULED_QUERY_EXECUTIONID, "2");
ReplicationMetricCollector incrementDumpMetricCollector = new IncrementalDumpMetricCollector("testAcidTablesReplLoadBootstrapIncr_1592205875387", "hdfs://localhost:65158/tmp/org_apache_hadoop_hive_ql_parse_TestReplicationScenarios_245261428230295" + "/hrepl0/dGVzdGFjaWR0YWJsZXNyZXBsbG9hZGJvb3RzdHJhcGluY3JfMTU5MjIwNTg3NTM4Nw==/0/hive", conf);
metricMap = new HashMap<>();
metricMap.put(ReplUtils.MetricName.EVENTS.name(), (long) 10);
incrementDumpMetricCollector.reportStageStart("dump", metricMap);
incrementDumpMetricCollector.reportStageProgress("dump", ReplUtils.MetricName.EVENTS.name(), 10);
incrementDumpMetricCollector.reportStageEnd("dump", Status.SUCCESS, 10, new SnapshotUtils.ReplSnapshotCount(), new ReplStatsTracker(0));
incrementDumpMetricCollector.reportEnd(Status.SUCCESS);
expectedMetadata = new Metadata("testAcidTablesReplLoadBootstrapIncr_1592205875387", Metadata.ReplicationType.INCREMENTAL, "dummyDir");
expectedMetadata.setLastReplId(10);
expectedProgress = new Progress();
expectedProgress.setStatus(Status.SUCCESS);
dumpStage = new Stage("dump", Status.SUCCESS, 0);
dumpStage.setEndTime(0);
Metric expectedEventsMetric = new Metric(ReplUtils.MetricName.EVENTS.name(), 10);
expectedEventsMetric.setCurrentCount(10);
dumpStage.addMetric(expectedEventsMetric);
expectedProgress.addStage(dumpStage);
expectedMetric = new ReplicationMetric(2, "repl", 0, expectedMetadata);
expectedMetric.setProgress(expectedProgress);
Thread.sleep(1000 * 20);
metricsRequest = new GetReplicationMetricsRequest();
metricsRequest.setPolicy("repl");
actualReplicationMetrics = Hive.get(conf).getMSC().getReplicationMetrics(metricsRequest);
Assert.assertEquals(2, actualReplicationMetrics.getReplicationMetricListSize());
actualThriftMetric = actualReplicationMetrics.getReplicationMetricList().get(0);
mapper = new ObjectMapper();
actualMetric = new ReplicationMetric(actualThriftMetric.getScheduledExecutionId(), actualThriftMetric.getPolicy(), actualThriftMetric.getDumpExecutionId(), mapper.readValue(actualThriftMetric.getMetadata(), Metadata.class));
actualMetric.setMessageFormat(actualThriftMetric.getMessageFormat());
progressMapper = mapper.readValue(deSerialize(actualThriftMetric.getProgress()), ProgressMapper.class);
progress = new Progress();
progress.setStatus(progressMapper.getStatus());
for (StageMapper stageMapper : progressMapper.getStages()) {
Stage stage = new Stage();
stage.setName(stageMapper.getName());
stage.setStatus(stageMapper.getStatus());
stage.setStartTime(stageMapper.getStartTime());
stage.setEndTime(stageMapper.getEndTime());
for (Metric metric : stageMapper.getMetrics()) {
stage.addMetric(metric);
}
progress.addStage(stage);
}
actualMetric.setProgress(progress);
checkSuccessIncremental(actualMetric, expectedMetric, "dump", Arrays.asList(ReplUtils.MetricName.EVENTS.name()));
// Failover Metrics Sink
Mockito.when(fmd.getFailoverEventId()).thenReturn(100L);
Mockito.when(fmd.getFilePath()).thenReturn("hdfs://localhost:65158/tmp/org_apache_hadoop_hive_ql_parse_TestReplicationScenarios_245261428230295" + "/hrepl0/dGVzdGFjaWR0YWJsZXNyZXBsbG9hZGJvb3RzdHJhcGluY3JfMTU5MjIwNTg3NTM4Nw==/0/hive/");
conf.set(Constants.SCHEDULED_QUERY_EXECUTIONID, "3");
String stagingDir = "hdfs://localhost:65158/tmp/org_apache_hadoop_hive_ql_parse_TestReplicationScenarios_245261428230295" + "/hrepl0/dGVzdGFjaWR0YWJsZXNyZXBsbG9hZGJvb3RzdHJhcGluY3JfMTU5MjIwNTg3NTM4Nw==/0/hive/";
ReplicationMetricCollector failoverDumpMetricCollector = new IncrementalDumpMetricCollector("testAcidTablesReplLoadBootstrapIncr_1592205875387", stagingDir, conf);
metricMap = new HashMap<String, Long>() {
{
put(ReplUtils.MetricName.EVENTS.name(), (long) 10);
}
};
failoverDumpMetricCollector.reportFailoverStart("dump", metricMap, fmd);
failoverDumpMetricCollector.reportStageProgress("dump", ReplUtils.MetricName.EVENTS.name(), 10);
failoverDumpMetricCollector.reportStageEnd("dump", Status.SUCCESS, 10, new SnapshotUtils.ReplSnapshotCount(), new ReplStatsTracker(0));
failoverDumpMetricCollector.reportEnd(Status.FAILOVER_READY);
expectedMetadata = new Metadata("testAcidTablesReplLoadBootstrapIncr_1592205875387", Metadata.ReplicationType.INCREMENTAL, "dummyDir");
expectedMetadata.setLastReplId(10);
expectedMetadata.setFailoverEventId(100);
expectedMetadata.setFailoverMetadataLoc(stagingDir + FailoverMetaData.FAILOVER_METADATA);
expectedProgress = new Progress();
expectedProgress.setStatus(Status.FAILOVER_READY);
dumpStage = new Stage("dump", Status.SUCCESS, 0);
dumpStage.setEndTime(0);
expectedEventsMetric = new Metric(ReplUtils.MetricName.EVENTS.name(), 10);
expectedEventsMetric.setCurrentCount(10);
dumpStage.addMetric(expectedEventsMetric);
expectedProgress.addStage(dumpStage);
expectedMetric = new ReplicationMetric(3, "repl", 0, expectedMetadata);
expectedMetric.setProgress(expectedProgress);
Thread.sleep(1000 * 20);
metricsRequest = new GetReplicationMetricsRequest();
metricsRequest.setPolicy("repl");
actualReplicationMetrics = Hive.get(conf).getMSC().getReplicationMetrics(metricsRequest);
Assert.assertEquals(3, actualReplicationMetrics.getReplicationMetricListSize());
actualThriftMetric = actualReplicationMetrics.getReplicationMetricList().get(0);
mapper = new ObjectMapper();
actualMetric = new ReplicationMetric(actualThriftMetric.getScheduledExecutionId(), actualThriftMetric.getPolicy(), actualThriftMetric.getDumpExecutionId(), mapper.readValue(actualThriftMetric.getMetadata(), Metadata.class));
actualMetric.setMessageFormat(actualThriftMetric.getMessageFormat());
progressMapper = mapper.readValue(deSerialize(actualThriftMetric.getProgress()), ProgressMapper.class);
progress = new Progress();
progress.setStatus(progressMapper.getStatus());
for (StageMapper stageMapper : progressMapper.getStages()) {
Stage stage = new Stage();
stage.setName(stageMapper.getName());
stage.setStatus(stageMapper.getStatus());
stage.setStartTime(stageMapper.getStartTime());
stage.setEndTime(stageMapper.getEndTime());
for (Metric metric : stageMapper.getMetrics()) {
stage.addMetric(metric);
}
progress.addStage(stage);
}
actualMetric.setProgress(progress);
checkSuccessIncremental(actualMetric, expectedMetric, "dump", Arrays.asList(ReplUtils.MetricName.EVENTS.name()));
}
use of org.apache.hadoop.hive.ql.parse.repl.metric.event.Metric in project hive by apache.
the class TestReplicationMetricCollector method testSuccessIncrDumpMetrics.
@Test
public void testSuccessIncrDumpMetrics() throws Exception {
ReplicationMetricCollector incrDumpMetricCollector = new IncrementalDumpMetricCollector("db", "dummyDir", conf);
Map<String, Long> metricMap = new HashMap<>();
metricMap.put(ReplUtils.MetricName.TABLES.name(), (long) 10);
metricMap.put(ReplUtils.MetricName.FUNCTIONS.name(), (long) 1);
incrDumpMetricCollector.reportStageStart("dump", metricMap);
incrDumpMetricCollector.reportStageProgress("dump", ReplUtils.MetricName.TABLES.name(), 1);
List<ReplicationMetric> actualMetrics = MetricCollector.getInstance().getMetrics();
Assert.assertEquals(1, actualMetrics.size());
incrDumpMetricCollector.reportStageProgress("dump", ReplUtils.MetricName.TABLES.name(), 2);
incrDumpMetricCollector.reportStageProgress("dump", ReplUtils.MetricName.FUNCTIONS.name(), 1);
actualMetrics = MetricCollector.getInstance().getMetrics();
Assert.assertEquals(1, actualMetrics.size());
incrDumpMetricCollector.reportStageEnd("dump", Status.SUCCESS, 10, new SnapshotUtils.ReplSnapshotCount(), new ReplStatsTracker(0));
incrDumpMetricCollector.reportEnd(Status.SUCCESS);
actualMetrics = MetricCollector.getInstance().getMetrics();
Assert.assertEquals(1, actualMetrics.size());
Metadata expectedMetadata = new Metadata("db", Metadata.ReplicationType.INCREMENTAL, "dummyDir");
expectedMetadata.setLastReplId(10);
Progress expectedProgress = new Progress();
expectedProgress.setStatus(Status.SUCCESS);
Stage dumpStage = new Stage("dump", Status.SUCCESS, 0);
dumpStage.setEndTime(0);
Metric expectedTableMetric = new Metric(ReplUtils.MetricName.TABLES.name(), 10);
expectedTableMetric.setCurrentCount(3);
Metric expectedFuncMetric = new Metric(ReplUtils.MetricName.FUNCTIONS.name(), 1);
expectedFuncMetric.setCurrentCount(1);
dumpStage.addMetric(expectedTableMetric);
dumpStage.addMetric(expectedFuncMetric);
expectedProgress.addStage(dumpStage);
ReplicationMetric expectedMetric = new ReplicationMetric(1, "repl", 0, expectedMetadata);
expectedMetric.setProgress(expectedProgress);
checkSuccess(actualMetrics.get(0), expectedMetric, "dump", Arrays.asList(ReplUtils.MetricName.TABLES.name(), ReplUtils.MetricName.FUNCTIONS.name()));
}
Aggregations