Class ResourcePayloadReader
- java.lang.Object
-
- javax.batch.api.chunk.AbstractItemReader
-
- com.ibm.fhir.jbatch.bulkdata.export.fast.ResourcePayloadReader
-
- All Implemented Interfaces:
javax.batch.api.chunk.ItemReader
@Dependent public class ResourcePayloadReader extends javax.batch.api.chunk.AbstractItemReaderA high-performance version of the bulk-export job which doesn't support typeFilter and so can use a more efficient mechanism to page through the set of resources filtered by _lastModified. The Java Batch framework separates the reader from the writer. On the face of it, separation of concerns seems like a good idea. However, because the fetching of the data is controlled by the persistence layer and the fact that we may need to end one multi-part upload and continue feeding a new multi-part upload, the separation makes things a lot harder and less readable - there is a lack of cohesion. To address this, we handle both reading and writing in this class, leaving the ItemWriter as a minimal stub. The framework is still leveraged for checkpointing. ThereadItem()call simply returns an Object if there is more data to process. TheResourceExportCheckpointAlgorithmwill always say we need a checkpoint, so the checkpoint will occur immediately after each read/write. The export is complete whenreadItem()returns null. The export assumes that the persistence layer can efficiently scan forward based on the last_updated time of a resource. It is possible that multiple resources may share the same last_updated time, so this class has to track which resources have already been processed for a given timestamp. This is fairly easy, because the persistence layer must provide the data in order of last_updated. Because the number of resources for a given timestamp is probably very small, it is more efficient to track it this way than asking the persistence layer (e.g. JDBC) to sort. This can cause performance issues, because it negates the benefit of traversing an index in order.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) StringcosApiKeyPropertyThe IBM COS API key or S3 access key.(package private) StringcosBucketFileMaxResources(package private) StringcosBucketNameThe Cos bucket name.(package private) StringcosBucketPathPrefixThe Cos bucket path prefix.(package private) StringcosCredentialIbmIf use IBM credential or Amazon secret keys.(package private) StringcosEndpointUrlThe Cos End point URL.(package private) StringcosLocationThe Cos End point location.(package private) StringcosSrvinstIdThe IBM COS service instance id or s3 secret key.(package private) StringfhirDatastoreIdFhir data store id.protected StringfhirExportFormatFhir export format.(package private) FHIRPersistencefhirPersistence(package private) StringfhirResourceTypeFhir resource type to process.(package private) StringfhirSearchFromDateFhir Search from date.(package private) StringfhirSearchPageSizeFhir search page size.(package private) StringfhirSearchToDateFhir search to date.(package private) StringfhirTenantFhir tenant id.(package private) StringfhirTypeFiltersFhir export type filters.(package private) StringincomingUrl(package private) javax.batch.runtime.context.JobContextjobContext(package private) intresourcesPerObject(package private) Class<? extends Resource>resourceType(package private) javax.batch.runtime.context.StepContextstepCtx
-
Constructor Summary
Constructors Constructor Description ResourcePayloadReader()Public constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SerializablecheckpointInfo()voidclose()protected booleanisTxTimeExpired()Check to see if the current clock time exceeds the marker time we laid down to stop processing to make sure we commit before the Liberty transaction timeout limit.voidopen(Serializable checkpoint)BooleanprocessPayload(ResourcePayload t)Process this payload result.ObjectreadItem()
-
-
-
Field Detail
-
fhirPersistence
FHIRPersistence fhirPersistence
-
fhirTenant
@Inject String fhirTenant
Fhir tenant id.
-
fhirDatastoreId
@Inject String fhirDatastoreId
Fhir data store id.
-
fhirResourceType
@Inject String fhirResourceType
Fhir resource type to process.
-
cosApiKeyProperty
@Inject String cosApiKeyProperty
The IBM COS API key or S3 access key.
-
cosSrvinstId
@Inject String cosSrvinstId
The IBM COS service instance id or s3 secret key.
-
cosEndpointUrl
@Inject String cosEndpointUrl
The Cos End point URL.
-
cosLocation
@Inject String cosLocation
The Cos End point location.
-
cosBucketName
@Inject String cosBucketName
The Cos bucket name.
-
cosBucketPathPrefix
@Inject String cosBucketPathPrefix
The Cos bucket path prefix.
-
cosCredentialIbm
@Inject String cosCredentialIbm
If use IBM credential or Amazon secret keys.
-
fhirExportFormat
@Inject protected String fhirExportFormat
Fhir export format.
-
fhirSearchFromDate
@Inject String fhirSearchFromDate
Fhir Search from date.
-
fhirSearchToDate
@Inject String fhirSearchToDate
Fhir search to date.
-
fhirTypeFilters
@Inject String fhirTypeFilters
Fhir export type filters. Ignored for the basicsystem export
-
fhirSearchPageSize
@Inject String fhirSearchPageSize
Fhir search page size. Not used
-
incomingUrl
@Inject String incomingUrl
-
cosBucketFileMaxResources
@Inject String cosBucketFileMaxResources
-
resourcesPerObject
int resourcesPerObject
-
stepCtx
@Inject javax.batch.runtime.context.StepContext stepCtx
-
jobContext
@Inject javax.batch.runtime.context.JobContext jobContext
-
-
Method Detail
-
open
public void open(Serializable checkpoint) throws Exception
- Specified by:
openin interfacejavax.batch.api.chunk.ItemReader- Overrides:
openin classjavax.batch.api.chunk.AbstractItemReader- Throws:
Exception
-
readItem
public Object readItem() throws Exception
- Specified by:
readItemin interfacejavax.batch.api.chunk.ItemReader- Specified by:
readItemin classjavax.batch.api.chunk.AbstractItemReader- Throws:
Exception
-
processPayload
public Boolean processPayload(ResourcePayload t)
Process this payload result. Called as a lambda (callback) from the persistence layer. This method collects the payloads into a buffer and will trigger a write of that buffer to COS if we hit a certain threshold.- Parameters:
t-- Returns:
-
isTxTimeExpired
protected boolean isTxTimeExpired()
Check to see if the current clock time exceeds the marker time we laid down to stop processing to make sure we commit before the Liberty transaction timeout limit.- Returns:
-
checkpointInfo
public Serializable checkpointInfo() throws Exception
- Specified by:
checkpointInfoin interfacejavax.batch.api.chunk.ItemReader- Overrides:
checkpointInfoin classjavax.batch.api.chunk.AbstractItemReader- Throws:
Exception
-
-