Activity Feed
- Karma Re: Large-scale index deduplication help for gcusello. 05-03-2023 06:47 AM
- Karma Re: Large-scale index deduplication help for PickleRick. 05-03-2023 06:47 AM
- Posted Re: Large-scale index deduplication help on Splunk Search. 05-02-2023 01:55 PM
- Posted Large-scale index deduplication-What are the best practices for managing duplicates over a large index? on Splunk Search. 05-02-2023 01:54 PM
- Posted Re: How to divide a field by its average? on Splunk Search. 10-26-2022 03:10 PM
- Karma Re: How to divide a field by its average? for johnhuang. 10-26-2022 03:10 PM
- Posted How to divide a field by its average? on Splunk Search. 10-26-2022 01:10 PM
Topics I've Started
Subject | Karma | Author | Latest Post |
---|---|---|---|
0 | |||
0 |
05-02-2023
01:55 PM
We are looking for recommendations on a path forward to deal with duplicate events.
... View more
05-02-2023
01:54 PM
My team has duplicate events in our index (~600 GB). We have fixed duplicate source and need to remove the existing duplicates from the index.
What are the best practices for managing duplicates over a large index? So far we've explored two options - Create a summary index with duplicates removed - its a large compute load to run this deduplication job and populate a new index all at once. How can we do this efficiently and prevent our job from auto-cancelling? - We would like to be able to update the new index from the one containing duplicates on ingest. Are there best practices for doing this reliably? - Delete duplicate events from current index - this is less attractive, due to permanent deletion
... View more
10-26-2022
03:10 PM
Thank you for your response! I couldn't get this method to work as it was setting the _time field to the default 1970-01-01
... View more
10-26-2022
01:10 PM
I have a time chart of count by field
| timechart count by field_name limit=0
I would like to divide each value in the statistics table by the mean of that field.
Current Output:
Time
A
B
1
1
4
2
2
5
3
3
6
Desired Output:
Time
A
B
1
0.5
0.8
2
1
1
3
1.5
1.2
I can use a `foreach` to perform an operation on every column but I am having trouble configuring a subquery within that to calculate the mean and divide by it.
... View more