-
Notifications
You must be signed in to change notification settings - Fork 28
Obanyc 3812 #146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Obanyc 3812 #146
Conversation
… Service Impl. After getting that done, we begin testing.
…t. Still need to implement a "switching" methodology that will allow us to use either ZMQ or Kafka without code modifications. This should be about ready to test.
…hat was not created before.
| } | ||
|
|
||
| public void startListenerThread() { | ||
| if (_initialized == true) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please confirm if this is actually needed. Historically the DummyPartitionedInputQueueListener didn't actually implement any logic, and was simply a place holder.
| public String getQueueName() { | ||
| return _configurationService.getConfigurationValueAsString( | ||
| "inference-engine.outputQueueName", null); | ||
| "inference-engine.outputQueueName", "bhs_queue"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't the right outputQueueName. We should probably avoid setting any defaults here to make it explicit that these need to be set.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to swap between ZMQ and Kafka without code changes?
…. Included is some streamlining and removal of duplicate code in lots of places for the IE.
No description provided.