Hello, I would like to visualize the time between a write operation to Solr and being able to do a search on the replica Solr.
I expect the waiting time to occur in the following order 1. the time from the write operation until it is committed 2. the time it takes to commit 3. replication time 4. time taken for cache warm-up Is this correct? Also, is there a way to measure each of these times? I am thinking that 3 could be used for REPLICATION./replication.fetcher.previousCycleTimeInSeconds. For 4, I am also wondering if I can use solr_metrics_core_searcher_warmup_time_seconds metrics, since the prometheus exporter has published them. Is there any way to get them for 1 and 2? The configuration is SolrCloud, with a tlog leader, 1 tlog replica, and 4~6 pull replicas. The version is 9.4.2. Thanks. Taisuke