Replies: 1 comment 2 replies
-
I assume this is not a one time thing, i.e. basically you'd like to have a mirror of the production instance. I've been asked to set this up for the internal production instance I maintain, it's just there was no time to pursue this, however in general it should work. There are multiple ways how to approach this. I assume the machines have separate storage. The first way would be to perform initial transfer of the production data (source + data root and fresh configuration retrieved from the webapp) to the staging machine and let it run mirroring+indexing periodically. In this setup, there would be two independent machines, so any change done to the production would have to be also applied to the staging. The downside is that each problem with indexing/mirroring would have to be solved twice. The second way is to perform the synchronization periodically (can use file system snapshots and incremental transfers, if your file system supports that) and then set the configuration to the web app via API call. This should trigger index reader refresh and suggester rebuild. In this setup the staging will not run mirroring+indexer at all. |
Beta Was this translation helpful? Give feedback.
-
I have a prod application running with huge indexer size on URL example-prod.com. Now I wish to setup a staging instance using same data. Any tips on how I can connect to same indexer from different web URL example-uat.com?
Beta Was this translation helpful? Give feedback.
All reactions