<div class="gmail_quote">I&#39;ve done and am doing this. For questions 1 and 2 I don&#39;t really have an answer because bandwidth wasn&#39;t an issue for me / the people I set this up for.<br><br>In the past I found that if Cyrus is restarted on the replica, the sync_client on the master server fails. I also saw instances of sync_client failing on the master if the replica isn&#39;t available. The lower levels pertaining to why I don&#39;t know (or remember), but I can recreate this and post the exact error that is logged if any one on this list is interested.<br>

<br>Here&#39;s a bash script executed by the cron daemon on a pair of Cyrus servers every minute for watch-dogging sync_client.<br><br>#!/bin/bash<br><br>if [ &quot;$(pgrep cyrus-master)&quot; ] ; then<br>   if [ &quot;$(cat /etc/cyrus-role)&quot; == &quot;master&quot; ] ; then<br>

      if [ ! &quot;$(pgrep sync_client)&quot; ] ; then<br>         su cyrus -c &quot;/usr/lib/cyrus-imapd/sync_client -r&quot; ;<br>      fi<br>   fi<br>fi<br><br>if [ &quot;$(cat /etc/cyrus-role)&quot; == &quot;replica&quot; ] ; then<br>

   if [ &quot;$(pgrep sync_client)&quot; ] ; then<br>      kill $(pgrep sync_client)<br>   fi<br>fi<br><br>The script checks for the conditions that the server is set as the master (which it is set to if Cyrus is started) and that the sync_client is not running. If so it runs the sync_client again.<br>

<br>The script does not check if the Cyrus daemon is running because it was written taking into consideration a scenario where replication hasn&#39;t occurred for some arbitrary amount of time while the Cyrus daemon was running but replication once again becomes possible while the Cyrus daemon local to the master is not running.<br>

<br>You can also use this script to enable bi-directional IMAP replication. Why you would want to do such a thing (with a two-server master/replica configuration) is if you have SMTP daemons running on both of your Cyrus servers and want the &quot;replica&quot;/&quot;passive&quot; (IMAP-side at least) server to be able to push mail accepted by it from the outside world onto the master Cyrus server. This is probably better (and faster for the user) than simply dropping packets from outside SMTP servers (which is what I&#39;ve seen on two-server master/replica Cyrus servers out there, fencing was done through setting ports as &quot;filtered&#39;). Because a user&#39;s IMAP activity on the master server shouldn&#39;t conflict with incoming mail, in theory bi-directional Cyrus replication for incoming messages from the SMTP daemon is not only optimal but also possible without creating a split-brain scenario. I plan to test this myself when I have time.<br>

<br>This was all done with Cyrus 2.3.7 on CentOS 5.3 and 5.4 in each case. Your mileage may vary and if any of the behavior described above is expected to be different with new versions of Cyrus please share.<br><font color="#888888"><br>
- Jon</font><div><div></div><div class="h5"><br>
<br><div class="gmail_quote">On Wed, Dec 9, 2009 at 8:08 AM, Robert Mueller (web) <span dir="ltr">&lt;<a href="mailto:robm@fastmail.fm" target="_blank">robm@fastmail.fm</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

I just wanted to check if any people have any experience or reports<br>
about doing cyrus replication over a WAN?<br>
<br>
A few potential issues spring to mind:<br>
<br>
1. I know the replication protocol is pretty &quot;chatty&quot;, so does the<br>
higher latency over a WAN (ms vs us) cause it to get behind more<br>
regularly?<br>
2. The protocol uses more bandwidth than really needed, has that caused<br>
unexpected bandwidth usage problems?<br>
3. A WAN isn&#39;t nearly as reliable as a local connection. If you&#39;re over<br>
a VPN, and the connection goes down for a minute and then comes back,<br>
does that confuse the sync_client, or does it tend to just continue and<br>
work?<br>
<br>
Any insights would be appreciated.<br>
<br>
Rob<br>
Rob Mueller<br>
<a href="mailto:robm@fastmail.fm" target="_blank">robm@fastmail.fm</a><br>
<br>
----<br>
Cyrus Home Page: <a href="http://cyrusimap.web.cmu.edu/" target="_blank">http://cyrusimap.web.cmu.edu/</a><br>
Cyrus Wiki/FAQ: <a href="http://cyrusimap.web.cmu.edu/twiki" target="_blank">http://cyrusimap.web.cmu.edu/twiki</a><br>
List Archives/Info: <a href="http://asg.web.cmu.edu/cyrus/mailing-list.html" target="_blank">http://asg.web.cmu.edu/cyrus/mailing-list.html</a><br>
</blockquote></div><br>
</div></div></div><br>