large scale nosql db migration under fire - ido barkan - devopsdays tel aviv 2017

19
Large Scale NoSQL DB Migration - Under Fire - Ido Barkan - Proprietary & Confidential -

Upload: devopsdays-tel-aviv

Post on 22-Jan-2018

98 views

Category:

Technology


1 download

TRANSCRIPT

Page 1: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Large Scale NoSQL DB Migration

- Under Fire -

Ido Barkan

- Proprietary & Confidential -

Page 2: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Agenda

● What is Appsflyer?● Motivation and limitations● War plan● What have we learned?

Page 3: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

What is Appsflyer?~25B events per day

Page 4: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Installs DB- Zoom in

app installs writer

2K write IOPS

app events enrichments 180k read

IOPS

Page 5: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

We need to replace CouchBase

● Scale out is out of control(45 r3.4xl instances)

● XDCR can’t keep up● Daily backups take more than a day● Paid support is not good enough

chosen solution: Aerospike

Page 6: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Rules of the game- starting point

● # of records: ~ 2,000,000,000 (repl. factor 3)

● Read intensive: 180K read + 2K write IOPS

● # of machines: 45 r3.4xlarge● Cost: ~ 30,000 $ per month● Time frame: a few months.

Mission critical

Page 7: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Why is data migration harderthan in a relational DB?

Relational DB NoSql DB

Data types conventional blob, JSON, specialized bins

Vendors a few 100+

Query Language

SQL N1QL, SQL, JavaScript, HTTP/REST-- creating views/ MapReduce style

Schema Yes Maybe

Migration tools

Yes DIY

Page 8: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Rules of the game

No DowntimeNo data loss

Page 9: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

War plan- easy part

● Write new installs/updates to BOTH● Continue reading from the OLD DBApplication

Page 10: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Breathing (testing) time

test test test● Sizing RAM/Disk● Expected load● Metrics● Alerting● Logs● Backups

Page 11: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Easy part (Cont.)

● Write new installs/updates to NEW DB● Read from BOTH DBs

● A fraction of records (not VIP)

● Do NOT delete yet!● Have metrics on

misses

Page 12: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Breathing timeTest Test Test● Sizing (again)● Expected load (with reads)● Metrics (again)

Page 13: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Is that it?

If your data is short lived- you are mostly done.

Otherwise...

Page 14: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

`Manual` partMigrating the long tail

Dumperview (query)dump keys/records

Kafka as a buffer

Loader-> write(do not overwrite)

values

Page 15: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Detour: DB views

function (doc, meta) {emit(meta.expiration, doc.id);}

key (sorting) value

Map function (JS)

● Record itself is NOT a part of the view

Page 16: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

`Manual` partMigrating the long tail

Dumperview (query)dump keys/records

Kafka as a buffer

Loader-> write(do not overwrite)

values

Page 17: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

New Cluster

● # of records: ~ 2,000,000,000 ● 2AZ- repl. factor 2 in each one● IOPS, same and growing● # of machines: 2 x 5 i3.4xlarge● Cost: ~ 10,000 $ per month (⅓)

Page 18: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

What have we learned?

1. Plan, Plan, Plan.2. Go easy: test a sample before you start

(1 app / API / Customer).3. Breath (read: test) between stages.4. Do NOT delete until you have to.5. slower -> safer (-> $$$).

Page 19: Large Scale NoSql DB Migration Under Fire - Ido Barkan - DevOpsDays Tel Aviv 2017

Thank you!

[email protected]