DEV Community

Discussion on: DEV, meet Site Reliability Engineering

 
brendan_c profile image
Brendan-C • Edited

i googled ExamPro out of curiosity about what sort of stack youre running and all I can find is stuff related to OB-GYN... is that accurate?

Thread Thread
 
andrewbrown profile image
Andrew Brown πŸ‡¨πŸ‡¦ • Edited

Exampro.co. You may be mistaking us for the .co.uk or the .com

Thread Thread
 
molly profile image
Molly Struve (she/her)

Elasticsearch is one of those tools that is very easy to get started with but if you want to use it at any sort of scale you really have to understand how it works otherwise it is VERY easy to crash it. When we started using it at Kenna we had 500 million docs and were processing a few million a day and we were maxing out our 20 node cluster. By changing our data architecture and how we ran queries we were able to take that exact same cluster and store 5 billion docs in it and process 300+ million of them a day.

Thread Thread
 
kp profile image
KP

@molly_struve would love to see a detailed writeup on ElasticSearch. Do you have any resources you can point us to, for an absolute beginner on the topic?

Thread Thread
 
molly profile image
Molly Struve (she/her)

Elasticsearch has great getting started docs. I have been meaning to write a beginner post on it but for now all I have are a couple scaling posts:

Thread Thread
 
kp profile image
KP • Edited

Thanks @molly_struve ! I'm following you and will look for a beginner post, hopefully sooner rather than later! I have content from a bunch of MySQL database tables I'd like to index (very much like dev.to, actually) and am doing my best to stay away from Algolia and not have to re-invent the wheel.

I found this and this but would love something dead-simple to understand and get started with.