Getting Started
Architecture
NServiceBus
Transports
Persistence
ServiceInsight
ServicePulse
ServiceControl
Monitoring
Samples

Installers

Component: NServiceBus
NuGet Package: NServiceBus (8.x)

Installers ensure that endpoint-specific artifacts (e.g. database tables, queues, directories, etc.) are created and configured.

When to run installers

Installers require permissions to administer resources such as database tables, queues, or directories. Following the principle of least privilege, it is recommended to run an endpoint with these elevated permissions only during initial deployment.

The alternative to using installers is to create the required resources before the endpoint is run. The method of doing this varies for each transport or persistence package. For more information, see operations.

Running installers during endpoint startup

By default, installers are disabled.

Installers can be enabled to always run at startup:

endpointConfiguration.EnableInstallers();

// this will run the installers
await Endpoint.Start(endpointConfiguration);

Installers may need to be run depending on the arguments that are provided to the host or aspects the environment the endpoint is hosted in.

For example, installers can be enabled based on command line arguments:

var runInstallers = Environment.GetCommandLineArgs().Any(x => string.Equals(x, "/runInstallers", StringComparison.OrdinalIgnoreCase));

if (runInstallers)
{
    endpointConfiguration.EnableInstallers();
    // This will run the installers but not start the instance.
    await Endpoint.Create(endpointConfiguration);
    Environment.Exit(0);
}

They can also be enabled by a machine name convention:

if (!Environment.MachineName.EndsWith("-PROD"))
{
    endpointConfiguration.EnableInstallers();
}
Some combinations of transports / persisters / DI containers may require .Start to be called instead of .Create. In this case call both .Start and .Stop and allow the endpoint to shutdown immediately after startup.

Custom installers

Implement the INeedToInstallSomething interface to create a custom installer:

public class MyInstaller :
    INeedToInstallSomething
{
    public Task Install(string identity, CancellationToken cancellationToken)
    {
        // Code to install something

        return Task.CompletedTask;
    }
}

Assemblies in the runtime directory are scanned for installers so no code is needed to register them.

Related Articles