Skip to main content

DynamoDB Transactions Performance Testing

ยท 6 min read
Alex DeBrie

This is part 2 of a two-part post on DynamoDB Transactions. Check out part 1 in this series for a look at how and when to use DynamoDB Transactions.

In this post, we're going to do some performance testing of DynamoDB Transactions as compared to other DynamoDB API calls. As a reminder from the last post, you can use DynamoDB Transactions to make multiple requests in a single call. Your entire request will succeed or fail together -- if a single write cannot be satisfied, all other writes will be rolled back as well.

This capability is powerful but obviously comes at a performance cost. I was curious to see how large that performance cost is.

In this post, we'll see the results from a performance test I ran. We'll cover:

  • Test setup, methodology, and configuration
  • DynamoDB performance test results

All code to reproduce these results are available in the dynamodb-performance-testing GitHub repo.

Let's get started!

Setup and Methodologyโ€‹

When I first considered running performance tests for transactions, I was most interested in two things: (1) how do transactions compare to the batch-based API actions, and (2) how does a failed transaction affect latencies?

As I thought more about it, I realized I had several more performance questions.

How do regular PutItem requests compare to BatchWriteItem requests?

How does a BatchWriteItem request with a few items compare to one with a large number of items?

Ultimately, I decided to go with six different configurations:

  • PutItem request to write a single item
  • BatchWriteItem request to write 5 items
  • BatchWriteItem request to write 25 items
  • TransactWriteItems request to write 5 items
  • TransactWriteItems request to write 25 items
  • TransactWriteItems request to write 5 items, including one item that will fail and thus rollback the transaction.

Test Configurationโ€‹

To run the test, I wanted to avoid polluting test results from specifics of my machine, such as additional network latency from my perch in Omaha, NE or reduced memory availability due to my hundreds of Chrome tabs. To handle this, I deployed some Lambda functions to execute some queries against DynamoDB.

Each Lambda function is doing a few things:

  1. Creating a DynamoDB client that has already created a TCP connection with the DynamoDB servers. Yan Cui has written on the overhead this can create. To do this, I made a DescribeTable call to DynamoDB before using it in any of my tests.

  2. Preparing a wrapped version of the DynamoDB API call that includes pre-generated arguments for the API call, as I didn't want to include time generating items and UUIDs in my metrics.

  3. Executing the API call and tracking the execution time using Python's timeit module. (Note to self: Read the docs on timeit before use).

  4. Logging the latency of the API call using the CloudWatch Embedded Metric Format. This enables me to run percentile queries using CloudWatch Metrics.

A few other notes on the configuration:

  • Each invocation of the function will make the API call ten times using ten different parameters. I did this just to make the testing go a little faster. Each API call is made in serial because I'm using Python and I didn't want to mess with async code. ๐Ÿคทโ€โ™‚๏ธ

  • I'm using DynamoDB On-Demand pricing rather than Provisioned Capacity. A few folks on the DynamoDB team assured me there shouldn't be any performance impact from using On-Demand.

  • I'm using Python, which could add some serialization/deserialization time to my results. If you want to see results in $YOUR_FAVORITE_FAST_LANGUAGE, feel free to replicate this yourself!

Without further ado, let's look at the results!

DynamoDB Performance Test Resultsโ€‹

For each configuration, I ran 400 Lambda invocations. Each Lambda executed the API call 10 times, so each configuration got 4000 data points total.

Results are shown in the chart below. Each configuration shows minimum and maximum values, as well as p50, p90, p95, and p99 percentiles. Also, note that these times are recorded at the client, so it's showing round-trip time, including the network latency both to and from the DynamoDB server. Times shown are in milliseconds.

OperationMinp50p90p95p99Max
PutItem5.477.5511.313.216.229
BatchWrite - 5 items6.598.1413.315.425.556.8
BatchWrite - 25 items7.9610.2161827.676.4
TransactWrite - 5 items19.425.330.736.492.5218
TransactWrite - 25 items23.532.140.547.297.5258
TransactWrite - 5 items w/ failure19.825.330.634.284.9254

If you prefer it in graph format, the following graph shows the various configurations:

DynamoDB Performance Test Results chart

Key Takeawaysโ€‹

I had the following key takeaways from the results:

  1. As one would expect, the simple PutItem request was the fastest across the board.

  2. The BatchWriteItem requests were slower than the single PutItem requests but not by much. The performance impact was around 35% at lower percentiles and 70% at higher percentiles. While the percentage seems high, it's still sub-20 milliseconds round-trip to store 25 items in DynamoDB. That's quite a bit faster than doing 25 different PutItem requests yourself.

  3. There is a performance penalty for TransactWriteItems requests -- they're between 3x and 4x slower than their batch counterparts.

  4. Transaction failures don't seem to have much impact on performance. Transaction size does have an impact, similar to the impact of batch size with BatchWriteItem.

Conclusionโ€‹

In this post, we did some performance testing with DynamoDB. From these results, we are able to see the relative performance impacts of using operations like BatchWriteItem or TransactWriteItems in our application.

While the transactional APIs are slower than the non-transactional APIs, the benefits you get from them are often worth the cost. Whether you need idempotency in your operations or confidence to operate on multiple items at once, using transactions will often save you time and headaches over the alternatives.

If you have questions or comments on this piece, feel free to leave a note below or email me directly.