私がやろうとしていること: Azure App Configurationで.netコア2.1 mvc Webアプリケーションを使用してAzure App Configurationをセットアップし、Azure App Configurationのキーを変更できるようにすることを目標としています。センチネル値が変更されるまで、私のアプリで更新されます。理論的には、これにより構成を安全にホットスワップできるようになります。
私の問題は何ですか: これを行うと、IWebHostBuilderのセンチネルを監視するために使用できるWatchAndReloadAll()メソッドがなくなり、代替のRefresh()メソッドは、状態を示すように構成を更新しないようです。
背景情報、および私が試したこと: この1週間、VS Live-San Diegoに参加し、Azure App Configurationのデモを見ました。アプリケーションにインプリメントするときに設定値を更新する際に問題が発生したため、これを行う方法を説明するこのデモも参照しました。関連セクションは約10分です。ただし、そのメソッドはIWebHostBuilderで使用できないようです。
私が参照しているドキュメント: 公式ドキュメントでは、このメソッドへの参照はありません。docquickstart .net coreおよびdoc dynamic configuration .net coreを参照してください
私の環境: Microsoft.Azure.AppConfiguration.AspNetCore 2.0.0-preview-010060003-1250の最新プレビューナゲットパッケージを使用して、Visual Studio Enterprise 2019から実行されているドットネットコア2.1を使用しています
私のコード: デモでは、次のようにCreateWebHostBuilder(string [] args)メソッドを介してIWebHostBuilderを作成しました。
public static IWebHostBuilder CreateWebHostBuilder(string[] args)
{
return WebHost.CreateDefaultBuilder(args)
.ConfigureAppConfiguration((hostingContext, config) =>
{
var settings = config.Build();
config.AddAzureAppConfiguration(options =>
{
options.Connect(settings["ConnectionStrings:AzureConfiguration"])
.Use(keyFilter: "TestApp:*")
.WatchAndReloadAll(key: "TestApp:Sentinel", pollInterval: TimeSpan.FromSeconds(5));
});
})
.UseStartup<Startup>();
}
現在のドキュメントを使用して、私もこの方法で試しました:
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.ConfigureAppConfiguration((hostingContext, config) =>
{
var settings = config.Build();
config.AddAzureAppConfiguration(options =>
{
// fetch connection string from local config. Could use KeyVault, or Secrets as well.
options.Connect(settings["ConnectionStrings:AzureConfiguration"])
// filter configs so we are only searching against configs that meet this pattern
.Use(keyFilter: "WebApp:*")
.ConfigureRefresh(refreshOptions =>
{
// In theory, when this value changes, on the next refresh operation, the config will update all modified configs since it was last refreshed.
refreshOptions.Register("WebApp:Sentinel", true);
refreshOptions.Register("WebApp:Settings:BackgroundColor", false);
refreshOptions.Register("WebApp:Settings:FontColor", false);
refreshOptions.Register("WebApp:Settings:FontSize", false);
refreshOptions.Register("WebApp:Settings:Message", false);
});
});
})
.UseStartup<Startup>();
次に、私のスタートアップクラスで:
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.Configure<Settings>(Configuration.GetSection("WebApp:Settings"));
services.Configure<CookiePolicyOptions>(options =>
{
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
options.CheckConsentNeeded = context => true;
options.MinimumSameSitePolicy = SameSiteMode.None;
});
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}
app.UseAzureAppConfiguration();
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseCookiePolicy();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}
そして最後に私の設定構成モデル:
public class Settings
{
public string BackgroundColor { get; set; }
public long FontSize { get; set; }
public string FontColor { get; set; }
public string Message { get; set; }
}
次に、コントローラーでこれらの設定をプルし、ビューバッグに入れてビューに表示します。
public class HomeController : Controller
{
private readonly Settings _Settings;
public HomeController(IOptionsSnapshot<Settings> settings)
{
_Settings = settings.Value;
}
public IActionResult Index()
{
ViewData["BackgroundColor"] = _Settings.BackgroundColor;
ViewData["FontSize"] = _Settings.FontSize;
ViewData["FontColor"] = _Settings.FontColor;
ViewData["Message"] = _Settings.Message;
return View();
}
}
変更を表示する単純なビュー:
<!DOCTYPE html>
<html lang="en">
<style>
body {
background-color: @ViewData["BackgroundColor"]
}
h1 {
color: @ViewData["FontColor"];
font-size: @ViewData["FontSize"];
}
</style>
<head>
<title>Index View</title>
</head>
<body>
<h1>@ViewData["Message"]</h1>
</body>
</html>
初めて設定をプルダウンすることはできますが、更新機能がまったく機能していないようです。
最後の例では、センチネルが新しい値に設定されたときに、または少なくとも変更後30秒で値が更新されるように、構成が更新されることを期待していました。待機時間が長くなくても値が更新され、アプリを完全にシャットダウンして再起動するだけで新しい構成が読み込まれます。
更新: app.UseAzureAppConfiguration();の追加 起動時の構成メソッドで、キャッシュの明示的なタイムアウトを構成用に設定すると、一定時間後に更新するように更新メソッドが修正されますが、監視機能はまだ機能せず、更新メソッドのupdateAllフラグも機能しません。
ConfigureServices
のように、startuop.cs方法 services.Configure<LogSettings>(configuration.GetSection("LogSettings"));