+ All Categories
Home > Documents > Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü [email protected]...

Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü [email protected]...

Date post: 27-Jul-2020
Category:
Upload: others
View: 13 times
Download: 0 times
Share this document with a friend
19
Hacking PostgreSQL with Eclipse Metin Döşlü [email protected] PGCONF.EU 2017 1
Transcript
Page 1: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Hacking PostgreSQL with Eclipse

Metin Döşlü[email protected]

PGCONF.EU 2017

1

Page 2: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Motivation

2

Postgres can’t do everything

You can extend it

Eclipse makes it easy

Page 3: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Extensions

3

postGIS - Spatial and Geographic objects

pg_cron - Run periodic jobs

hll - HyperLogLog (approximate distinct count)

citus - Scale across multiple machines

Page 4: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Personal Story

4

Distributed PostgreSQL PostgreSQL Extension

Page 5: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Why Eclipse?

5

Start Fast

Easy Navigation

Rich Features

Page 6: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Demo Outline

6

PostgreSQL Inside Eclipse

Walking Around

Deep Dive

Page 7: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Demo Outline

7

PostgreSQL Inside Eclipse

Walking Around

Deep Dive

Page 8: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Build PostgreSQL

8

./configure CFLAGS=-"O0 -g"

make -s -j4

sudo make install

Page 9: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Import PostgreSQL into Eclipse

9

File -> Import

C/C++ -> Existing Code as Makefile Project

Turn off scalability mode (optional)

Page 10: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Demo Outline

10

PostgreSQL Inside Eclipse

Walking Around

Deep Dive

Page 11: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Attach GDB

11

select pg_backend_pid();

Debug As -> Debug Configurations

C/C++ Attach to Application

Page 12: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

PostgreSQL Data Structures

12

Variables window

p pprint(parse)

printf "%s", pretty_format_node_dump(nodeToString(parse))Preferences -> C/C++ -> Debug -> GDB -> Check “Show the GDB traces...”

Page 13: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Errors

13

errstart() in elog.c

if (elevel >= ERROR)

Page 14: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Crashes

14

pg_crasher

Page 15: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Demo Outline

15

PostgreSQL Inside Eclipse

Walking Around

Deep Dive

Page 16: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Gatekeeper

16

watch

Page 17: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Demo Outline

17

PostgreSQL Inside Eclipse

Walking Around

Deep Dive

Page 18: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Summary

18

Postgres can’t do everything

You can extend

Eclipse makes it easy

Page 19: Hacking PostgreSQL with · Hacking PostgreSQL with Eclipse Metin Döşlü metin@citusdata.com PGCONF.EU 2017 1

Hacking PostgreSQL with Eclipse

Metin Döşlü[email protected]

PGCONF.EU 2017

19


Recommended