Goldpath.Bulk 0.1.0-preview.8

This is a prerelease version of Goldpath.Bulk.
dotnet add package Goldpath.Bulk --version 0.1.0-preview.8
                    
NuGet\Install-Package Goldpath.Bulk -Version 0.1.0-preview.8
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Goldpath.Bulk" Version="0.1.0-preview.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Goldpath.Bulk" Version="0.1.0-preview.8" />
                    
Directory.Packages.props
<PackageReference Include="Goldpath.Bulk" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Goldpath.Bulk --version 0.1.0-preview.8
                    
#r "nuget: Goldpath.Bulk, 0.1.0-preview.8"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Goldpath.Bulk@0.1.0-preview.8
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Goldpath.Bulk&version=0.1.0-preview.8&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Goldpath.Bulk&version=0.1.0-preview.8&prerelease
                    
Install as a Cake Tool

Goldpath.Bulk

File/set intake — L3 of the execution ladder. A file becomes a validated, approved, resumable run:

upload → parse (CSV v1) → per-row validation → report → APPROVE/REJECT gate → execute
                                                              │
                                                              └── as a Goldpath.Jobs run:
                                                                  chunked, checkpointed,
                                                                  repair queue + replay

Wire it

builder.AddGoldpathBulk<WebApplicationBuilder, OrdersDbContext>(bulk =>
{
    bulk.AddBatch<PaymentRow>("payments", b => b
        .Csv(c => c.Delimiter = ';')
        .MaxRows(50_000)                       // the ceiling is a decision, not a default
        .RowKey(r => r.EndToEndId)             // in-file duplicate = validation error
        .Validate((row, ctx) =>
        {
            if (row.Amount <= 0) ctx.Fail(nameof(row.Amount), "amount must be positive");
        }));
});
builder.Services.AddScoped<IGoldpathBulkRowHandler<PaymentRow>, PaymentRowHandler>();

builder.AddGoldpathJobs<WebApplicationBuilder, OrdersDbContext>(jobs =>
{
    jobs.ConnectionName = "ordersdb";
    jobs.AddGoldpathBulkJobs<OrdersDbContext>();    // validate + execute runs (cron safety nets)
});

// DbContext: modelBuilder.AddGoldpathBulk();  modelBuilder.AddGoldpathJobs();

The guarantees

  • Content-hash dedup: identical bytes return the SAME batch — a client retry storm cannot create a double-payment risk. A REJECTED file may be resubmitted deliberately.
  • The gate: approval refuses invalid rows by default (TolerateInvalidRows() opts into executing the valid subset — the report is the evidence of what was skipped). Rejection requires a reason. Every decision carries the actor.
  • Value-free reports: row errors carry row + field + message, never the offending value — classified data stays out of reports by construction; the raw file is the evidence, with DeleteFileAfter retention.
  • At-most-once-or-repair: the executing chunk CLAIMS rows (persisted) before any side effect. A row claimed but never stamped was interrupted mid-flight — it goes to the repair queue for a human-confirmed replay instead of being silently re-sent.
  • Row failures don't stop the batch: they land in the jobs repair queue; the jobs replay-items verb retries them through your handler; the last cleared failure flips the batch to Completed.

Ops surface (admin API, metrics panel, runbooks) ships in S2; run views live in the JOBS console today — a bulk execution IS a jobs run.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0-preview.8 76 9/7/2026
0.1.0-preview.7 90 9/1/2026
0.1.0-preview.6 139 8/4/2026
0.1.0-preview.5 88 7/28/2026
0.1.0-preview.4 74 7/27/2026
0.1.0-preview.3 61 7/25/2026
0.1.0-preview.2 70 7/13/2026
0.1.0-preview.1 107 7/13/2026