This reviewer's identity has been verified by our review moderation team. They have asked not to show their name, job title, or picture.
It removes the most painful part (in my opinion) of the relational database, which is the operation. As a developer looking to just develop, it gives me the abstractions and tools I need to develop the data store my app needs, without having to worry so much about how I will operate, patch, and scale the database. This isn't to say that database knowlege is not required at all, since it will happily let you write horribly inefficient queries like most databases.
The recent introduction of schema enforcement to collections (tables in RDBMS parlance) along with custom check constraints makes it that much easier to migrate from your existing RDBMS. The flexibility of having schemaless or partially typed collections means that prototyping is easy and allows clamping down on the schema over time as the requirements become solidified.
The ability to run logic operations, assign variables, do math, perform list/set transformations, and other things you would normally do in code inside the database makes it particularly well suited to a serverless environment. You can keep all of the transactional business logic within Fauna so that it is truly transactional, with much less application code to handle what happens if a transaction fails part way through. It is also regionless, meaning any edge compute service you may use will automatically connect to the closest replica to keep request times down for a globally distributed user base. Note that they do offer USA, EU, and Global database options with slightly different usage based pricing.
Their free tier is also generous enough to prototype and run apps in order to determine if it's worth scaling the usage throughout your organization. Review collected by and hosted on G2.com.
Unlike a traditional SQL RDBMS, you cannot span a single transaction over multiple requests. This means that all of the compute operations that might happen in between different SQL calls inside of a transaction have to be translated into FQL expressions and run inside the database. This means it takes a more work to port an existing app that uses a SQL RDBMS to Fauna.
Though Fauna is serverless in operation, the costs do not "scale to $0" like some other serverless offerings. Once you exceed the limits within their generous free tier, you have to jump into a pay as you go plan or one of the other plan tiers. These have a flat monthly rate + overage model, so you pay every month regardless of how much you use. Being forced to jump into a higher tier because you want some feature locked to that higher tier while your actual usage doesn't come close to the monthly fee doesn't feel great. I would have preferred it to be a truly pay for what you use model. Review collected by and hosted on G2.com.
The reviewer uploaded a screenshot or submitted the review in-app verifying them as current user.
Validated through a business email account
Organic review. This review was written entirely without invitation or incentive from G2, a seller, or an affiliate.