Towards Dev

A publication for sharing projects, ideas, codes, and new theories.

Follow publication

JSON in PostgreSQL (Part 1: Setup and Measurement)

Christoph Bussler
Towards Dev
Published in
3 min readOct 2, 2022

--

Overview

Implementation: table and operations

Schema

CREATE TABLE IF NOT EXISTS json_schema.json_document
(
document_identifier UUID PRIMARY KEY,
time_inserted TIMESTAMP,
document JSONB
);

JSON vs. JSONB

Query

INSERT INTO json_schema.json_document 
(document_identifier, time_inserted, document)
VALUES (gen_random_uuid(), current_timestamp, '{}');

Machine and PostgreSQL database

OS Name Microsoft Windows 11 ProVersion 10.0.22000 Build 22000Processor Intel(R) Core(TM) i7-8565U CPU @ 1.80GHz, 1992 Mhz, 4 Core(s), 8 Logical Processor(s)Installed Physical Memory (RAM) 32.0 GBDisk Model Samsung SSD 970 EVO Plus 1TB
select version()PostgreSQL 14.5, compiled by Visual C++ build 1914, 64-bit

Execution: inserting with pgbench

Preliminaries

Empty document (size 2 bytes)

pgbench -n -c 15 -r -T 60 -h 127.0.0.1 -U jsondev -f writer_2.sql json_database
Password:
pgbench (14.5)
transaction type: writer_2.sql
scaling factor: 1
query mode: simple
number of clients: 15
number of threads: 1
duration: 60 s
number of transactions actually processed: 1208245
latency average = 0.738 ms
initial connection time = 547.437 ms
tps = 20320.507487 (without initial connection time)
statement latencies in milliseconds:
0.575 INSERT INTO json_schema.json_document (document_identifier, time_inserted,

Document of size 1735 bytes

pgbench -n -c 15 -r -T 60 -h 127.0.0.1 -U jsondev -f writer_1735.sql json_database
Password:
pgbench (14.5)
transaction type: writer_1735.sql
scaling factor: 1
query mode: simple
number of clients: 15
number of threads: 1
duration: 60 s
number of transactions actually processed: 905106
latency average = 0.984 ms
initial connection time = 656.384 ms
tps = 15249.512363 (without initial connection time)
statement latencies in milliseconds:
0.779 INSERT INTO json_schema.json_document (document_identifier, time_inserted,

Document of size 4503 bytes

pgbench -n -c 15 -r -T 60 -h 127.0.0.1 -U jsondev -f writer_4503.sql json_database
Password:
pgbench (14.5)
transaction type: writer_4503.sql
scaling factor: 1
query mode: simple
number of clients: 15
number of threads: 1
duration: 60 s
number of transactions actually processed: 698619
latency average = 1.277 ms
initial connection time = 543.798 ms
tps = 11748.300928 (without initial connection time)
statement latencies in milliseconds:
0.955 INSERT INTO json_schema.json_document (document_identifier, time_inserted,

Execution — Summary

Summary

--

--

No responses yet