Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
donuts238484y@SortOfTested I'm sort of confused, not sure how translog plays into this.
I have ELK setup to record a REST app's requests via filebeats and logstash.
Each day LS will store ask the data it gets into a new index yyyy.mm.dd.
I see ELASTIC using more RAM each day.
But it also seems to take up the equivalent disk space though so I'm thinking it stores a copy on disk too?
Can I unload the one in RAM but keep the data? And reload it when needed? -
donuts238484yI see in the link it says in a crash data would be lost but when I restart ELK, the data is still there so I'm think it's loading from disk when it starts. But if the a way to tell ELASTIC which ones to load/ not load?
Related Rants
-
PsiB0T11Hoorah! My code finally works! Now gotta remove those 1000 print statements I used to identify the bugs 😥
-
Trithon5My code broke for no reason. I added a log statement to see why. *tests code* It worked.... What the 何?!
-
practiseSafeHex14It fucking staggers me how many backend/devops-y people don't understand what a client side "request timeout" ...
I want to keep 1 year of daily indexes but for the ones older than 30 days, unloaded from memory. But accessible when needed.
So like say there's a performance issue today and I want to compare all the activity against 2 months ago. I can open the old index and search it.
Can you do that, does closing remove it from memory? Otherwise how would you do that?
question
elasticsearch
logging