FaunaDB vs DynamoDB: Querying capabilities, Pricing, and more

Chris Biscardi
InstructorChris Biscardi
Share this video with your friends

Social Share Links

Send Tweet
Published 4 years ago
Updated 3 years ago

We're moving to DynamoDB! We compare Fauna's features, pricing, and approach to Dynamos using motivating examples to explain why we'd move from Fauna to Dynamo.

Man 1: [00:00] Over the course of this series, we've been using FaunaDB as our database. Over the next few videos, we're going to be switching to DynamoDB. Here's a brief comparison of the two options. First, both databases are very good at being the data storage back-end for a serverless application.

[00:19] Some people refer to the databases themselves as serverless as well because of the fact that they're both hosted, and they're both managed for you. This means that with either solution, we won't have to do anything like setup our own replicas, deploy a server, or really worry about scaling at all if we don't want to.

[00:39] Secondly, both databases support transactions. Fauna support for transactions is required. You can't make a request to FaunaDB without it being enveloped in a transaction. Whereas with DynamoDB, you have the option of how consistent you want your queries to be.

[00:55] FaunaDB and Dynamo both advertise being low latency. Fauna requires that your entire application is distributed across a set of global regions. This by nature means your request will be a little bit slower, but they do advertise low latency reads and writes. They don't, however, specify any numbers.

[01:13] DynamoDB is built specifically for performance and calls out single-digit millisecond as well as microsecond latencies. On the list of features that Fauna has that DynamoDB won't have include the native GraphQL API. We weren't using the native GraphQL API in our application, but this won't matter to us.

[01:31] Learning to use Fauna's native GraphQL API also requires that you learn the underlying SQL query language. If you don't, then you won't be able to debug or understand what the GraphQL SQL is transforming into. This means the learning curve for Fauna and DynamoDB turns out to be similar on the query language level, where DynamoDB has a fairly simple query language, and Fauna has SQL, which is more Lisp-based.

[01:55] The other feature that Fauna has that DynamoDB won't have is attribute-based access control. With Dynamo, we can still implement role-based access control, which is what the majority of applications today use. We can also take advantage of IAM roles, which means that a specific serverless function can be allowed to access a specific item or attribute in our DynamoDB database.

[02:16] Next, we can take a look at pricing. We can see here that overall, the pricing is pretty comparable. The numbers we've used here for operations come from specifically one of Fauna's tiers.

[02:26] If you look at the total cost, you'll see that DynamoDB is fairly cheaper, even though these are both on-demand and they're both applying each respective platform's free tier. We can't take Fauna's free tier away from the calculation, but we can take AWS's, which bumps our cost up six dollars.

[02:43] Note that for specific workloads, price can vary. Read operations from Fauna are about double that of DynamoDB, while write operations at almost $90 for Fauna stand at around $55 for DynamoDB. In both cases, it's cheaper to do operations in DynamoDB than it is to do in Fauna.

[03:03] The one space where Fauna beats DynamoDB in pricing is how much data you'll have in the table. At 200 gigs of data, it costs us $35 to store that in Fauna each month, while in Dynamo, it costs us about $50.

[03:17] Overall, if you're just starting a project, these pricing differences don't really matter that much, as you'll probably stay within the free tier. If you have an application which is doing operation-heavy workloads, it may be worth it to move to DynamoDB.

[03:30] Note also that while FaunaDB has a free tier, and on-demand tier or Metered and a Pro tier in addition to their enterprise tier. DyanamoDB has on-demand, provisioned capacity, and reserved capacity.

[03:44] The pricing tiers for Fauna are pretty artificial and don't correspond to a usage level, while the tiers for DynamoDB can be adjusted for any usage level. This gives DynamoDB a far more flexible pricing scheme and pricing model to build more varied application types on.

[04:00] Finally, we get into the features that DynamoDB has that Fauna struggles to keep up with. The first and most important one is change data capture. This is what's known as DyanmoDB Streams. DynamoDB Streams allows us, every time we insert something into the database or modify something, to take those changes and put them into a queue that we can deal with later.

[04:20] FaunaDB doesn't have any answer for this at all. If we ever want to asynchronously do processing based on the changes that are coming into our database, we have to go with DynamoDB over Fauna.

[04:31] Next, we have the integrations. DynamoDB integrates much more strongly with other AWS features, like Lambda. This allows us to use Lambdas, process the change data capture that we talked about. We also get to control which regions we deploy into, how much that cost, and other trade-offs.

[04:50] Finally, we have two features that we aren't actually going to take advantage of in this series videos. The first is global tables, which allows us to replicate our DynamoDB table across many different regions in the AWS. The second is DynamoDB accelerator or DAX, which allows us to achieve the microsecond latencies by using caching.

Alexander Vu
Alexander Vu
~ 3 years ago

Haven't used FaunaDB yet, but did use AWS Dynamo and AWS DocumentDB. The price schedule here is incorrect. At AWS there are still some costs. The costs are not transparent. Despite the free tier in the first year, the cost was still up, and the free tier was flawed and often ineligible. Hardly anyone reacts to emails. I only got a response to an email after 2 months. The service is practically non-existent for small developers here in the EU. I work in a large corporation where we use almost everything from AWS or Azure. As a group, the support is very good. Therefore, as long as you do not have a particularly high load on your application, it is better to use "smaller" providers, even with slightly higher prices. At Meetups, the majority of developers have confirmed my experience with AWS.

Chris Biscardi
Chris Biscardiinstructor
~ 3 years ago

Sorry you had a bad experience. However DocumentDB is not DynamoDB and the two services have very different pricing models. DocumentDB is a MongoDB compatible service where you have to pay for a constantly running EC2 instance to run it on. DocumentDB also does not have a free tier, so I could see how your experience of it being expensive would be true given that you are billed for every second an instance is running and without knowing it wasn't covered under a free tier.

Unfortunately, none of that is discussed in this video because it is not a video on DocumentDB and the price schedule here is correct for DynamoDB, which is a different service.

Markdown supported.
Become a member to join the discussionEnroll Today