A .Net Core compatible DNS SRV mechanism for discovering a Couchbase cluster dynamically.
Assuming you have an installation of Couchbase Server and Visual Studio (examples with VSCODE forthcoming), do the following:
- Create a .NET Core Web Application using Visual Studio or VsCodeor CIL
- Install the package from NuGet or build from source and add reference
To use, call AddCouchbaseDnsDiscovery during the service registration process, usually in your Startup class. You may choose whether or not to add this step based on the environment. Be sure to add the basic Couchbase configuration first.
public class Startup
{
public Startup(IHostingEnvironment env)
{
var builder = new ConfigurationBuilder()
.SetBasePath(env.ContentRootPath)
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
.AddEnvironmentVariables();
Configuration = builder.Build();
Environment = env;
}
public IConfigurationRoot Configuration { get; }
public IHostingEnvironment Environment { get; }
public void ConfigureServices(IServiceCollection services)
{
// Register Couchbase with configuration section
services.AddCouchbase(Configuration.GetSection("Couchbase"));
services.AddCouchbaseDnsDiscovery();
// Register other services, like .AddMvc()
}Example configuration file:
{
"Couchbase": {
"Username": "Administrator",
"Password": "Password",
"Servers": [
"couchbase://services.local/"
]
}
}The above configuration will perform a DNS SRV query for _couchbase._tcp.services.local, based on the single entry in the Servers section of the configuration. The results will be used to replace the Servers list in the Couchbase client configuration.
The following rules will be applied:
- There must be only one URI in the Servers collection
- The URI must use either the "couchbase://" or "couchbases://" scheme
- The URI must not have a port number
- If these rules aren't matched, or if no DNS SRV records is found, then the client will fallback to directly connecting to the listed URIs
Note that only the servers with the highest priority in the DNS SRV response will be used. For example, if the response returns 2 servers with a priority of 10 and 2 different servers with a priority of 20, the first set will be used to initialize the cluster. SRV record failover is not supported.
Additionally, due to the nature of Couchbase clusters, the weight fields in the DNS SRV records are ignored. However, the port is used and should normally be set to 8091.