Reputation: 459
On the Service Fabric community Q&A today, one of the team members seemed to recommend not using default services. Is there some documentation which would elaborate on this further? Most importantly though, if there are no default services, how do any services get created, or is the implication that you'll need at least one default service which dynamically creates the rest?
Upvotes: 1
Views: 1313
Reputation: 11361
Is there some documentation which would elaborate on this further?
There is not official documentation about it, most of the places talking about it will be found on these Q&A.
if there are no default services, how do any services get created, or is the implication that you'll need at least one default service which dynamically creates the rest?
On service fabric, you have two options to create your services:
I've given an extensive answer about it on another SO question here: Auto creation of Service without DefaultServices on developer machines
Upvotes: 1