Glossary

A

ACID
ACID consistency

The guarantee that every transaction includes atomicity, consistency, isolation, and durability.

Atomicity

The guarantee that each transaction is treated as a single block of work, which either succeeds or fails in its entirety.

C

Cardinality

Cardinality refers to the number of elements in a set or group, as a property of that group. Low cardinality refers to a small number of distinct items, whereas high cardinality refers to a large number of items. For example, a boolean field has a cardinality of 2, which is low.

Class

A class is the deprecated synonym of collection.

Cluster

A cluster refers to the group of nodes that work together to provide the services of Fauna. Nodes belong to replicas, and each replica contains a full copy of all data within a Fauna cluster.

Collection

A collection is a group of data categorized within a database. Data within a collection usually has a common structure, but this is not required. If you’re familiar with traditional databases, you can think of a collection as a table without a structured schema.

Consistency

Consistency is the promise that any data written to the database must be valid according to all defined rules, such as unique indexes.

Cursor

A cursor marks a position within a paginated set. When you use the Paginate function, and the total number of results exceeds the current page size, an after cursor marks the position for the next page of results, and a before cursor marks the end of the previous page of results. You use the after or before cursor in subsequent queries to request additional results.

D

Data node

A node in a Fauna replica which is responsible for persisting and retrieving data.

Database

Databases are containers for data with access control. In Fauna’s multi-tenant system, databases can be hierarchical, with multiple child databases nested within parent databases, each with their own permissions and security settings.

Directive

A directive is a GraphQL feature that provides dynamic control over the execution of a query.

Document

Documents are single, changeable records within a Fauna database. Because they are changeable, they can have more than one version over time as they are updated by an application. If you are familiar with other database systems, you can think of a document as a row, or record.

Document ID

The unique numeric identifier for a document within a collection or database. See Ref or Reference.

Durability

Durability guarantees that once a transaction has been committed, it is permanent. If a system crash, power failure, or other unexpected failure occurs, all transactions with committed data are saved.

E

Extract, Transform, Load (ETL)

ETL is a three-step procedure that is typically used when blending data from multiple sources, such as when copying data from one or more databases into a single database. ETL can define how to extract the data from the sources, how to transform the data into the necessary format, and how to load the data into the destination.

F

Fauna Query Language (FQL)

Fauna offers a fully functioning transactional query language called Fauna Query Language (FQL). You can interact with it via the official drivers or the Fauna Shell. The native language drivers provide the ability to write application queries in the programming language of your choice.

G

Globally, horizontally scalable

Fauna is globally, horizontally scalable because it allows each Fauna node to perform the same role as any other Fauna node, with nodes that can be distributed around the world. With each node able to serve any role, there is no single point of failure.

Granular identity management, authentication, and access control

Granular identity management, authentication, and access control built on top of an enterprise-class, multi-tenant foundation, provides a secure platform for companies of all sizes. Fauna has both administrative and application-level identity and security to provide a layer of separation between applications and administration. This provides the application developers more time to focus on building their applications without having to spend time securing the overall datastore.

GraphQL

GraphQL is an open source data query and manipulation language that provides declarative schema definitions and a composable query syntax. For more information, see https://graphql.org/.

I

Identity

An identity typically represents a "user", but could also be used to identify any service, system, or process that needs to run queries with specific privileges. Any document within Fauna can be used as an identity.

A query’s associated identity, if available, can be retrieved by calling the CurrentIdentity function. There is no associated identity for queries using anonymous-based access.

IdP
Identity provider

An identity provider is a system that creates, maintains, and manages identity information, and provides authentication and authorization services. For more information, see Auth0.

Index

An index is a database entity that facilitates data lookups. Indexes are used to quickly locate data without having to search every individual document (or row of data) in the database.

Instance

An instance is the deprecated synonym of document.

Instance ID

An instance ID is the deprecated synonym of a Document ID.

J

JSON

JSON (JavaScript Object Notation) is a lightweight data-interchange format. A human-readable, plain-text format for expressing structured data. For more information, see http://www.json.org/.

JWT
JSON Web Token

A JSON Web Token, or JWT, is a digitally-signed object that is typically used to communicate verified and trusted information about a user, to essentially indicate that a specific user has been authenticated. For more information, see https://jwt.io/introduction/.

L

Log node

A node in a Fauna replica which is responsible for coordinating and storing transactions.

M

Multitenancy

Multi-tenancy is the ability to have a single Fauna cluster provide individual databases to multiple tenants (e.g., companies, applications, programmers, and/or users) in isolation. Each tenant has complete administrative control, a private security model, and programmatic creativity over their own database(s), free from interference from users of other databases in the cluster.

Mutation

A mutation refers to a query that changes data when using GraphQL.

N

Node

A node is a computer (or virtual machine) with a unique network address that is running the Fauna database software.

P

Partition

A group of nodes containing exactly one node from each replica.

Pure function

A pure function has the following properties:

  • The function’s return values are identical for identical arguments.

  • The function’s execution causes no side effects. Side effects would include document writes, streaming events, or other externally-noticable mutations.

Q

QOS
Quality-of-service management

Fauna’s quality-of-service management means that, in a saturated cluster where resources are reaching critical capacity, each tenant receives scheduling proportional to their configured priority. For example, in a saturated cluster with two tenants of priority 500 and 250, the first tenant gets 2/3 of the resources and the other gets 1/3 of the resources. This prevents a single greedy user from significantly impacting other users.

The priority option is deprecated as of release 2.10.0. You should avoid specifying priority. In some future Fauna release, priority will be removed. See Deprecations for more details.

Query

A query is the way to ask a database for, or to change, data. Fauna’s native Fauna Query Language provides a robust set of commands to help you form any kind of query you require. You can also use GraphQL for most kinds of querying too.

R

Ref
Reference

Every document in the database has an identifier called a reference, or ref for short. A document’s ref encodes its collection along with a unique id, and is therefore unique to that document within the scope of the database in which it is stored.

Replica

A named group of one or more, co-located nodes containing a complete copy of the data.

S

Sequences

Sequences are arrays and pages that can be mapped and filtered.

Set

A set is a sorted group of immutable data from a collection. Object data is mapped onto a set, and as documents are created, modified, and deleted, the set is updated. Sets provide a relational view of the data within your collection, such as all the X that are Y.

T

Temporal documents

In Fauna, documents are temporal, meaning each creation, modification, or deletion event is assigned a transaction timestamp and inserted into the document history. Approaching documents temporally allows event sourcing, reactive programming, and various audit and stream-oriented data architectures that help the system "just work". Unlike older NoSQL systems, no additional configuration is needed to get your database playing nicely with your incoming and outgoing data.

Transaction log

To prepare for unexpected failures, all transaction data received by a log node is written to non-volatile storage for recovery of a replica. The transaction data is written in the order received to optimize for fast writes.

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!