-
Notifications
You must be signed in to change notification settings - Fork 5
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
Provide a simple way to provision the topology required by the transport #94
Comments
Yeah this is for a lot of our developers a problem and they still want to use webjobs because they don't have to think about creating this in our development pipeline. We are also facing problems executing the CLI tool on our Azure Dev Ops (Hosted) Agents. I'm aware that it's a chicken egg problem |
Yes, this should be a "must have" 👍 |
Once Azure/azure-functions-servicebus-extension#82 is resolved, there's potentially a way to have this unblocked. |
While it’s not a full solution, here’s a hint of how to get unstuck if you want the topology to be created along with a function deployment. |
Thank @SeanFeldman I was trying with something like that! |
Anyone's looking to provision their topology automatically here's an idea of how to get it implemented today. There's also a Functions feature request you could upvote to make this idea supported ootb. |
@SeanFeldman what about the "other" thing that is for now missing, the database side with the necessary tables like SagaData and OutboxData. |
@andrekiba, the comment above was just an idea to unblock those that absolutely need it. This is by no means an official solution by Particular.
When an endpoint is created, which is what will happen when using the idea I've described, all installers will be executed, assuming |
Thank you @SeanFeldman I try today and I let you know...but as you said I suppose yes. Endpoint configuration code
As you can see we have the method that creates the topology inside the Does the call to EnableInstallers() must be after the creation of the topology? |
@SeanFeldman, For more questions specific to your issue I suggest going through support (you can reference this thread) and allow this issue to stay focused on the feature request comments. Thank you. |
@SeanFeldman it's not an issue :-) ...and we use the IFunctionHostBuilder approach and not the static one...I'm not understanding.
The implementation of |
Hey @SeanFeldman, thanks for all the hard work on this! There is a debate at work whether or not we need to setup routing in code for our NServiceBus Azure Function apps. I believe we don't need to and it works without it, as long as we have our queues and subscriptions setup properly with the CLI tool. To be clear, do we need to call RouteToEndpoint on the transport RoutingSettings when setting up a FunctionEndpoint or an EndpointInstance with AzureServiceBusTransport? Of course, I'd love to be able to call EnableInstallers with the rest of the world here. :) |
Thank you, @codewisdom.
TLDR: You do. Topology and routing are two different concerns. While related to each other, they are not the same. Topology, queues/topics/subscriptions/rules is the infrastructure on top of the Service Bus namespace needed for the endpoint to send/publish/receive/subscribe. Topology is provisioned either with the CLI tool, NServiceBus Installers feature, or any other scripting method such as ARM, Bicep, Terraform, etc. Routing, on the other hand, is a logical concept required by NServiceBus for sending messages marked as commands to the right destination w/o developers specifying that destination each time. No matter how the topology is provisioned, to send a command requires knowing the destination. That destination is either provided once with I hope that helps. |
Thanks for that fantastic explanation @SeanFeldman. For some reason, I must have missed some of that in the NServiceBus docs. One follow up question - is the CLI tool subscribe features required for command routing that is not local? I thought so, but perhaps not? |
The CLI tool does not handle routing; it literally builds up the topology based on what you know about the routing. Therefore, topology needs to consider the routing information. So, if you have a destination, you need to create an endpoint using |
As of now, there's no easy way to deploy a function-hosted endpoint. One has to identify the endpoint name (queue name), created the queue, manually subscribe to all the events, and provision the error and the audit queue using the ASB transport CLI tool to manually execute multiple commands to have the topology created.
The text was updated successfully, but these errors were encountered: