use of gov.cms.bfd.pipeline.rda.grpc.RdaServerJob in project beneficiary-fhir-data by CMSgov.
the class PipelineApplication method main.
/**
* This method is the one that will get called when users launch the application from the command
* line.
*
* @param args (should be empty, as this application accepts configuration via environment
* variables)
* @throws Exception any unhandled checked {@link Exception}s that are encountered will cause the
* application to halt
*/
public static void main(String[] args) throws Exception {
LOGGER.info("Application starting up!");
configureUnexpectedExceptionHandlers();
AppConfiguration appConfig = null;
try {
appConfig = AppConfiguration.readConfigFromEnvironmentVariables();
LOGGER.info("Application configured: '{}'", appConfig);
} catch (AppConfigurationException e) {
System.err.println(e.getMessage());
LOGGER.warn("Invalid app configuration.", e);
System.exit(EXIT_CODE_BAD_CONFIG);
}
MetricRegistry appMetrics = new MetricRegistry();
appMetrics.registerAll(new MemoryUsageGaugeSet());
appMetrics.registerAll(new GarbageCollectorMetricSet());
Slf4jReporter appMetricsReporter = Slf4jReporter.forRegistry(appMetrics).outputTo(LOGGER).build();
MetricOptions metricOptions = appConfig.getMetricOptions();
if (metricOptions.getNewRelicMetricKey().isPresent()) {
SenderConfiguration configuration = SenderConfiguration.builder(metricOptions.getNewRelicMetricHost().orElse(null), metricOptions.getNewRelicMetricPath().orElse(null)).httpPoster(new OkHttpPoster()).apiKey(metricOptions.getNewRelicMetricKey().orElse(null)).build();
MetricBatchSender metricBatchSender = MetricBatchSender.create(configuration);
Attributes commonAttributes = new Attributes().put("host", metricOptions.getHostname().orElse("unknown")).put("appName", metricOptions.getNewRelicAppName().orElse(null));
NewRelicReporter newRelicReporter = NewRelicReporter.build(appMetrics, metricBatchSender).commonAttributes(commonAttributes).build();
newRelicReporter.start(metricOptions.getNewRelicMetricPeriod().orElse(15), TimeUnit.SECONDS);
}
appMetricsReporter.start(1, TimeUnit.HOURS);
/*
* Create the PipelineManager that will be responsible for running and managing the various
* jobs.
*/
PipelineJobRecordStore jobRecordStore = new PipelineJobRecordStore(appMetrics);
PipelineManager pipelineManager = new PipelineManager(appMetrics, jobRecordStore);
registerShutdownHook(appMetrics, pipelineManager);
LOGGER.info("Job processing started.");
// Create a pooled data source for use by the DatabaseSchemaUpdateJob.
final HikariDataSource pooledDataSource = PipelineApplicationState.createPooledDataSource(appConfig.getDatabaseOptions(), appMetrics);
/*
* Register and wait for the database schema job to run, so that we don't have to worry about
* declaring it as a dependency (since it is for pretty much everything right now).
*/
pipelineManager.registerJob(new DatabaseSchemaUpdateJob(pooledDataSource));
PipelineJobRecord<NullPipelineJobArguments> dbSchemaJobRecord = jobRecordStore.submitPendingJob(DatabaseSchemaUpdateJob.JOB_TYPE, null);
try {
jobRecordStore.waitForJobs(dbSchemaJobRecord);
} catch (InterruptedException e) {
pooledDataSource.close();
throw new InterruptedException();
}
/*
* Create and register the other jobs.
*/
if (appConfig.getCcwRifLoadOptions().isPresent()) {
// Create an application state that reuses the existing pooled data source with the ccw/rif
// persistence unit.
final PipelineApplicationState appState = new PipelineApplicationState(appMetrics, pooledDataSource, PipelineApplicationState.PERSISTENCE_UNIT_NAME, Clock.systemUTC());
pipelineManager.registerJob(createCcwRifLoadJob(appConfig.getCcwRifLoadOptions().get(), appState));
LOGGER.info("Registered CcwRifLoadJob.");
} else {
LOGGER.warn("CcwRifLoadJob is disabled in app configuration.");
}
if (appConfig.getRdaLoadOptions().isPresent()) {
LOGGER.info("RDA API jobs are enabled in app configuration.");
// Create an application state that reuses the existing pooled data source with the rda
// persistence unit.
final PipelineApplicationState rdaAppState = new PipelineApplicationState(appMetrics, pooledDataSource, PipelineApplicationState.RDA_PERSISTENCE_UNIT_NAME, Clock.systemUTC());
final RdaLoadOptions rdaLoadOptions = appConfig.getRdaLoadOptions().get();
final Optional<RdaServerJob> mockServerJob = rdaLoadOptions.createRdaServerJob();
if (mockServerJob.isPresent()) {
pipelineManager.registerJob(mockServerJob.get());
LOGGER.warn("Registered RdaServerJob.");
} else {
LOGGER.info("Skipping RdaServerJob registration - not enabled in app configuration.");
}
pipelineManager.registerJob(rdaLoadOptions.createFissClaimsLoadJob(rdaAppState));
LOGGER.info("Registered RdaFissClaimLoadJob.");
pipelineManager.registerJob(rdaLoadOptions.createMcsClaimsLoadJob(rdaAppState));
LOGGER.info("Registered RdaMcsClaimLoadJob.");
} else {
LOGGER.info("RDA API jobs are not enabled in app configuration.");
}
/*
* At this point, we're done here with the main thread. From now on, the PipelineManager's
* executor service should be the only non-daemon thread running (and whatever it kicks off).
* Once/if that thread stops, the application will run all registered shutdown hooks and Wait
* for the PipelineManager to stop running jobs, and then check to see if we should exit
* normally with 0 or abnormally with a non-0 because a job failed.
*/
}
Aggregations