Hi Edgar. The Splunk have some features to balance or distribute data indexing over multiples indexers and Datacenters, but Splunk dont have a way to make what you need natively. I think that you can provide this feature using software development, based on type of data ingestion that you need. If you need to create a copy of data in indexer B without a Indexer Cluster, you must to configure it on outputs.conf file in your Heavy Forwarder, [tcpout]
defaultGroup = indexerA, indexerB
[tcpout:indexerA]
server = indexerAIP:9997
[tcpout:indexerB]
server = indexerBIP:9997 With this configuration, all data sent to IndexerA, will be sent to IndexerB too.
... View more