[
https://issues.apache.org/jira/browse/COUCHDB-823?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12887243#action_12887243
]
can xiang commented on COUCHDB-823:
-----------------------------------
Hi, Jan
Thanks for your attention on the email issue. I don't know the content-type, I
use gmail web mail. I kept getting this: The error that the other server
returned was: 552 552 spam score (5.8) exceeded threshold (state 18).
I tried at least two other gmail account in three different times with and
without a proxy in US. You know the pain.
> _active_tasks dies often and doesn't accurately report replication status.
> --------------------------------------------------------------------------
>
> Key: COUCHDB-823
> URL: https://issues.apache.org/jira/browse/COUCHDB-823
> Project: CouchDB
> Issue Type: Bug
> Components: Replication
> Affects Versions: 0.11
> Environment: 1. pull replication
> 2. password protected nginx SSL reverse-proxied source database
> 3. A replication restart watchdog have been put in use in case of replication
> die
> 4. we use centos-5.4 and couchdb-0.11-dist built from source
> 5. inter-datacenter connection is slow and have great latency like 80ms~150ms
> in rush hour.
> PS: the nginx configuration:
> server {
> listen 5984;
> server_name xxx.xxx.xxx.xxx;
> client_max_body_size 10M;
> ssl on;
> ssl_certificate /usr/local/nginx/conf/cert/
> cert.pem;
> ssl_certificate_key /usr/local/nginx/conf/cert/cert.key;
> ssl_protocols SSLv3;
> ssl_session_cache shared:SSL:1m;
> location / {
> auth_basic "Restricted";
> auth_basic_user_file /usr/local/nginx/conf/htpasswd;
> proxy_pass http://couchdb;
> proxy_redirect off;
> proxy_set_header Host $host;
> proxy_set_header X-Real-IP $remote_addr;
> proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
> proxy_set_header Authorization "";
> proxy_set_header X-Forwarded-Ssl on;
> }
> location ~ ^/(.*)/_changes {
> auth_basic "Restricted";
> auth_basic_user_file /usr/local/nginx/conf/htpasswd;
> proxy_pass http://couchdb;
> proxy_redirect off;
> proxy_buffering off;
> proxy_set_header Host $host;
> proxy_set_header X-Real-IP $remote_addr;
> proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
> proxy_set_header Authorization "";
> proxy_set_header X-Forwarded-Ssl on;
> }
> }
> Reporter: can xiang
>
> 1. continuous replication died often as _active_tasks shows
> 2. _active_tasks often shows "starting..." instead of "W ..." or "MR...". I
> have 8 databases to replicate and I often see only two replication marked as
> "W.." or "MR...", others marked as "starting..."
> when the task marked as "starting...", I monitored actual replication
> happened to the relevant database.
> I don't know if it's a bug or I have any problem with my configurations. I
> tried to send a email to the user list several times, but they all got
> rejected as a spam(I tried with other email too).
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.