DynamoDBv2.Transactions 3.7.30226.96-beta

This is a prerelease version of DynamoDBv2.Transactions.
There is a newer version of this package available.
See the version list below for details.
dotnet add package DynamoDBv2.Transactions --version 3.7.30226.96-beta
NuGet\Install-Package DynamoDBv2.Transactions -Version 3.7.30226.96-beta
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="DynamoDBv2.Transactions" Version="3.7.30226.96-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DynamoDBv2.Transactions --version 3.7.30226.96-beta
#r "nuget: DynamoDBv2.Transactions, 3.7.30226.96-beta"
#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.
// Install DynamoDBv2.Transactions as a Cake Addin
#addin nuget:?package=DynamoDBv2.Transactions&version=3.7.30226.96-beta&prerelease

// Install DynamoDBv2.Transactions as a Cake Tool
#tool nuget:?package=DynamoDBv2.Transactions&version=3.7.30226.96-beta&prerelease

DynamoDBv2.Transactions

DynamoDBv2.Transactions is a .NET library that provides a robust wrapper around the Amazon DynamoDB low-level API, enabling easy and efficient management of transactions for batch operations. This library is designed to simplify complex transactional logic and ensure data consistency across your DynamoDB operations. It skips additional implicit for some cases DescribeTable call, thus making DynamoDB attributes mandatory - alternatively too using the attributes you can provide KeyName/KeyValue as a separate parameter to a method.

Badge Badge

.github/workflows/dotnet.yml

• Source Link: ✅ Valid with Symbol Server • Deterministic (dll/exe): ✅ Valid • Compiler Flags: ✅ Valid

Features

  • Transactional Operations: Supports CreateOrUpdate, Delete, and Patch operations within transactions.
  • Error Handling: Gracefully handles transaction failures and rollbacks.
  • Versioning Support: Automatic handling of version increments for transactional integrity.
  • Easy Integration: Seamlessly integrates with existing DynamoDB setups.
  • Asynchronous API: Fully asynchronous API for optimal performance.

Installation

You can install the DynamoDBv2.Transactions library via NuGet Package Manager. Run the following command in your Package Manager Console:

Install-Package DynamoDBv2.Transactions

Quick Start

To get started with DynamoDBv2.Transactions, you'll need to set up an instance of TransactionalWriter using an ITransactionManager, which is responsible for executing the transactions against your DynamoDB instance.

Prerequisites

Ensure you have the AWS SDK for .NET configured in your project, with access to Amazon DynamoDB.

Example Usage

Here's a quick example to show you how to use the TransactionalWriter to perform a transaction:

using DynamoDBv2.Transactions;

// Initialize the DynamoDB client
var client = new AmazonDynamoDBClient();

// Setup transaction manager and writer
var transactionManager = new TransactionManager(client);
var writer = new TransactionalWriter(transactionManager);

var userId = Guid.NewGuid().ToString();
var testItem = new TestTable
{
    UserId = userId,
    SomeDecimal = 123.45m,
    SomeDate = DateTime.UtcNow,
    SomeInt = 123
};

// Perform transaction
await using (writer)
{
    writer.CreateOrUpdate(testItem);
}

// Load and verify
var dbContext = new DynamoDBContext(client);
var data = await dbContext.LoadAsync<TestTable>(userId);
Console.WriteLine($"Item saved with UserId: {data.UserId}");

BenchmarkDotNet results

// * Summary *

BenchmarkDotNet v0.13.12, Windows 11 (10.0.22631.3527/23H2/2023Update/SunValley3) AMD Ryzen 9 6900HS with Radeon Graphics, 1 CPU, 16 logical and 8 physical cores .NET SDK 8.0.200 [Host] : .NET 8.0.2 (8.0.224.6711), X64 RyuJIT AVX2 OutOfProc : .NET 8.0.2 (8.0.224.6711), X64 RyuJIT AVX2

Job=OutOfProc IterationCount=15 LaunchCount=3 WarmupCount=10

Method Mean Error StdDev Allocated
DynamoDbTransactionsWrapper 11.99 ms 0.046 ms 0.087 ms 80.96 KB
OriginalWrapper 15.83 ms 0.236 ms 0.442 ms 83.77 KB
DynamoDbTransactionsWrapper3Items 13.37 ms 0.066 ms 0.123 ms 114.74 KB
OriginalWrapper3Items 46.44 ms 0.444 ms 0.834 ms 251.01 KB

// * Hints * Outliers Benchmark.DynamoDbTransactionsWrapper3Items: OutOfProc → 3 outliers were removed (13.64 ms..14.81 ms) Benchmark.OriginalWrapper3Items: OutOfProc → 3 outliers were removed (48.78 ms..49.19 ms)

// * Legends * Mean : Arithmetic mean of all measurements Error : Half of 99.9% confidence interval StdDev : Standard deviation of all measurements Allocated : Allocated memory per single operation (managed only, inclusive, 1KB = 1024B) 1 ms : 1 Millisecond (0.001 sec)

// * Diagnostic Output - MemoryDiagnoser *

// ***** BenchmarkRunner: End ***** Run time: 00:04:09 (249.42 sec), executed benchmarks: 4

To run benchmark:

  1. Goto .\DynamoDBv2.Transactions
  2. dotnet build .\test\DynamoDBv2.Transactions.Benchmarks\ -c Release
  3. Execute in shell .\test\DynamoDBv2.Transactions.Benchmarks\bin\Release\net8.0\DynamoDBv2.Transactions.exe

Running Tests

To run integration tests

ensure you have a test instance of DynamoDB available. (and configure it in env of the docker compose file) (On my env tests are running both in real DynamoDB and localstack instance) Tests are written using xUnit and should be configured to interact directly with your database:

  1. docker-compose up --exit-code-from tests tests localstack
  2. docker-compose up --exit-code-from unittests unittests
// Example test
[Fact]
public async Task SaveDataAndRetrieve()
{
    var writer = new TransactionalWriter(new TransactionManager(_fixture.Db.Client));
    var userId = Guid.NewGuid().ToString();
    var testItem = new TestTable
    {
        UserId = userId,
        SomeInt = 123
    };

    await using (var writer = new TransactionalWriter(new TransactionManager(_fixture.Db.Client)))
    {
        writer.CreateOrUpdate(testItem);
    }

    var retrievedItem = await _fixture.Db.Context.LoadAsync<TestTable>(userId);
    Assert.NotNull(retrievedItem);
}

Contributing

When creating PRs, please review the following guidelines:

  • The action code does not contain sensitive information.
  • At least one of the commit messages contains the appropriate +semver: keywords listed under [Incrementing the Version] for major and minor increments.
  • The action has been recompiled. See [Recompiling Manually] for details.
  • The README.md has been updated with the latest version of the action. See [Updating the README.md] for details.

License

Copyright © 2024, Vitali Bibikov. Code released under the MIT license.

Contact

Your Name - [bibikovvitaly@gmail.com]

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

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
3.7.30312.170 81 5/28/2024
3.7.30226.96-beta 34 5/2/2024
3.7.30215.92-beta 57 5/1/2024
3.7.30215.90-beta 55 5/1/2024
3.7.30215.86-beta 52 5/1/2024
3.7.30215.83-beta 48 5/1/2024
3.7.30215.82-beta 51 5/1/2024
3.7.3036.156 83 5/15/2024
3.7.3031.148 92 5/4/2024
3.7.3031.146-beta 74 5/4/2024