Merge pull request #2324 from hapifhir/single-threading-mdm

Ensure Single threading mdm
This commit is contained in:
Tadgh 2021-01-29 10:01:56 -05:00 committed by GitHub
commit 96b4e5ab38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 6 deletions

View File

@ -51,7 +51,9 @@ public class MdmQueueConsumerLoader {
public void startListeningToMdmChannel() {
if (myMdmChannel == null) {
ChannelConsumerSettings config = new ChannelConsumerSettings();
config.setConcurrentConsumers(myMdmSettings.getConcurrentConsumers());
myMdmChannel = myChannelFactory.getOrCreateReceiver(IMdmSettings.EMPI_CHANNEL_NAME, ResourceModifiedJsonMessage.class, config);
if (myMdmChannel == null) {
ourLog.error("Unable to create receiver for {}", IMdmSettings.EMPI_CHANNEL_NAME);

View File

@ -26,7 +26,6 @@ import java.util.stream.Collectors;
public interface IMdmSettings {
String MDM_CHANNEL_NAME = "mdm";
String EMPI_CHANNEL_NAME = "empi";
// Parallel processing of MDM can result in missed matches. Best to single-thread.

View File

@ -68,11 +68,6 @@ public class MdmSettings implements IMdmSettings {
return myConcurrentConsumers;
}
public MdmSettings setConcurrentConsumers(int theConcurrentConsumers) {
myConcurrentConsumers = theConcurrentConsumers;
return this;
}
public String getScriptText() {
return myScriptText;
}