Skip to content

plv8

plv8 : PL/JavaScript (v8) trusted procedural language

Overview

IDExtensionPackageVersionCategoryLicenseLanguage
3010
plv8
plv8
3.2.4
LANG
PostgreSQL
C++
AttributeHas BinaryHas LibraryNeed LoadHas DDLRelocatableTrusted
--s-d--
No
Yes
No
Yes
no
no
Relationships
Schemaspg_catalog
See Also
plpgsql
pg_jsonschema
jsquery
plperl
plpython3u
pg_tle
pllua
plluau

Packages

TypeRepoVersionPG Major CompatibilityPackage PatternDependencies
EXT
PIGSTY
3.2.4
18
17
16
15
14
plv8-
RPM
PIGSTY
3.2.4
18
17
16
15
14
plv8_$v-
DEB
PIGSTY
3.2.4
18
17
16
15
14
postgresql-$v-plv8-
Linux / PGPG18PG17PG16PG15PG14
el8.x86_64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
el8.aarch64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
el9.x86_64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
el9.aarch64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
el10.x86_64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
el10.aarch64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
d12.x86_64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
d12.aarch64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
d13.x86_64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
d13.aarch64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
u22.x86_64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
u22.aarch64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
u24.x86_64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
u24.aarch64
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
PIGSTY 3.2.4
u26.x86_64
MISS
MISS
MISS
MISS
MISS
u26.aarch64
MISS
MISS
MISS
MISS
MISS

Source

pig build pkg plv8;		# build rpm/deb

Install

Make sure PGDG and PIGSTY repo available:

pig repo add pgsql -u   # add both repo and update cache

Install this extension with pig:

pig install plv8;		# install via package name, for the active PG version

pig install plv8 -v 18;   # install for PG 18
pig install plv8 -v 17;   # install for PG 17
pig install plv8 -v 16;   # install for PG 16
pig install plv8 -v 15;   # install for PG 15
pig install plv8 -v 14;   # install for PG 14

Create this extension with:

CREATE EXTENSION plv8;

Usage

Source: README, Docs site, Built-ins, Runtime configuration, Tag v3.2.4

plv8 is a trusted JavaScript procedural language for PostgreSQL, powered by the V8 engine. Upstream currently tags the extension as v3.2.4; Pigsty’s 3.2.4-2 package version is a packaging revision rather than a new upstream extension release.

Basic use

CREATE EXTENSION plv8;

SELECT plv8_version();
SELECT plv8_info();

DO $$ plv8.elog(NOTICE, plv8.version); $$ LANGUAGE plv8;

CREATE FUNCTION plv8_test(keys text[], vals text[]) RETURNS json AS $$
  let out = {};
  for (let i = 0; i < keys.length; i++) out[keys[i]] = vals[i];
  return out;
$$ LANGUAGE plv8 IMMUTABLE STRICT;

Common built-ins

  • plv8.elog(level, ...): emit PostgreSQL log or client messages.
  • plv8.execute(sql [, args]): run SQL and return rows or affected-row count.
  • plv8.prepare(...), PreparedPlan.execute(), PreparedPlan.cursor(): prepared SPI access.
  • plv8.subtransaction(fn): run a group of SPI operations atomically.
  • plv8.find_function(...): call another PLV8 function by name.
  • plv8.memory_usage(): inspect V8 heap usage for the current session.
  • plv8.run_script(source, name): evaluate named script text.

Runtime settings

SET plv8.start_proc = 'plv8_init';
SET plv8.execution_timeout = 60;
SET plv8.memory_limit = 512;
  • plv8.start_proc
  • plv8.v8_flags
  • plv8.execution_timeout
  • plv8.memory_limit

Caveats

  • Current docs state support for PostgreSQL 13 and above.
  • Each session has its own global JavaScript runtime; switching roles initializes a separate runtime context.
  • plv8.execution_timeout only applies when the extension is compiled with execution-timeout support.
Last updated on