-
Notifications
You must be signed in to change notification settings - Fork 47
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
Adding Hierarchical Actor support in actor bundle #79
base: master
Are you sure you want to change the base?
Adding Hierarchical Actor support in actor bundle #79
Conversation
|
||
@Valid | ||
private ConsumerConfig consumer; | ||
|
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.
@AshayKing Can you please expose all other relevant fields as well like Retry strategy in the config.
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.
done
tokenList.add(childrenToken); | ||
|
||
val routingKey = routingKeyGenerator.apply(tokenList.stream().map(String::valueOf).toList()); | ||
val currentChildrenDefaultData = Objects.nonNull(currentChildrenData.getDefaultData()) ? |
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.
The current design is to have one common exchange for all the child tenants, however when talking in terms of isolation(lets say where it is an audit/legal requirement), will it be better to have isolation end to end like isolation of exchanges as well ?
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.
done
@NoArgsConstructor | ||
public class HierarchicalActorConfig extends ActorConfig { | ||
|
||
private boolean useParentConfigInWorker = 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.
Document what this field means
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.
done
No description provided.