plv8
PL/JavaScript (v8) trusted procedural language
Overview
| Package | Version | Category | License | Language |
|---|---|---|---|---|
plv8 | 3.2.4 | LANG | PostgreSQL | C++ |
| ID | Extension | Bin | Lib | Load | Create | Trust | Reloc | Schema |
|---|---|---|---|---|---|---|---|---|
| 3010 | plv8 | No | Yes | No | Yes | No | No | pg_catalog |
Version
| Type | Repo | Version | PG Ver | Package | Deps |
|---|---|---|---|---|---|
| EXT | PIGSTY | 3.2.4 | 1817161514 | plv8 | - |
| RPM | PIGSTY | 3.2.4 | 1817161514 | plv8_$v | - |
| DEB | PIGSTY | 3.2.4 | 1817161514 | postgresql-$v-plv8 | - |
Build
You can build the RPM / DEB packages for plv8 using pig build:
Install
You can install plv8 directly. First, make sure the PGDG and PIGSTY repositories are added and enabled:
Install the extension using pig or apt/yum/dnf:
Install
pig
dnf
apt
Create Extension:
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
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
plv8.start_procplv8.v8_flagsplv8.execution_timeoutplv8.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_timeoutonly applies when the extension is compiled with execution-timeout support.
Was this page helpful?
Thanks—your feedback helps us improve this page.
What got in the way? (optional)