vector search support

From: Nathan Bossart <nathandbossart(at)gmail(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Cc: jkatz(at)postgresql(dot)org, mail(at)joeconway(dot)com
Subject: vector search support
Date: 2023-04-22 00:07:23
Message-ID: 20230422000723.GB1527017@nathanxps13
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Attached is a proof-of-concept/work-in-progress patch set that adds
functions for "vectors" repreѕented with one-dimensional float8 arrays.
These functions may be used in a variety of applications, but I am
proposing them with the AI/ML use-cases in mind. I am posting this early
in the v17 cycle in hopes of gathering feedback prior to PGCon.

With the accessibility of AI/ML tools such as large language models (LLMs),
there has been a demand for storing and manipulating high-dimensional
vectors in PostgreSQL, particularly around nearest-neighbor queries. Many
of these vectors have more than 1500 dimensions. The cube extension [0]
provides some of the distance functionality (e.g., taxicab, Euclidean, and
Chebyshev), but it is missing some popular functions (e.g., cosine
similarity, dot product), and it is limited to 100 dimensions. We could
extend cube to support more dimensions, but this would require reworking
its indexing code and filling in gaps between the cube data type and the
array types. For some previous discussion about using the cube extension
for this kind of data, see [1].

float8[] is well-supported and allows for effectively unlimited dimensions
of data. float8 matches the common output format of many AI embeddings,
and it allows us or extensions to implement indexing methods around these
functions. This patch set does not yet contain indexing support, but we
are exploring using GiST or GIN for the use-cases in question. It might
also be desirable to add support for other linear algebra operations (e.g.,
operations on matrices). The attached patches likely only scratch the
surface of the "vector search" use-case.

The patch set is broken up as follows:

* 0001 does some minor refactoring of dsqrt() in preparation for 0002.
* 0002 adds several vector-related functions, including distance functions
and a kmeans++ implementation.
* 0003 adds support for optionally using the OpenBLAS library, which is an
implementation of the Basic Linear Algebra Subprograms [2]
specification. Basic testing with this library showed a small
performance boost, although perhaps not enough to justify giving this
patch serious consideration.

Of course, there are many open questions. For example, should PostgreSQL
support this stuff out-of-the-box in the first place? And should we
introduce a vector data type or SQL domains for treating float8[] as
vectors? IMHO these vector search use-cases are an exciting opportunity
for the PostgreSQL project, so I am eager to hear what folks think.

[0] https://www.postgresql.org/docs/current/cube.html
[1] https://postgr.es/m/2271927.1593097400%40sss.pgh.pa.us
[2] https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms

--
Nathan Bossart
Amazon Web Services: https://aws.amazon.com

Attachment Content-Type Size
v1-0001-Refactor-dsqrt.patch text/x-diff 1.9 KB
v1-0002-Introduce-basic-vector-support.patch text/x-diff 37.5 KB
v1-0003-Add-support-for-OpenBLAS.patch text/x-diff 20.6 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2023-04-22 00:12:59 Re: Order changes in PG16 since ICU introduction
Previous Message Nathan Bossart 2023-04-21 23:45:15 Re: Move un-parenthesized syntax docs to "compatibility" for few SQL commands