aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-08-10 19:01:42 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-08-10 19:01:42 -0700
commita1edb73ea2c7e63425901ced005ead768a274fd5 (patch)
treea1453f7e0d0202b1b380f2e272fef50e2577db0d
parent10dbda6ce4a793f076115ae49c4ca58acf7d7308 (diff)
downloadfatcat-a1edb73ea2c7e63425901ced005ead768a274fd5.tar.gz
fatcat-a1edb73ea2c7e63425901ced005ead768a274fd5.zip
update rfc copies
-rw-r--r--fatcat-rfc.md13
-rw-r--r--python/fatcat/templates/about.html217
-rw-r--r--site/index.html409
3 files changed, 366 insertions, 273 deletions
diff --git a/fatcat-rfc.md b/fatcat-rfc.md
index 4f34f9de..981bbbf5 100644
--- a/fatcat-rfc.md
+++ b/fatcat-rfc.md
@@ -1,5 +1,8 @@
-**Contact: Bryan Newbold <bnewbold@archive.org>. Last updated 2018-08-10**
+fatcat Design Document (RFC)
+------------------------------
+
+*Contact: Bryan Newbold <bnewbold@archive.org>. Last updated 2018-08-10*
fatcat is a proposed open bibliographic catalog of written works. The scope of
works is somewhat flexible, with a focus on published research outputs like
@@ -7,7 +10,7 @@ journal articles, pre-prints, and conference proceedings. Records are
collaboratively editable, versioned, available in bulk form, and include
URL-agnostic file-level metadata.
-Fatcat is currently used internally at the Internet Archive, but interested
+fatcat is currently used internally at the Internet Archive, but interested
folks are welcome to contribute to design and development.
## Goals and Ecosystem Niche
@@ -418,6 +421,6 @@ user-editable corpus of scholarly publication bibliographic metadata.
## RFC Changelog
-- *2017-12-16*: early notes
-- *2018-01-17*: initial RFC document
-- *2018-08-10*: updates from implementation work
+- **2017-12-16**: early notes
+- **2018-01-17**: initial RFC document
+- **2018-08-10**: updates from implementation work
diff --git a/python/fatcat/templates/about.html b/python/fatcat/templates/about.html
index 3ff67c19..85f100b7 100644
--- a/python/fatcat/templates/about.html
+++ b/python/fatcat/templates/about.html
@@ -1,86 +1,114 @@
{% extends "base.html" %}
{% block body %}
-<h1>fatcat Design Document (RFC)</h1>
-
-<p><i>Version: April 2018</i>
-
-<p>fatcat is a half-baked idea to build an open, independent, collaboratively editable bibliographic database of most written works, with a focus on published research outputs like journal articles, pre-prints, and conference proceedings.</p>
+<h2 id="fatcat-design-document-rfc">fatcat Design Document (RFC)</h2>
+<p><em>Contact: Bryan Newbold <a href="mailto:bnewbold@archive.org">bnewbold@archive.org</a>. Last updated 2018-08-10</em></p>
+<p>fatcat is a proposed open bibliographic catalog of written works. The scope of works is somewhat flexible, with a focus on published research outputs like journal articles, pre-prints, and conference proceedings. Records are collaboratively editable, versioned, available in bulk form, and include URL-agnostic file-level metadata.</p>
+<p>fatcat is currently used internally at the Internet Archive, but interested folks are welcome to contribute to design and development.</p>
+<h2 id="goals-and-ecosystem-niche">Goals and Ecosystem Niche</h2>
+<p>For the Internet Archive use case, fatcat has two primary use cases:</p>
+<ul>
+<li>Track the &quot;completeness&quot; of our holdings against all known published works. In particular, allow us to monitor and prioritize further collection work.</li>
+<li>Be a public-facing catalog and access mechanism for our open access holdings.</li>
+</ul>
+<p>In the larger ecosystem, fatcat could also provide:</p>
+<ul>
+<li>A work-level (as opposed to title-level) archival dashboard: what fraction of all published works are preserved in archives? KBART, CLOCKSS, Portico, and other preservations don't provide granular metadata</li>
+<li>A collaborative, independent, non-commercial, fully-open, field-agnostic, &quot;completeness&quot;-oriented catalog of scholarly metadata</li>
+<li>Unified (centralized) foundation for discovery and access across repositories and archives: discovery projects can focus on user experience instead of building their own catalog from scratch</li>
+<li>Research corpus for meta-science, with an emphasis on availability and reproducibility (metadata corpus itself is open access, and file-level hashes control for content drift)</li>
+<li>Foundational infrastructure for distributed digital preservation</li>
+<li>On-ramp for non-traditional digital works (&quot;grey literature&quot;) into the scholarly web</li>
+</ul>
<h2 id="technical-architecture">Technical Architecture</h2>
-<p>The canonical backend datastore would be a very large transactional SQL server. A relatively simple and stable back-end daemon would expose an API (could be REST, GraphQL, gRPC, etc). As little &quot;application logic&quot; as possible would be embedded in this back-end; as much as possible would be pushed to bots which could be authored and operated by anybody. A separate web interface project would talk to the API backend and could be developed more rapidly.</p>
-<p>A cronjob would make periodic database dumps, both in &quot;full&quot; form (all tables and all edit history, removing only authentication credentials) and &quot;flat&quot; form (with only the most recent version of each entity, using only persistent IDs between entities).</p>
-<p>A goal is to be linked-data/RDF/JSON-LD/semantic-web &quot;compatible&quot;, but not necessarily &quot;first&quot;. It should be possible to export the database in a relatively clean RDF form, and to fetch data in a variety of formats, but internally fatcat would not be backed by a triple-store, and would not be bound to a specific third party ontology or schema.</p>
-<p>Microservice daemons should be able to proxy between the primary API and standard protocols like ResourceSync and OAI-PMH, and bots could consume external databases in those formats.</p>
+<p>The canonical backend datastore exposes a microservice-like HTTP API, which could be extended with gRPC or GraphQL interfaces. The initial datastore is a transactional SQL database, but this implementation detail is abstracted by the API.</p>
+<p>As little &quot;application logic&quot; as possible should be embedded in this back-end; as much as possible would be pushed to bots which could be authored and operated by anybody. A separate web interface project talks to the API backend and can be developed more rapidly with less concern about data loss or corruption.</p>
+<p>A cronjob will creae periodic database dumps, both in &quot;full&quot; form (all tables and all edit history, removing only authentication credentials) and &quot;flattened&quot; form (with only the most recent version of each entity).</p>
+<p>A goal is to be linked-data/RDF/JSON-LD/semantic-web &quot;compatible&quot;, but not necessarily &quot;first&quot;. It should be possible to export the database in a relatively clean RDF form, and to fetch data in a variety of formats, but internally fatcat will not be backed by a triple-store, and will not be bound to a rigid third-party ontology or schema.</p>
+<p>Microservice daemons should be able to proxy between the primary API and standard protocols like ResourceSync and OAI-PMH, and third party bots could ingest or synchronize the databse in those formats.</p>
<h2 id="licensing">Licensing</h2>
-<p>The core fatcat database should only contain verifyable factual statements (which isn't to say that all statements are &quot;true&quot;), not creative or derived content.</p>
-<p>The goal is to have a very permissively licensed database: CC-0 (no rights reserved) if possible. Under US law, it should be possible to scrape and pull in factual data from other corpuses without adopting their licenses. The goal here isn't to avoid all attibution (progeny information will be included, and a large sources and acknowledgements statement should be maintained), but trying to manage the intersection of all upstream source licenses seems untenable, and creates burdens for downstream users.</p>
-<p>Special care will need to be taken around copyright and original works. I would propose either not accepting abstracts at all, or including them in a partitioned database to prevent copyright contamination. Likewise, even simple user-created content like lists, reviews, ratings, comments, discussion, documentation, etc should go in separate services.</p>
+<p>The core fatcat database should only contain verifiable factual statements (which isn't to say that all statements are &quot;true&quot;), not creative or derived content.</p>
+<p>The goal is to have a very permissively licensed database: CC-0 (no rights reserved) if possible. Under US law, it should be possible to scrape and pull in factual data from other corpuses without adopting their licenses. The goal here isn't to avoid attribution (progeny information will be included, and a large sources and acknowledgments statement should be maintained and shipped with bulk exports), but trying to manage the intersection of all upstream source licenses seems untenable, and creates burdens for downstream users and developers.</p>
+<p>Special care will need to be taken around copyright, &quot;original work&quot; by editors, and contributions that raise privacy concerns. If abstracts are stored at all, they should be in a partitioned database table to prevent copyright contamination. Likewise, even simple user-created content like lists, reviews, ratings, comments, discussion, documentation, etc., should live in separate services.</p>
<h2 id="basic-editing-workflow-and-bots">Basic Editing Workflow and Bots</h2>
-<p>Both human editors and bots would have edits go through the same API, with humans using either the default web interface or arbitrary integrations or client software.</p>
-<p>The usual workflow would be to create edits (or creations, merges, deletions) to individual entities one at a time, all under a single &quot;edit group&quot; of related edits (eg, correcting authorship info for multiple works related to a single author). When ready, the editor would &quot;submit&quot; the edit group for review. During the review period, humans could vote (or veto/approve if they have higher permissions), and bots can perform automated checks. During this period the editor can make tweaks if necessary. After some fixed time period (72 hours?) with no changes and no blocking issues, the edit group would be auto-accepted, if no auto-resolvable merge-conflicts have arisen. This process balances editing labor (reviews are easy, but optional) against quality (cool-down period makes it easier to detect and prevent spam or out-of-control bots). Advanced permissions could allow some trusted human and bot editors to push through edits more rapidly.</p>
-<p>Bots would need to be tuned to have appropriate edit group sizes (eg, daily batches, instead of millions of works in a single edit) to make human QA and reverts possible.</p>
-<p>Data progeny and citation would be left to the edit history. In the case of importing external databases, the expectation would be that special-purpose bot accounts would be used. Human editors would leave edit messages to clarify their sources.</p>
-<p>A style guide (wiki), chat room, and discussion forum would be hosted as separate stand-alone services for editors to propose projects and debate process or scope changes. It would be best if these could use federated account authorization (oauth?) to have consistent account IDs across mediums.</p>
-<h2 id="edit-log">Edit Log</h2>
-<p>As part of the process of &quot;accepting&quot; an edit group, a row would be written to an immutable, append-only log table (which internally could be a SQL table) documenting each identifier change. This log establishes a monotonically increasing version number for the entire corpus, and should make interaction with other systems easier (eg, search engines, replicated databases, alternative storage backends, notification frameworks, etc).</p>
-<h2 id="itentifiers">Itentifiers</h2>
-<p>A fixed number of first class &quot;entities&quot; would be definied, with common behavior and schema layouts. These would all be semantic entities like &quot;work&quot;, &quot;release&quot;, &quot;container&quot;, and &quot;person&quot;.</p>
-<p>fatcat identifiers would be semanticly meaningless fixed length random numbers, usually represented in case-insensitive base32 format. Each entity type would have it's own identifier namespace. Eg, 96 bit identifiers would have 20 characters and look like:</p>
-<pre><code>fcwork_rzga5b9cd7efgh04iljk
-https://fatcat.org/work/rzga5b9cd7efgh04iljk</code></pre>
-<p>128-bit (UUID size) would have 26 characters:</p>
-<pre><code>fcwork_rzga5b9cd7efgh04iljk8f3jvz
-https://fatcat.org/work/rzga5b9cd7efgh04iljk8f3jvz</code></pre>
-<p>A 64 bit namespace is probably plenty though, and would work with most databse Integer columns:</p>
-<pre><code>fcwork_rzga5b9cd7efg
-https://fatcat.org/work/rzga5b9cd7efg</code></pre>
-<p>The idea would be to only have fatcat identifiers be used to interlink between databases, <em>not</em> to supplant DOIs, ISBNs, handle, ARKs, and other &quot;registered&quot; persistant identifiers.</p>
+<p>Both human editors and bots should have edits go through the same API, with humans using either the default web interface, integrations, or client software.</p>
+<p>The normal workflow is to create edits (or updates, merges, deletions) on individual entities. Individual changes are bundled into an &quot;edit group&quot; of related edits (eg, correcting authorship info for multiple works related to a single author). When ready, the editor would &quot;submit&quot; the edit group for review. During the review period, human editors vote and bots can perform automated checks. During this period the editor can make tweaks if necessary. After some fixed time period (72 hours?) with no changes and no blocking issues, the edit group would be auto-accepted if no merge conflicts have be created by other edits to the same entities. This process balances editing labor (reviews are easy, but optional) against quality (cool-down period makes it easier to detect and prevent spam or out-of-control bots). More sophisticated roles and permissions could allow some certain humans and bots to push through edits more rapidly (eg, importing new works from a publisher API).</p>
+<p>Bots need to be tuned to have appropriate edit group sizes (eg, daily batches, instead of millions of works in a single edit) to make human QA review and reverts managable.</p>
+<p>Data progeny and source references are captured in the edit metadata, instead of being encoded in the entity data model itself. In the case of importing external databases, the expectation is that special-purpose bot accounts are be used, and tag timestamps and external identifiers in the edit metadata. Human editors would leave edit messages to clarify their sources.</p>
+<p>A style guide (wiki) and discussion forum would be hosted as separate stand-alone services for editors to propose projects and debate process or scope changes. These services should have unified accounts and logins (oauth?) to have consistent account IDs across all mediums.</p>
+<h2 id="global-edit-changelog">Global Edit Changelog</h2>
+<p>As part of the process of &quot;accepting&quot; an edit group, a row would be written to an immutable, append-only log table (which internally could be a SQL table) documenting each identifier change. This changelog establishes a monotonically increasing version number for the entire corpus, and should make interaction with other systems easier (eg, search engines, replicated databases, alternative storage backends, notification frameworks, etc.).</p>
+<h2 id="identifiers">Identifiers</h2>
+<p>A fixed number of first-class &quot;entities&quot; are defined, with common behavior and schema layouts. These are all be semantic entities like &quot;work&quot;, &quot;release&quot;, &quot;container&quot;, and &quot;creator&quot;.</p>
+<p>fatcat identifiers are semantically meaningless fixed-length random numbers, usually represented in case-insensitive base32 format. Each entity type has its own identifier namespace.</p>
+<p>128-bit (UUID size) identifiers encode as 26 characters (but note that not all such strings decode to valid UUIDs), and in the backend can be serialized in UUID columns:</p>
+<pre><code>work_rzga5b9cd7efgh04iljk8f3jvz
+https://fatcat.wiki/work/rzga5b9cd7efgh04iljk8f3jvz</code></pre>
+<p>In comparison, 96-bit identifiers would have 20 characters and look like:</p>
+<pre><code>work_rzga5b9cd7efgh04iljk
+https://fatcat.wiki/work/rzga5b9cd7efgh04iljk</code></pre>
+<p>A 64-bit namespace would probably be large enought, and would work with database Integer columns:</p>
+<pre><code>work_rzga5b9cd7efg
+https://fatcat.wiki/work/rzga5b9cd7efg</code></pre>
+<p>The idea would be to only have fatcat identifiers be used to interlink between databases, <em>not</em> to supplant DOIs, ISBNs, handle, ARKs, and other &quot;registered&quot; persistent identifiers.</p>
<h2 id="entities-and-internal-schema">Entities and Internal Schema</h2>
-<p>Internally, identifiers would be lightweight pointers to actual metadata objects, which can be thought of as &quot;versions&quot;. The metadata objects themselves would be immutable once commited; the edit process is one of creating new objects and, if the edit is approved, pointing the identifier to the new version. Entities would reference between themselves by identifier.</p>
+<p>Internally, identifiers would be lightweight pointers to &quot;revisions&quot; of an entity. Revisions are stored in their complete form, not as a patch or difference; if comparing to distributed version control systems, this is the git model, not the mercurial model.</p>
+<p>The entity revisions are immutable once accepted; the editting process involves the creation of new entity revisions and, if the edit is approved, pointing the identifier to the new revision. Entities cross-reference between themselves by <em>identifier</em> not <em>revision number</em>. Identifier pointers also support (versioned) deletion and redirects (for merging entities).</p>
<p>Edit objects represent a change to a single entity; edits get batched together into edit groups (like &quot;commits&quot; and &quot;pull requests&quot; in git parlance).</p>
-<p>SQL tables would probably look something like the following, though be specific to each entity type (eg, there would be an actual <code>work_revision</code> table, but not an actual <code>entity_revision</code> table):</p>
-<pre><code>entity_id
- uuid
- current_revision
+<p>SQL tables would probably look something like the (but specific to each entity type, with tables like <code>work_revision</code> not <code>entity_revision</code>):</p>
+<pre><code>entity_ident
+ id (uuid)
+ current_revision (entity_revision foreign key)
+ redirect_id (optional; points to another entity_ident)
entity_revision
- entity_id (bi-directional?)
- previous: entity_revision or none
- state: normal, redirect, deletion
- redirect_entity_id: optional
- extra: json blob
- edit_id
+ revision_id
+ &lt;entity-specific fields&gt;
+ extra: json blob for schema evolution
-edit
- mutable: boolean
- edit_group
- editor
+entity_edit
+ timestamp
+ editgroup_id
+ ident (entity_ident foreign key)
+ new_revision (entity_revision foreign key)
+ previous_revision (optional; points to entity_revision)
+ extra: json blob for progeny metadata
-edit_group</code></pre>
-<p>Additional type-specific columns would hold actual metadata. Additional tables (which would reference both <code>entity_revision</code> and <code>entity_id</code> foreign keys as appropriate) would represent things like external identifiers, ordered author/work relationships, citations between works, etc. Every revision of an entity would require duplicating all of these associated rows, which could end up being a large source of inefficiency, but is necessary to represent the full history of an object.</p>
+editgroup
+ editor_id
+ description
+ extra: json blob for progeny metadata</code></pre>
+<p>Additional entity-specific columns would hold actual metadata. Additional tables (which would reference both <code>entity_revision</code> and <code>entity_id</code> foreign keys as appropriate) would represent things like authorship relationships (creator/release), citations between works, etc. Every revision of an entity would require duplicating all of these associated rows, which could end up being a large source of inefficiency, but is necessary to represent the full history of an object.</p>
<h2 id="scope">Scope</h2>
-<p>Want the &quot;scholarly web&quot;: the graph of works that cite other works. Certainly every work that is cited more than once and every work that both cites and is cited; &quot;leaf nodes&quot; and small islands might not be in scope.</p>
-<p>Focusing on written works, with some exceptions. Expect core media (for which we would pursue &quot;completeness&quot;) to be:</p>
+<p>The goal is to capture the &quot;scholarly web&quot;: the graph of written works that cite other works. Any work that is both cited more than once and cites more than one other work in the catalog is very likely to be in scope. &quot;Leaf nodes&quot; and small islands of intra-cited works may or may not be in scope.</p>
+<p>Overall focus is on written works, with some exceptions. The expected core focus (for which we would pursue &quot;completeness&quot;) is:</p>
<pre><code>journal articles
-books
+academic books
conference proceedings
technical memos
-dissertations</code></pre>
-<p>Probably in scope:</p>
+dissertations
+monographs
+well-researched blog posts
+web pages (that have citations)
+&quot;white papers&quot;</code></pre>
+<p>Possibly in scope:</p>
<pre><code>reports
magazine articles
-published poetry
essays
+notable mailing list postings
government documents
-conference
presentations (slides, video)
-datasets</code></pre>
+datasets
+well-researched wiki pages
+patents</code></pre>
<p>Probably not:</p>
-<pre><code>patents
-court cases and legal documents
+<pre><code>court cases and legal documents
+newspaper articles
+social media
manuals
datasheets
-courses</code></pre>
+courses
+published poetry</code></pre>
<p>Definitely not:</p>
<pre><code>audio recordings
tv show episodes
@@ -88,57 +116,49 @@ musical scores
advertisements</code></pre>
<p>Author, citation, and work disambiguation would be core tasks. Linking pre-prints to final publication is in scope.</p>
<p>I'm much less interested in altmetrics, funding, and grant relationships than most existing databases in this space.</p>
-<p>fatcat would not include any fulltext content itself, even for cleanly licensed (open access) works, but would have &quot;strong&quot; (verified) links to fulltext content, and would include file-level metadata (like hashes and fingerprints) to help discovery and identify content from any source. Typed file-level links should make fatcat more useful for both humans and machines to quickly access fulltext content of a given mimetype than existing redirect or landing page systems.</p>
+<p>fatcat would not include any fulltext content itself, even for cleanly licensed (open access) works, but would have &quot;strong&quot; (verified) links to fulltext content, and would include file-level metadata (like hashes and fingerprints) to help discovery and identify content from any source. File-level URLs with context (&quot;repository&quot;, &quot;author-homepage&quot;, &quot;web-archive&quot;) should make fatcat more useful for both humans and machines to quickly access fulltext content of a given mimetype than existing redirect or landing page systems. So another factor in deciding scope is whether a work has &quot;digital fixity&quot; and can be contained in a single immutable file.</p>
<h2 id="ontology">Ontology</h2>
-<p>Loosely following FRBR, but removing the &quot;manifestation&quot; abstraction, and favoring files (digital artifacts) over physical items, the primary entities are:</p>
+<p>Loosely following FRBR (Functional Requirements for Bibliographic Records), but removing the &quot;manifestation&quot; abstraction, and favoring files (digital artifacts) over physical items, the primary entities are:</p>
<pre><code>work
- type
- &lt;has&gt; contributors
- &lt;about&gt; subject/category
- &lt;has-primary&gt; release
+ &lt;a stub, for grouping releases&gt;
release (aka &quot;edition&quot;, &quot;variant&quot;)
title
volume/pages/issue/chapter
- open-access status
+ media/formfactor
+ publication/peer-review status
+ language
&lt;published&gt; date
- &lt;of a&gt; work
- &lt;published-by&gt; publisher
- &lt;published in&gt; container
- &lt;has&gt; contributors
- &lt;citation&gt; citetext &lt;to&gt; release
+ &lt;variant-of&gt; work
+ &lt;published-in&gt; container
+ &lt;has-contributors&gt; creator
+ &lt;citation-to&gt; release
&lt;has&gt; identifier
file (aka &quot;digital artifact&quot;)
- &lt;of a&gt; release
- &lt;has&gt; hashes
- &lt;found at&gt; URLs
- &lt;held-at&gt; institution &lt;with&gt; accession
+ &lt;instantiates&gt; release
+ hashes/checksums
+ mimetype
+ &lt;found-at&gt; URLs
-contributor
+creator (aka &quot;author&quot;)
name
- &lt;has&gt; aliases
- &lt;has&gt; affiliation &lt;for&gt; date span
- &lt;has&gt; identifier
+ identifiers
+ aliases
-container
+container (aka &quot;venue&quot;, &quot;serial&quot;, &quot;title&quot;)
name
open-access policy
peer-review policy
&lt;has&gt; aliases, acronyms
&lt;about&gt; subject/category
&lt;has&gt; identifier
- &lt;published in&gt; container
- &lt;published-by&gt; publisher
-
-publisher
- name
- &lt;has&gt; aliases, acronyms
- &lt;has&gt; identifier</code></pre>
+ &lt;published-in&gt; container
+ &lt;published-by&gt; publisher</code></pre>
<h2 id="controlled-vocabularies">Controlled Vocabularies</h2>
-<p>Some special namespace tables and enums would probably be helpful; these should live in the database (not requiring a database migration to update), but should have more controlled editing workflow... perhaps versioned in the codebase:</p>
+<p>Some special namespace tables and enums would probably be helpful; these could live in the database (not requiring a database migration to update), but should have more controlled editing workflow... perhaps versioned in the codebase:</p>
<ul>
-<li>identifier namespaces (DOI, ISBN, ISSN, ORCID, etc)</li>
+<li>identifier namespaces (DOI, ISBN, ISSN, ORCID, etc; but not the identifers themselves)</li>
<li>subject categorization</li>
<li>license and open access status</li>
<li>work &quot;types&quot; (article vs. book chapter vs. proceeding, etc)</li>
@@ -146,18 +166,25 @@ publisher
<li>human languages</li>
<li>file mimetypes</li>
</ul>
+<p>These could also be enforced by QA bots that review all editgroups.</p>
<h2 id="unresolved-questions">Unresolved Questions</h2>
-<p>How to handle translations of, eg, titles and author names? To be clear, not translations of works (which are just separate releases).</p>
-<p>Are bi-directional links a schema anti-pattern? Eg, should &quot;work&quot; point to a primary &quot;release&quot; (which itself points back to the work), or should &quot;release&quot; have a &quot;is-primary&quot; flag?</p>
-<p>Should <code>identifier</code> and <code>citation</code> be their own entities, referencing other entities by UUID instead of by revision? This could save a ton of database space and chunder.</p>
-<p>Should contributor/author contact information be retained? It could be very useful for disambiguation, but we don't want to build a huge database for spammers or &quot;innovative&quot; start-up marketing.</p>
-<p>Would general purpose SQL databases like Postgres or MySQL scale well enough told hold several tables with billions of entries? Right from the start there are hundreds of millions of works and releases, many of which having dozens of citations, many authors, and many identifiers, and then we'll have potentially dozens of edits for each of these, which multiply out to <code>1e8 * 2e1 * 2e1 = 4e10</code>, or 40 billion rows in the citation table. If each row was 32 bytes on average (uncompressed, not including index size), that would be 1.3 TByte on it's own, larger than common SSD disk. I think a transactional SQL datastore is the right answer. In my experience locking and index rebuild times are usually the biggest scaling challenges; the largely-immutable architecture here should mitigate locking. Hopefully few indexes would be needed in the primary database, as user interfaces could rely on secondary read-only search engines for more complex queries and views.</p>
+<p>How to handle translations of, eg, titles and author names? To be clear, not translations of works (which are just separate releases), these are more like aliases or &quot;originally known as&quot;.</p>
+<p>Are bi-directional links a schema anti-pattern? Eg, should &quot;work&quot; point to a &quot;primary release&quot; (which itself points back to the work)?</p>
+<p>Should <code>identifier</code> and <code>citation</code> be their own entities, referencing other entities by UUID instead of by revision? Not sure if this would increase or decrease database resource utilization.</p>
+<p>Should contributor/author affiliation and contact information be retained? It could be very useful for disambiguation, but we don't want to build a huge database for spammers or &quot;innovative&quot; start-up marketing.</p>
+<p>Can general-purpose SQL databases like Postgres or MySQL scale well enough to hold several tables with billions of entity revisions? Right from the start there are hundreds of millions of works and releases, many of which having dozens of citations, many authors, and many identifiers, and then we'll have potentially dozens of edits for each of these, which multiply out to <code>1e8 * 2e1 * 2e1 = 4e10</code>, or 40 billion rows in the citation table. If each row was 32 bytes on average (uncompressed, not including index size), that would be 1.3 TByte on its own, larger than common SSD disks. I do think a transactional SQL datastore is the right answer. In my experience locking and index rebuild times are usually the biggest scaling challenges; the largely-immutable architecture here should mitigate locking. Hopefully few indexes would be needed in the primary database, as user interfaces could rely on secondary read-only search engines for more complex queries and views.</p>
<p>I see a tension between focus and scope creep. If a central database like fatcat doesn't support enough fields and metadata, then it will not be possible to completely import other corpuses, and this becomes &quot;yet another&quot; partial bibliographic database. On the other hand, accepting arbitrary data leads to other problems: sparseness increases (we have more &quot;partial&quot; data), potential for redundancy is high, humans will start editing content that might be bulk-replaced, etc.</p>
<p>There might be a need to support &quot;stub&quot; references between entities. Eg, when adding citations from PDF extraction, the cited works are likely to be ambiguous. Could create &quot;stub&quot; works to be merged/resolved later, or could leave the citation hanging. Same with authors, containers (journals), etc.</p>
<h2 id="references-and-previous-work">References and Previous Work</h2>
<p>The closest overall analog of fatcat is <a href="https://musicbrainz.org">MusicBrainz</a>, a collaboratively edited music database. <a href="https://openlibrary.org">Open Library</a> is a very similar existing service, which exclusively contains book metadata.</p>
-<p><a href="https://wikidata.org">Wikidata</a> seems to be the most successful and actively edited/developed open bibliographic database at this time (early 2018), including the <a href="https://meta.wikimedia.org/wiki/WikiCite_2017">wikicite</a> conference and related Wikimedia/Wikipedia projects. Wikidata is a general purpose semantic database of entities, facts, and relationships; bibliographic metadata has become a large fraction of all content in recent years. The focus there seems to be linking knowledge (statements) to specific sources unambigiously. Potential advantages fatcat would have would be a focus on a specific scope (not a general purpose database of entities) and a goal of completeness (capturing as many works and relationships as rapidly as possible). However, it might be better to just pitch in to the wikidata efforts.</p>
+<p><a href="https://wikidata.org">Wikidata</a> seems to be the most successful and actively edited/developed open bibliographic database at this time (early 2018), including the <a href="https://meta.wikimedia.org/wiki/WikiCite_2017">wikicite</a> conference and related Wikimedia/Wikipedia projects. Wikidata is a general purpose semantic database of entities, facts, and relationships; bibliographic metadata has become a large fraction of all content in recent years. The focus there seems to be linking knowledge (statements) to specific sources unambiguously. Potential advantages fatcat would have would be a focus on a specific scope (not a general-purpose database of entities) and a goal of completeness (capturing as many works and relationships as rapidly as possible). However, it might be better to just pitch in to the wikidata efforts.</p>
<p>The technical design of fatcat is loosely inspired by the git branch/tag/commit/tree architecture, and specifically inspired by Oliver Charles' &quot;New Edit System&quot; <a href="https://ocharles.org.uk/blog/posts/2012-07-10-nes-does-it-better-1.html">blog posts</a> from 2012.</p>
<p>There are a whole bunch of proprietary, for-profit bibliographic databases, including Web of Science, Google Scholar, Microsoft Academic Graph, aminer, Scopus, and Dimensions. There are excellent field-limited databases like dblp, MEDLINE, and Semantic Scholar. There are some large general-purpose databases that are not directly user-editable, including the OpenCitation corpus, CORE, BASE, and CrossRef. I don't know of any large (more than 60 million works), open (bulk-downloadable with permissive or no license), field agnostic, user-editable corpus of scholarly publication bibliographic metadata.</p>
+<h2 id="rfc-changelog">RFC Changelog</h2>
+<ul>
+<li><strong>2017-12-16</strong>: early notes</li>
+<li><strong>2018-01-17</strong>: initial RFC document</li>
+<li><strong>2018-08-10</strong>: updates from implementation work</li>
+</ul>
{% endblock %}
diff --git a/site/index.html b/site/index.html
index c7f3c14a..481a6f71 100644
--- a/site/index.html
+++ b/site/index.html
@@ -4,34 +4,71 @@
<xmp theme="united" style="display:none;">
-fatcat is a half-baked idea to build an open, independent, collaboratively
-editable bibliographic database of most written works, with a focus on
-published research outputs like journal articles, pre-prints, and conference
-proceedings.
+fatcat Design Document (RFC)
+------------------------------
+
+*Contact: Bryan Newbold <bnewbold@archive.org>. Last updated 2018-08-10*
+
+fatcat is a proposed open bibliographic catalog of written works. The scope of
+works is somewhat flexible, with a focus on published research outputs like
+journal articles, pre-prints, and conference proceedings. Records are
+collaboratively editable, versioned, available in bulk form, and include
+URL-agnostic file-level metadata.
+
+fatcat is currently used internally at the Internet Archive, but interested
+folks are welcome to contribute to design and development.
+
+## Goals and Ecosystem Niche
+
+For the Internet Archive use case, fatcat has two primary use cases:
+
+- Track the "completeness" of our holdings against all known published works.
+ In particular, allow us to monitor and prioritize further collection work.
+- Be a public-facing catalog and access mechanism for our open access holdings.
+
+In the larger ecosystem, fatcat could also provide:
+
+- A work-level (as opposed to title-level) archival dashboard: what fraction of
+ all published works are preserved in archives? KBART, CLOCKSS, Portico, and
+ other preservations don't provide granular metadata
+- A collaborative, independent, non-commercial, fully-open, field-agnostic,
+ "completeness"-oriented catalog of scholarly metadata
+- Unified (centralized) foundation for discovery and access across repositories
+ and archives: discovery projects can focus on user experience instead of
+ building their own catalog from scratch
+- Research corpus for meta-science, with an emphasis on availability and
+ reproducibility (metadata corpus itself is open access, and file-level hashes
+ control for content drift)
+- Foundational infrastructure for distributed digital preservation
+- On-ramp for non-traditional digital works ("grey literature") into the
+ scholarly web
## Technical Architecture
-The canonical backend datastore would be a very large transactional SQL server.
-A relatively simple and stable back-end daemon would expose an API (could be
-REST, GraphQL, gRPC, etc). As little "application logic" as possible would be
-embedded in this back-end; as much as possible would be pushed to bots which
-could be authored and operated by anybody. A separate web interface project
-would talk to the API backend and could be developed more rapidly.
+The canonical backend datastore exposes a microservice-like HTTP API, which
+could be extended with gRPC or GraphQL interfaces. The initial datastore is a
+transactional SQL database, but this implementation detail is abstracted by the
+API.
+
+As little "application logic" as possible should be embedded in this back-end;
+as much as possible would be pushed to bots which could be authored and
+operated by anybody. A separate web interface project talks to the API backend
+and can be developed more rapidly with less concern about data loss or
+corruption.
-A cronjob would make periodic database dumps, both in "full" form (all tables
-and all edit history, removing only authentication credentials) and "flat" form
-(with only the most recent version of each entity, using only persistent IDs
-between entities).
+A cronjob will creae periodic database dumps, both in "full" form (all tables
+and all edit history, removing only authentication credentials) and "flattened"
+form (with only the most recent version of each entity).
A goal is to be linked-data/RDF/JSON-LD/semantic-web "compatible", but not
necessarily "first". It should be possible to export the database in a
relatively clean RDF form, and to fetch data in a variety of formats, but
-internally fatcat would not be backed by a triple-store, and would not be
-bound to a specific third-party ontology or schema.
+internally fatcat will not be backed by a triple-store, and will not be bound
+to a rigid third-party ontology or schema.
Microservice daemons should be able to proxy between the primary API and
-standard protocols like ResourceSync and OAI-PMH, and bots could consume
-external databases in those formats.
+standard protocols like ResourceSync and OAI-PMH, and third party bots could
+ingest or synchronize the databse in those formats.
## Licensing
@@ -42,84 +79,90 @@ content.
The goal is to have a very permissively licensed database: CC-0 (no rights
reserved) if possible. Under US law, it should be possible to scrape and pull
in factual data from other corpuses without adopting their licenses. The goal
-here isn't to avoid all attribution (progeny information will be included, and a
-large sources and acknowledgments statement should be maintained), but trying
-to manage the intersection of all upstream source licenses seems untenable, and
-creates burdens for downstream users.
-
-Special care will need to be taken around copyright and original works. I would
-propose either not accepting abstracts at all, or including them in a
-partitioned database to prevent copyright contamination. Likewise, even simple
-user-created content like lists, reviews, ratings, comments, discussion,
-documentation, etc., should go in separate services.
+here isn't to avoid attribution (progeny information will be included, and a
+large sources and acknowledgments statement should be maintained and shipped
+with bulk exports), but trying to manage the intersection of all upstream
+source licenses seems untenable, and creates burdens for downstream users and
+developers.
+
+Special care will need to be taken around copyright, "original work" by
+editors, and contributions that raise privacy concerns. If abstracts are
+stored at all, they should be in a partitioned database table to prevent
+copyright contamination. Likewise, even simple user-created content like lists,
+reviews, ratings, comments, discussion, documentation, etc., should live in
+separate services.
## Basic Editing Workflow and Bots
-Both human editors and bots would have edits go through the same API, with
-humans using either the default web interface, arbitrary integrations, or
-client software.
+Both human editors and bots should have edits go through the same API, with
+humans using either the default web interface, integrations, or client
+software.
-The usual workflow would be to create edits (or creations, merges, deletions)
-to individual entities one at a time, all under a single "edit group" of
+The normal workflow is to create edits (or updates, merges, deletions) on
+individual entities. Individual changes are bundled into an "edit group" of
related edits (eg, correcting authorship info for multiple works related to a
single author). When ready, the editor would "submit" the edit group for
-review. During the review period, humans could vote (or veto/approve if they
-have higher permissions), and bots can perform automated checks. During this
-period the editor can make tweaks if necessary. After some fixed time period
-(72 hours?) with no changes and no blocking issues, the edit group would be
-auto-accepted, if no auto-resolvable merge-conflicts have arisen. This process
-balances editing labor (reviews are easy, but optional) against quality
-(cool-down period makes it easier to detect and prevent spam or out-of-control
-bots). Advanced permissions could allow some trusted human and bot editors to
-push through edits more rapidly.
-
-Bots would need to be tuned to have appropriate edit group sizes (eg, daily
-batches, instead of millions of works in a single edit) to make human QA and
-reverts possible.
-
-Data progeny and citation would be left to the edit history. In the case of
-importing external databases, the expectation would be that special-purpose
-bot accounts would be used. Human editors would leave edit messages to clarify
-their sources.
-
-A style guide (wiki), chat room, and discussion forum would be hosted as
-separate stand-alone services for editors to propose projects and debate
-process or scope changes. It would be best if these could use federated account
-authorization (oauth?) to have consistent account IDs across mediums.
-
-## Edit Log
+review. During the review period, human editors vote and bots can perform
+automated checks. During this period the editor can make tweaks if necessary.
+After some fixed time period (72 hours?) with no changes and no blocking
+issues, the edit group would be auto-accepted if no merge conflicts have
+be created by other edits to the same entities. This process balances editing
+labor (reviews are easy, but optional) against quality (cool-down period makes
+it easier to detect and prevent spam or out-of-control bots). More
+sophisticated roles and permissions could allow some certain humans and bots to
+push through edits more rapidly (eg, importing new works from a publisher API).
+
+Bots need to be tuned to have appropriate edit group sizes (eg, daily batches,
+instead of millions of works in a single edit) to make human QA review and
+reverts managable.
+
+Data progeny and source references are captured in the edit metadata, instead
+of being encoded in the entity data model itself. In the case of importing
+external databases, the expectation is that special-purpose bot accounts
+are be used, and tag timestamps and external identifiers in the edit metadata.
+Human editors would leave edit messages to clarify their sources.
+
+A style guide (wiki) and discussion forum would be hosted as separate
+stand-alone services for editors to propose projects and debate process or
+scope changes. These services should have unified accounts and logins (oauth?)
+to have consistent account IDs across all mediums.
+
+## Global Edit Changelog
As part of the process of "accepting" an edit group, a row would be written to
an immutable, append-only log table (which internally could be a SQL table)
-documenting each identifier change. This log establishes a monotonically
+documenting each identifier change. This changelog establishes a monotonically
increasing version number for the entire corpus, and should make interaction
with other systems easier (eg, search engines, replicated databases,
alternative storage backends, notification frameworks, etc.).
## Identifiers
-A fixed number of first-class "entities" would be defined, with common
-behavior and schema layouts. These would all be semantic entities like "work",
-"release", "container", and "person".
+A fixed number of first-class "entities" are defined, with common behavior and
+schema layouts. These are all be semantic entities like "work", "release",
+"container", and "creator".
-fatcat identifiers would be semantically meaningless fixed-length random numbers,
-usually represented in case-insensitive base32 format. Each entity type would
-have its own identifier namespace. Eg, 96-bit identifiers would have 20
-characters and look like:
+fatcat identifiers are semantically meaningless fixed-length random numbers,
+usually represented in case-insensitive base32 format. Each entity type has its
+own identifier namespace.
- fcwork_rzga5b9cd7efgh04iljk
- https://fatcat.org/work/rzga5b9cd7efgh04iljk
+128-bit (UUID size) identifiers encode as 26 characters (but note that not all
+such strings decode to valid UUIDs), and in the backend can be serialized in
+UUID columns:
-128-bit (UUID size) would have 26 characters:
+ work_rzga5b9cd7efgh04iljk8f3jvz
+ https://fatcat.wiki/work/rzga5b9cd7efgh04iljk8f3jvz
- fcwork_rzga5b9cd7efgh04iljk8f3jvz
- https://fatcat.org/work/rzga5b9cd7efgh04iljk8f3jvz
+In comparison, 96-bit identifiers would have 20 characters and look like:
-A 64-bit namespace is probably plenty though, and would work with most database
-Integer columns:
+ work_rzga5b9cd7efgh04iljk
+ https://fatcat.wiki/work/rzga5b9cd7efgh04iljk
- fcwork_rzga5b9cd7efg
- https://fatcat.org/work/rzga5b9cd7efg
+A 64-bit namespace would probably be large enought, and would work with
+database Integer columns:
+
+ work_rzga5b9cd7efg
+ https://fatcat.wiki/work/rzga5b9cd7efg
The idea would be to only have fatcat identifiers be used to interlink between
databases, *not* to supplant DOIs, ISBNs, handle, ARKs, and other "registered"
@@ -127,78 +170,95 @@ persistent identifiers.
## Entities and Internal Schema
-Internally, identifiers would be lightweight pointers to actual metadata
-objects, which can be thought of as "versions". The metadata objects themselves
-would be immutable once committed; the edit process is one of creating new
-objects and, if the edit is approved, pointing the identifier to the new
-version. Entities would reference between themselves by identifier.
+Internally, identifiers would be lightweight pointers to "revisions" of an
+entity. Revisions are stored in their complete form, not as a patch or
+difference; if comparing to distributed version control systems, this is the
+git model, not the mercurial model.
+
+The entity revisions are immutable once accepted; the editting process involves
+the creation of new entity revisions and, if the edit is approved, pointing the
+identifier to the new revision. Entities cross-reference between themselves by
+*identifier* not *revision number*. Identifier pointers also support
+(versioned) deletion and redirects (for merging entities).
Edit objects represent a change to a single entity; edits get batched together
into edit groups (like "commits" and "pull requests" in git parlance).
-SQL tables would probably look something like the following, though be specific
-to each entity type (eg, there would be an actual `work_revision` table, but
-not an actual `entity_revision` table):
+SQL tables would probably look something like the (but specific to each entity
+type, with tables like `work_revision` not `entity_revision`):
- entity_id
- uuid
- current_revision
+ entity_ident
+ id (uuid)
+ current_revision (entity_revision foreign key)
+ redirect_id (optional; points to another entity_ident)
entity_revision
- entity_id (bi-directional?)
- previous: entity_revision or none
- state: normal, redirect, deletion
- redirect_entity_id: optional
- extra: json blob
- edit_id
-
- edit
- mutable: boolean
- edit_group
- editor
-
- edit_group
-
-Additional type-specific columns would hold actual metadata. Additional tables
-(which would reference both `entity_revision` and `entity_id` foreign keys as
-appropriate) would represent things like external identifiers, ordered
-author/work relationships, citations between works, etc. Every revision of an
-entity would require duplicating all of these associated rows, which could end
-up being a large source of inefficiency, but is necessary to represent the full
+ revision_id
+ <entity-specific fields>
+ extra: json blob for schema evolution
+
+ entity_edit
+ timestamp
+ editgroup_id
+ ident (entity_ident foreign key)
+ new_revision (entity_revision foreign key)
+ previous_revision (optional; points to entity_revision)
+ extra: json blob for progeny metadata
+
+ editgroup
+ editor_id
+ description
+ extra: json blob for progeny metadata
+
+Additional entity-specific columns would hold actual metadata. Additional
+tables (which would reference both `entity_revision` and `entity_id` foreign
+keys as appropriate) would represent things like authorship relationships
+(creator/release), citations between works, etc. Every revision of an entity
+would require duplicating all of these associated rows, which could end up
+being a large source of inefficiency, but is necessary to represent the full
history of an object.
## Scope
-Want the "scholarly web": the graph of works that cite other works. Certainly
-every work that is cited more than once and every work that both cites and is
-cited; "leaf nodes" and small islands might not be in scope.
+The goal is to capture the "scholarly web": the graph of written works that
+cite other works. Any work that is both cited more than once and cites more
+than one other work in the catalog is very likely to be in scope. "Leaf nodes"
+and small islands of intra-cited works may or may not be in scope.
-Focusing on written works, with some exceptions. Expect core media (for which we would pursue "completeness") to be:
+Overall focus is on written works, with some exceptions. The expected core
+focus (for which we would pursue "completeness") is:
journal articles
- books
+ academic books
conference proceedings
technical memos
dissertations
+ monographs
+ well-researched blog posts
+ web pages (that have citations)
+ "white papers"
-Probably in scope:
+Possibly in scope:
reports
magazine articles
- published poetry
essays
+ notable mailing list postings
government documents
- conference
presentations (slides, video)
datasets
+ well-researched wiki pages
+ patents
Probably not:
- patents
court cases and legal documents
+ newspaper articles
+ social media
manuals
datasheets
courses
+ published poetry
Definitely not:
@@ -216,69 +276,64 @@ most existing databases in this space.
fatcat would not include any fulltext content itself, even for cleanly licensed
(open access) works, but would have "strong" (verified) links to fulltext
content, and would include file-level metadata (like hashes and fingerprints)
-to help discovery and identify content from any source. Typed file-level links
-should make fatcat more useful for both humans and machines to quickly access
-fulltext content of a given mimetype than existing redirect or landing page
-systems.
+to help discovery and identify content from any source. File-level URLs with
+context ("repository", "author-homepage", "web-archive") should make fatcat
+more useful for both humans and machines to quickly access fulltext content of
+a given mimetype than existing redirect or landing page systems. So another
+factor in deciding scope is whether a work has "digital fixity" and can be
+contained in a single immutable file.
## Ontology
-Loosely following FRBR, but removing the "manifestation" abstraction, and
-favoring files (digital artifacts) over physical items, the primary entities
-are:
+Loosely following FRBR (Functional Requirements for Bibliographic Records), but
+removing the "manifestation" abstraction, and favoring files (digital
+artifacts) over physical items, the primary entities are:
work
- type
- <has> contributors
- <about> subject/category
- <has-primary> release
+ <a stub, for grouping releases>
release (aka "edition", "variant")
title
volume/pages/issue/chapter
- open-access status
+ media/formfactor
+ publication/peer-review status
+ language
<published> date
- <of a> work
- <published-by> publisher
- <published in> container
- <has> contributors
- <citation> citetext <to> release
+ <variant-of> work
+ <published-in> container
+ <has-contributors> creator
+ <citation-to> release
<has> identifier
file (aka "digital artifact")
- <of a> release
- <has> hashes
- <found at> URLs
- <held-at> institution <with> accession
+ <instantiates> release
+ hashes/checksums
+ mimetype
+ <found-at> URLs
- contributor
+ creator (aka "author")
name
- <has> aliases
- <has> affiliation <for> date span
- <has> identifier
+ identifiers
+ aliases
- container
+ container (aka "venue", "serial", "title")
name
open-access policy
peer-review policy
<has> aliases, acronyms
<about> subject/category
<has> identifier
- <published in> container
+ <published-in> container
<published-by> publisher
- publisher
- name
- <has> aliases, acronyms
- <has> identifier
-
## Controlled Vocabularies
-Some special namespace tables and enums would probably be helpful; these should
+Some special namespace tables and enums would probably be helpful; these could
live in the database (not requiring a database migration to update), but should
have more controlled editing workflow... perhaps versioned in the codebase:
-- identifier namespaces (DOI, ISBN, ISSN, ORCID, etc)
+- identifier namespaces (DOI, ISBN, ISSN, ORCID, etc; but not the identifers
+ themselves)
- subject categorization
- license and open access status
- work "types" (article vs. book chapter vs. proceeding, etc)
@@ -286,36 +341,38 @@ have more controlled editing workflow... perhaps versioned in the codebase:
- human languages
- file mimetypes
+These could also be enforced by QA bots that review all editgroups.
+
## Unresolved Questions
How to handle translations of, eg, titles and author names? To be clear, not
-translations of works (which are just separate releases).
+translations of works (which are just separate releases), these are more like
+aliases or "originally known as".
Are bi-directional links a schema anti-pattern? Eg, should "work" point to a
-primary "release" (which itself points back to the work), or should "release"
-have a "is-primary" flag?
+"primary release" (which itself points back to the work)?
Should `identifier` and `citation` be their own entities, referencing other
-entities by UUID instead of by revision? This could save a ton of database
-space and chunder.
-
-Should contributor/author contact information be retained? It could be very
-useful for disambiguation, but we don't want to build a huge database for
-spammers or "innovative" start-up marketing.
-
-Would general-purpose SQL databases like Postgres or MySQL scale well enough
-to hold several tables with billions of entries? Right from the start there
-are hundreds of millions of works and releases, many of which having dozens of
-citations, many authors, and many identifiers, and then we'll have potentially
-dozens of edits for each of these, which multiply out to `1e8 * 2e1 * 2e1 =
-4e10`, or 40 billion rows in the citation table. If each row was 32 bytes on
-average (uncompressed, not including index size), that would be 1.3 TByte on
-its own, larger than common SSD disk. I think a transactional SQL datastore is
-the right answer. In my experience locking and index rebuild times are usually
-the biggest scaling challenges; the largely-immutable architecture here should
-mitigate locking. Hopefully few indexes would be needed in the primary
-database, as user interfaces could rely on secondary read-only search engines
-for more complex queries and views.
+entities by UUID instead of by revision? Not sure if this would increase or
+decrease database resource utilization.
+
+Should contributor/author affiliation and contact information be retained? It
+could be very useful for disambiguation, but we don't want to build a huge
+database for spammers or "innovative" start-up marketing.
+
+Can general-purpose SQL databases like Postgres or MySQL scale well enough to
+hold several tables with billions of entity revisions? Right from the start
+there are hundreds of millions of works and releases, many of which having
+dozens of citations, many authors, and many identifiers, and then we'll have
+potentially dozens of edits for each of these, which multiply out to `1e8 * 2e1
+* 2e1 = 4e10`, or 40 billion rows in the citation table. If each row was 32
+bytes on average (uncompressed, not including index size), that would be 1.3
+TByte on its own, larger than common SSD disks. I do think a transactional SQL
+datastore is the right answer. In my experience locking and index rebuild times
+are usually the biggest scaling challenges; the largely-immutable architecture
+here should mitigate locking. Hopefully few indexes would be needed in the
+primary database, as user interfaces could rely on secondary read-only search
+engines for more complex queries and views.
I see a tension between focus and scope creep. If a central database like
fatcat doesn't support enough fields and metadata, then it will not be possible
@@ -367,7 +424,13 @@ user-editable corpus of scholarly publication bibliographic metadata.
[wd]: https://wikidata.org
[wikicite]: https://meta.wikimedia.org/wiki/WikiCite_2017
+## RFC Changelog
+
+- **2017-12-16**: early notes
+- **2018-01-17**: initial RFC document
+- **2018-08-10**: updates from implementation work
+
</xmp>
-<script src="http://strapdownjs.com/v/0.2/strapdown.js"></script>
+<script src="https://cdn.rawgit.com/arturadib/strapdown/gh-pages/v/0.2/strapdown.js"></script>
</html>