Fix: Outbox relay has no dead-letter or max retry limit + DataLake writer partial commit inconsistency + ThresholdCacheLoader crashes startup on Redis failure
This commit is contained in:
@@ -763,6 +763,14 @@ namespace VigilCareClinicalAPI.Migrations
|
||||
.HasColumnName("created_at")
|
||||
.HasDefaultValueSql("NOW()");
|
||||
|
||||
b.Property<DateTimeOffset?>("FailedAt")
|
||||
.HasColumnType("timestamp with time zone")
|
||||
.HasColumnName("failed_at");
|
||||
|
||||
b.Property<string>("LastError")
|
||||
.HasColumnType("text")
|
||||
.HasColumnName("last_error");
|
||||
|
||||
b.Property<string>("PartitionKey")
|
||||
.HasMaxLength(36)
|
||||
.HasColumnType("character varying(36)")
|
||||
@@ -777,6 +785,12 @@ namespace VigilCareClinicalAPI.Migrations
|
||||
.HasColumnType("timestamp with time zone")
|
||||
.HasColumnName("processed_at");
|
||||
|
||||
b.Property<int>("RetryCount")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasDefaultValue(0)
|
||||
.HasColumnName("retry_count");
|
||||
|
||||
b.Property<string>("Topic")
|
||||
.IsRequired()
|
||||
.HasMaxLength(200)
|
||||
@@ -786,7 +800,7 @@ namespace VigilCareClinicalAPI.Migrations
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("CreatedAt")
|
||||
.HasFilter("processed_at IS NULL");
|
||||
.HasFilter("processed_at IS NULL AND failed_at IS NULL");
|
||||
|
||||
b.ToTable("outbox_events", (string)null);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user