paradedb.version_info
returns the current ParadeDB extension version, the full
Git commit hash, and the build mode (release
or debug
).
paradedb.schema
returns information about the index schema. This is useful for inspecting how an index was configured.
The following code block inspects an index called search_idx
. The argument should be the index name quoted in a string.
pg_relation_size
can be used to inspect the index size. pg_size_pretty
turns the size from bytes
into a human-readable format.
paradedb.index_info
returns information about the index’s underlying segments.
paradedb.merge_info
returns a table containing information about any ongoing segment merge operations.
If writes to the index seem to be hanging, this function can be used to determine if a merge is occurring.
paradedb.vacuum_info
returns a list of segment IDs that are currently being vacuumed.