1. Splunk Enterprise Documentation, Managing Indexers and Clusters of Indexers, "How indexing works": This document outlines the data pipeline stages. It describes the parsing stage as the point where Splunk "examines, analyzes, and transforms the data," which includes applying regex transformations defined in transforms.conf. A slowdown in this specific stage directly impacts its preceding queue. (Reference: Splunk Enterprise Documentation, Managing Indexers and Clusters of Indexers, Version 9.x, Part of the "Get started with indexer clusters" section).
2. Splunk Enterprise Documentation, Monitoring Splunk Enterprise, "Indexing performance dashboard": The official documentation for the Monitoring Console describes the "Indexing Queues" panel. It explicitly states that a high fill percentage for the parsingQueue can indicate a performance issue with parsing, such as "a complex regular expression in a transform." This directly links inefficient regex to a full parsing queue. (Reference: Splunk Enterprise Documentation, Monitoring Splunk Enterprise, Version 9.x, "Dashboards and alerts in the Monitoring Console" -> "Indexing Performance: Instance").
3. Splunk Enterprise Documentation, limits.conf Specification File: The [thruput] stanza in the limits.conf file defines the various queues in the indexing pipeline, including parsingQueue. The documentation describes its function as the queue for the parsing processor. A bottleneck in the processor's ability to perform its tasks (like regex) will cause this specific queue to fill. (Reference: Splunk Enterprise Documentation, Admin Manual, limits.conf -> [thruput] section).