blob: f61746d227a4b10876bbf991197b3585bc797733 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.ambari.infra.job.archive;
import org.apache.ambari.infra.job.JobContextRepository;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.batch.core.BatchStatus;
import org.springframework.batch.core.ExitStatus;
import org.springframework.batch.core.StepContribution;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.StepExecutionListener;
import org.springframework.batch.core.scope.context.ChunkContext;
import org.springframework.batch.core.step.tasklet.Tasklet;
import org.springframework.batch.item.ExecutionContext;
import org.springframework.batch.item.ItemStreamReader;
import org.springframework.batch.repeat.RepeatStatus;
public class DocumentExporter implements Tasklet, StepExecutionListener {
private static final Logger logger = LogManager.getLogger(DocumentExporter.class);
private boolean complete = false;
private final ItemStreamReader<Document> documentReader;
private final DocumentDestination documentDestination;
private final int writeBlockSize;
private final JobContextRepository jobContextRepository;
public DocumentExporter(ItemStreamReader<Document> documentReader, DocumentDestination documentDestination, int writeBlockSize, JobContextRepository jobContextRepository) {
this.documentReader = documentReader;
this.documentDestination = documentDestination;
this.writeBlockSize = writeBlockSize;
this.jobContextRepository = jobContextRepository;
}
@Override
public void beforeStep(StepExecution stepExecution) {
}
@Override
public ExitStatus afterStep(StepExecution stepExecution) {
if (complete) {
return ExitStatus.COMPLETED;
}
else {
return ExitStatus.FAILED;
}
}
@Override
public RepeatStatus execute(StepContribution contribution, ChunkContext chunkContext) throws Exception {
StepExecution stepExecution = chunkContext.getStepContext().getStepExecution();
ExecutionContext executionContext = stepExecution.getExecutionContext();
documentReader.open(executionContext);
DocumentItemWriter writer = null;
int writtenCount = 0;
try {
Document document;
while ((document = documentReader.read()) != null) {
if (writer != null && writtenCount >= writeBlockSize) {
stepExecution = jobContextRepository.getStepExecution(stepExecution.getJobExecutionId(), stepExecution.getId());
if (stepExecution.getJobExecution().getStatus() == BatchStatus.STOPPING) {
logger.info("Received stop signal.");
writer.revert();
writer = null;
return RepeatStatus.CONTINUABLE;
}
writer.close();
writer = null;
writtenCount = 0;
documentReader.update(executionContext);
jobContextRepository.updateExecutionContext(stepExecution);
}
if (writer == null)
writer = documentDestination.open(document);
writer.write(document);
++writtenCount;
}
}
catch (Exception e) {
if (writer != null) {
writer.revert();
writer = null;
}
throw e;
}
finally {
if (writer != null)
writer.close();
documentReader.close();
}
complete = true;
return RepeatStatus.FINISHED;
}
}