Attach a history component to your Convex table to keep track of changes.
- View an audit log of all table changes in the Convex Dashboard or in a custom React component.
- Answer questions like "was document A updated before document B?"
- View an audit log of changes to a single document
- Answer questions like "what was the user's email address before they changed it?"
- Look at a snapshot of the table at any point in time.
// Paginate through all history on the "documents" table, from newest to oldest.
documentAuditLog.listHistory(ctx, args.maxTs, args.paginationOpts);
// Paginate through all history for a specific document, from newest to oldest.
documentAuditLog.listDocumentHistory(ctx, args.documentId, args.maxTs, args.paginationOpts);
// Paginate through all documents in the "documents" table at a specific timestamp.
documentAuditLog.listSnapshot(ctx, args.snapshotTs, args.currentTs, args.paginationOpts);
Found a bug? Feature request? File it here.
You'll need an existing Convex project to use the component. Convex is a hosted backend platform, including a database, serverless functions, and a ton more you can learn about here.
Run npm create convex
or follow any of the quickstarts to set one up.
Install the component package:
npm install convex-table-history
Create a convex.config.ts
file in your app's convex/
folder and install the component by calling use
:
// convex/convex.config.ts
import { defineApp } from "convex/server";
import tableHistory from "convex-table-history/convex.config";
const app = defineApp();
app.use(tableHistory, { name: "documentAuditLog" });
export default app;
To add history to multiple tables, you can call app.use
multiple times with
different names. They will be available in your app as
new TableHistory(components.<name>, ...)
.
import { components } from "./_generated/api";
import { TableHistory } from "convex-table-history";
const documentAuditLog = new TableHistory<DataModel, "documents">(components.documentAuditLog);
Add an item to the history table when a document changes:
async function patchDocument(ctx: MutationCtx, documentId: Id<"documents">, patch: Partial<Doc<"documents">>) {
await ctx.db.patch(documentId, patch);
const document = await ctx.db.get(documentId);
await documentAuditLog.update(ctx, documentId, document);
}
Or attach a trigger to automatically write to the history table when a mutation changes a document:
const triggers = new Triggers<DataModel>();
triggers.register("documents", documentAuditLog.trigger());
export const mutation = customMutation(rawMutation, customCtx(triggers.wrapDB));
Now that you're writing to the history table, you can use the listHistory
, listDocumentHistory
, and listSnapshot
functions to query the history.
These functions are paginated, so you can use them with usePaginatedQuery
to get all of the entries incrementally.
The pages consist of HistoryEntry
objects, which have the following fields:
id
: the id of the document that was changeddoc
: the new version of the document that was changed, or null if the document was deletedts
: the timestamp of the change. See serializability.isDeleted
: whether the document was deletedattribution
: an optional arbitrary object that will be stored with the history entry
See more example usage in example.ts.
Convex mutations are serializable transactions, which is great for maintaining consistency in your tables.
However, if you need the guarantee that history timestamps match the mutations' serializable order, that would require serializing all changes to your whole database, and your database would slow to a crawl and get OCC errors.
You can configure the serializability of the history table by setting the
serializability
option. The three options are:
"table"
-- i.e. the latest ts for the table, plus one- history entries are serializable with other updates on the same table
"document"
-- i.e. the latest ts for the document, plus one- history entries are serializable with other updates on the same document.
"wallclock"
-- i.e. Date.now()- history entry timestamps don't have guarantees, but they also take no extra dependencies and are usually sufficient.
The default serializability is "wallclock"
.
const [currentTs] = useState(Date.now()); // stable and recent
const [yesterday] = useState(Date.now() - 24 * 60 * 60 * 1000); // stable
const snapshotOfUsersYesterday = usePaginatedQuery(
api.documents.listSnapshot,
{
currentTs,
snapshotTs: yesterday,
},
{ initialNumItems: 100 },
);
const auditLogBeforeYesterday = usePaginatedQuery(
api.documents.listHistory,
{
maxTs: yesterday,
},
{ initialNumItems: 100 },
);
- For
listSnapshot
,currentTs
should be a stable recent timestamp.- "Stable" means it should have the same value for all pages.
- To keep a stable timestamp for all pages, pick a value on the client and
pass it as an arg of
usePaginatedQuery
.
- To keep a stable timestamp for all pages, pick a value on the client and
pass it as an arg of
- "Recent" is relative to how often the table gets new inserts. The amount of
extra work performed by the query is proportional to the number of
ctx.db.insert(tableName, doc)
calls since thecurrentTs
.- If the timestamp isn't recent, the queries might read too much data in a single page and throw an error.
- Don't pick a timestamp in the future, or gaps will appear between pages
as new documents are inserted. The timestamp should be
Date.now()
or slightly in the past.
- "Stable" means it should have the same value for all pages.
- For
listHistory
andlistDocumentHistory
,maxTs
should be stable but doesn't need to be recent.
Why is this necessary?
The TableHistory component supports paginated queries with
usePaginatedQuery
and manual pagination.
But it needs a little help from you to make everything work seamlessly.
You want
fully reactive pagination.
Concretely, usePaginatedQuery
results should not have gaps or duplicates.
In order to implement this feature without the built-in .paginate
method,
the TableHistory component assumes its own data model is append-only (which is
true, except when vacuuming), and takes in a stable recent timestamp. Then it
ignores history entries created after that timestamp.
Store an update's attribution
to track information like which user made the
change, or what mutation made the change.
await documentAuditLog.update(ctx, documentId, document, {
attribution: {
actorIdentity: await ctx.auth.getUserIdentity(),
mutationName: "patchDocument",
source: "web",
},
});
The default attribution when using TableHistory.update
is null
.
The default attribution when using TableHistory.trigger
is the mutation's
ctx.auth.getUserIdentity()
.
The history table can grow large, so you can use the vacuumHistory
function
to remove old history entries. This function will
schedule background jobs to delete old history entries.
The entries which will be deleted are those which are not visible
at snapshots >=minTsToKeep
.
After vacuuming up to minTsToKeep
, you can no longer call listSnapshot
with a snapshot timestamp less than minTsToKeep
.
- No indexes: you can't use an index to change the sort order or get a subset of results.
- Workaround: you can paginate until
isDone
returns true, and sort or filter the results yourself, either on the client or in an action. Consider manual pagination.
- Workaround: you can paginate until