Knowledge Management

Provided solution : Tip to reduce large CSV lookups / replication issues

splunkreal
Influencer

Find large CSV lookups above 400 mb (500 mb limit) :

| rest splunk_server=* /servicesNS/-/-/data/transforms/lookups getsize=true f=size f=title f=type f=filename f=eai*|fields splunk_server filename title type size eai:appName
|where isnotnull(size)|eval KB = round(size / 1024, 2)|fields - size
| sort - KB
| search KB>400000

 

Use this to reduce CSV lookup (example) :

| inputlookup file.csv
| eval time_epoch = strftime(_time,"%s")
| where time_epoch>relative_time(now(),"-100d@d")
| outputlookup file.csv append=false

 

* If this helps, please upvote or accept solution if it solved *
Labels (1)
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

A Four-Part Event Series: Full Stack Observability For the AI Era

As AI reshapes applications, infrastructure, and the way teams operate, the traditional boundaries of ...

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Event Series: Level up your SOC: Advancing with Splunk Enterprise Security

AI has fundamentally raised the stakes for security operations, and this three-part series is your guide to ...