this post was submitted on 24 May 2024
387 points (98.0% liked)

Programmer Humor

31968 readers
446 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 17 points 3 months ago (2 children)

What the fuck is center even talking about? Is that shit a thing people do?

[โ€“] [email protected] 13 points 3 months ago* (last edited 3 months ago) (1 children)

Yeah, ofc it is.

I'm working in a system that generates 750 MILLION non-debug log messages a day (And this isn't even as many as others).

Good luck grepping that, or making heads or tails of what you need.

We put a lot of work into making the process of digging through logs easier. The absolute minimum we can do it dump it into elastic so it's available in Kibana.

Similarly, in a K8 env you need to get logs off of your pods, ASAP, because pods are transient, disposable. There is no guarantee that a particular pod will live long enough to have introspectable logs on that particular instance (of course there is some log aggregation available in your environment that you could grep. But they actually usefulness of it is questionable especially if you don't know what you need to grep for).

These are dozens, hundreds, more problems that crop up as you scale the number of systems and people working on those systems.

[โ€“] [email protected] 3 points 3 months ago

This write-up can be the next KRAZAM skit

[โ€“] [email protected] 12 points 3 months ago (1 children)

A good chunk of it is relating to the elastic search stack, yeah it's a thing people do.

[โ€“] [email protected] 4 points 3 months ago

My life got so much better after we abandoned elasticsearch at work