@richgalloway explained clearly in the post, that INDEXED_EXTRACTIONS=CSV makes all the fields indexed. What would be a better way to ingest CSV files and avoid the fields from being indexed?
If you dont want to index the CSV fields then you probably want to configure an EXTRACT in props.conf and exclude the INDEXED_EXTRACTIONS so it has no value.
# props.conf
[yourSourcetype]
#Update the regex as appropriate for your CSV file
EXTRACT-myCSVExtraction = (?<field1>[^,]+),(?<field2>[^,]+),(?<field3>[^,]+)🌟 Did this answer help you? If so, please consider:
Your feedback encourages the volunteers in this community to continue contributing