Skip to content

A PostgreSQL graph database alike library with micro-sharding and row-level security

License

Notifications You must be signed in to change notification settings

clickup/ent-framework

Repository files navigation

Ent Framework

The TypeScript library for working with microsharded PostgreSQL databases.

Core Features

  • Graph-like representation of entities. With Ent Framework, you represent each Ent (a domain object of your business logic) as a TypeScript class with immutable properties. An Ent class instance maps to one row of some table in a relational database (like PostgreSQL). It may look similar to ORM, but has many aspects that traditional ORMs don't have.
  • Row-level security in a graph (privacy layer). You manage data as a graph where each node is an Ent instance, and each edge is a field link (think of foreign keys) to other Ents. To be allowed to read (or update/delete) some Ent, you define a set of explicit rules like "user can read EntA if they can read EntB or EntC". And, consequently, in EntB you define its own set of rules, like "user can read EntB if they can read EntD".
  • Query batching and coalescing. Ent Framework holistically solves the "N+1 selects" problem commonly known in ORM world. You still write you code as if you work with individual Ents and individual IDs, and the framework magically takes care of sending batched requests (both read and write) to the underlying relational database. You do not work with lists and JOINs anymore.
  • Microsharding and replication lag tracking support out of the box. Splitting your database horizontally is like a breeze now: Ent Framework takes care of routing the requests to the proper microshards. When scaling reads, Ent Framework knows whether a replica node is "good enough" for that particular query. It automatically uses the proper replica when possible, falling back to master when not.
  • Pluggable to your existing relational database. If your project already uses some ORM or runs raw SQL queries, Ent Framework can be plugged in.
  • Tens of other features. Some examples: cross-microshards foreign keys, composite fields, triggers, build-in caching etc.

Installation

npm add ent-framework
pnpm add ent-framework
yarn add ent-framework

CI run