Towards Dev

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

Follow publication

JSON in PostgreSQL (Part 2: AlloyDB for PostgreSQL)

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

--

Overview of setup

AlloyDB for PostgreSQL configuration

Version: PostgreSQL 14 compatible
Type: Highly available
High availability: Highly available (multi-zone)
Machine type: 64 vCPU, 512 GB
select version();version                                         
-----------------------------------------------------------------
PostgreSQL 14.4 on x86_64-pc-linux-gnu, compiled by Debian clang version 12.0.1, 64-bit
(1 row)

Driver VM specification

Machine type: n2-highcpu-8
CPU platform: Intel Cascade Lake
Architecture: x86/64

Execution: inserting with pgbench

Preliminaries

Empty document (size 2 bytes)

pgbench -n -c 38 -r -T 60 -h 10.0.0.7 -U jsondev -f writer_2.sql json_database
Password:
transaction type: writer_2.sql
scaling factor: 1
query mode: simple
number of clients: 38
number of threads: 1
duration: 60 s
number of transactions actually processed: 1907569
latency average = 1.195 ms
tps = 31791.686004 (including connections establishing)
tps = 31800.762826 (excluding connections establishing)
statement latencies in milliseconds:

Document of size 1735 bytes

pgbench -n -c 39 -r -T 60 -h 10.0.0.7 -U jsondev -f writer_1735.sql json_database
Password:
transaction type: writer_1735.sql
scaling factor: 1
query mode: simple
number of clients: 39
number of threads: 1
duration: 60 s
number of transactions actually processed: 1704598
latency average = 1.373 ms
tps = 28409.254110 (including connections establishing)
tps = 28417.272609 (excluding connections establishing)
statement latencies in milliseconds:
1.310 INSERT INTO json_schema.json_document (document_identifier, time_inserted,

Document of size 4503 bytes

pgbench -n -c 39 -r -T 60 -h 10.0.0.7 -U jsondev -f writer_4503.sql json_database
Password:
transaction type: writer_4503.sql
scaling factor: 1
query mode: simple
number of clients: 39
number of threads: 1
duration: 60 s
number of transactions actually processed: 1689114
latency average = 1.385 ms
tps = 28151.091217 (including connections establishing)
tps = 28159.040388 (excluding connections establishing)
statement latencies in milliseconds:
1.302 INSERT INTO json_schema.json_document (document_identifier, time_inserted,

Execution — Summary

Summary

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

No responses yet

Write a response