# Conflicts SOLVED: # .gitignore # src/BuildingBlocks/WebHostCustomization/WebHost.Customization/WebHostExtensions.cs # src/Services/Basket/Basket.API/Basket.API.csproj # src/Services/Basket/Basket.API/Program.cs # src/Services/Basket/Basket.API/Startup.cs # src/Services/Catalog/Catalog.API/Catalog.API.csproj # src/Services/Catalog/Catalog.API/Program.cs # src/Services/Catalog/Catalog.API/Startup.cs # src/Services/Identity/Identity.API/Identity.API.csproj # src/Services/Identity/Identity.API/Program.cs # src/Services/Identity/Identity.API/Startup.cs # src/Services/Location/Locations.API/Locations.API.csproj # src/Services/Location/Locations.API/Program.cs # src/Services/Location/Locations.API/Startup.cs # src/Services/Marketing/Marketing.API/Marketing.API.csproj # src/Services/Marketing/Marketing.API/Program.cs # src/Services/Marketing/Marketing.API/Startup.cs # src/Services/Ordering/Ordering.API/Ordering.API.csproj # src/Services/Ordering/Ordering.API/Program.cs # src/Services/Ordering/Ordering.API/Startup.cs # src/Services/Ordering/Ordering.SignalrHub/Ordering.SignalrHub.csproj # src/Services/Ordering/Ordering.SignalrHub/Program.cs # src/Services/Ordering/Ordering.SignalrHub/Startup.cs # src/Services/Payment/Payment.API/Payment.API.csproj # src/Services/Payment/Payment.API/Program.cs # src/Services/Payment/Payment.API/Startup.cs # src/Web/WebMVC/Program.cs # src/Web/WebMVC/Startup.cs # src/Web/WebStatus/Program.cs # src/Web/WebStatus/Startup.cs # src/Web/WebStatus/WebStatus.csproj
81 lines
3.1 KiB
C#
81 lines
3.1 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
using Polly;
|
|
using Polly.Retry;
|
|
using System;
|
|
using System.Data.SqlClient;
|
|
|
|
namespace Microsoft.AspNetCore.Hosting
|
|
{
|
|
public static class IWebHostExtensions
|
|
{
|
|
public static bool IsInKubernetes(this IWebHost webHost)
|
|
{
|
|
var cfg = webHost.Services.GetService<IConfiguration>();
|
|
var orchestratorType = cfg.GetValue<string>("OrchestratorType");
|
|
return orchestratorType?.ToUpper() == "K8S";
|
|
}
|
|
|
|
public static IWebHost MigrateDbContext<TContext>(this IWebHost webHost, Action<TContext,IServiceProvider> seeder) where TContext : DbContext
|
|
{
|
|
var underK8s = webHost.IsInKubernetes();
|
|
|
|
using (var scope = webHost.Services.CreateScope())
|
|
{
|
|
var services = scope.ServiceProvider;
|
|
|
|
var logger = services.GetRequiredService<ILogger<TContext>>();
|
|
|
|
var context = services.GetService<TContext>();
|
|
|
|
try
|
|
{
|
|
logger.LogInformation("Migrating database associated with context {DbContextName}", typeof(TContext).Name);
|
|
|
|
if (underK8s)
|
|
{
|
|
InvokeSeeder(seeder, context, services);
|
|
}
|
|
else
|
|
{
|
|
var retry = Policy.Handle<SqlException>()
|
|
.WaitAndRetry(new TimeSpan[]
|
|
{
|
|
TimeSpan.FromSeconds(3),
|
|
TimeSpan.FromSeconds(5),
|
|
TimeSpan.FromSeconds(8),
|
|
});
|
|
|
|
//if the sql server container is not created on run docker compose this
|
|
//migration can't fail for network related exception. The retry options for DbContext only
|
|
//apply to transient exceptions
|
|
// Note that this is NOT applied when running some orchestrators (let the orchestrator to recreate the failing service)
|
|
retry.Execute(() => InvokeSeeder(seeder, context, services));
|
|
}
|
|
|
|
logger.LogInformation("Migrated database associated with context {DbContextName}", typeof(TContext).Name);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
logger.LogError(ex, "An error occurred while migrating the database used on context {DbContextName}", typeof(TContext).Name);
|
|
if (underK8s)
|
|
{
|
|
throw; // Rethrow under k8s because we rely on k8s to re-run the pod
|
|
}
|
|
}
|
|
}
|
|
|
|
return webHost;
|
|
}
|
|
|
|
private static void InvokeSeeder<TContext>(Action<TContext, IServiceProvider> seeder, TContext context, IServiceProvider services)
|
|
where TContext : DbContext
|
|
{
|
|
context.Database.Migrate();
|
|
seeder(context, services);
|
|
}
|
|
}
|
|
}
|