You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Dave Cottlehuber (Commented) (JIRA)" <ji...@apache.org> on 2011/12/03 01:17:40 UTC

[jira] [Commented] (COUCHDB-1315) Remote pull replication with filter and params fails with reason: invalid UTF-8 JSON

    [ https://issues.apache.org/jira/browse/COUCHDB-1315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13161951#comment-13161951 ] 

Dave Cottlehuber commented on COUCHDB-1315:
-------------------------------------------

Hi Martin,

If you have admin party on your local laptop, then you'll get this error message; I don't believe its a bug however. Please refer to "8. The user_ctx property and delegations" in https://gist.github.com/832610

Otherwise I'm unable to replicate this on Apache CouchDB 1.1.1 using filter query parameters and admins set up both locally & remotely.

{
    "_id": "_design/rf",
    "filters": {
        "yes": "function(doc, req) { return true; }",
        "maybe": "function(doc, req) { if (req.query.copy && req.query.copy==true) {return true;} else {return false;}}",
        "no": "function(doc, req) { return false; }",
        "log": "function(doc, req) { log(req); return false; }"
    }
}


// curly stuff
alias curly='curl --silent -H "Content-Type: application/json" '
source=http://admin:passwd@192.168.2.103:5984
target=http://admin:passwd@192.168.2.103:5985

curly -X POST $source/_replicate -d '{"source": "http://admin:passwd@192.168.2.103:5985/testy", "target": "testy", "filter": "rf/maybe", "query_params": {"copy": false}}' | json_xs
curly -X POST $source/_replicate -d '{"source": "http://admin:passwd@192.168.2.103:5985/testy", "target": "testy", "filter": "rf/maybe", "query_params": {"copy": true}}' | json_xs

@fdmanana - would you mind a quick check please & if you agree, close as "Won't Fix".

                
> Remote pull replication with filter and params fails with reason: invalid UTF-8 JSON
> ------------------------------------------------------------------------------------
>
>                 Key: COUCHDB-1315
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-1315
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Replication
>    Affects Versions: 1.1
>         Environment: - Windows 7 x64 on target machine
> - Windows 7 x32 on source machine
>            Reporter: Martin Castellanos
>              Labels: pull, replication
>
> I'm posting the following to: http://localhost:5984/_replicate
>     {"source":"http://MARTIN-LT:5984/pdlib","target":"pdlib", "filter":"replication/SINGLE_COLLECTION", "query_params": {"key":"bb579347-9bfb-4dda-84eb-622b43108872"}}
> This is the output from the remote machine log:
> [Mon, 17 Oct 2011 01:20:48 GMT] [debug] [<0.476.0>] 'GET' /pdlib/_changes?key=bb579347-9bfb-4dda-84eb-622b43108872&filter=replication/SINGLE_COLLECTION&style=all_docs&heartbeat=10000&since=0&feed=normal {1,
>                                                                                                                                                         1}
> Headers: [{'Accept',"application/json"},
>           {'Content-Length',"0"},
>           {'Host',"MARTIN-NEWPC:5984"},
>           {'User-Agent',"CouchDB/1.0.2"}]
> [Mon, 17 Oct 2011 01:20:48 GMT] [debug] [<0.476.0>] OAuth Params: [{"key","bb579347-9bfb-4dda-84eb-622b43108872"},
>                {"filter","replication/SINGLE_COLLECTION"},
>                {"style","all_docs"},
>                {"heartbeat","10000"},
>                {"since","0"},
>                {"feed","normal"}]
> [Mon, 17 Oct 2011 01:20:48 GMT] [info] [<0.476.0>] 192.168.2.3 - - 'GET' /pdlib/_changes?key=bb579347-9bfb-4dda-84eb-622b43108872&filter=replication/SINGLE_COLLECTION&style=all_docs&heartbeat=10000&since=0&feed=normal 200
> [Mon, 17 Oct 2011 01:20:48 GMT] [error] [<0.476.0>] attempted upload of invalid JSON (set log_level to debug to log it)
> [Mon, 17 Oct 2011 01:20:48 GMT] [debug] [<0.476.0>] Invalid JSON: <<"bb579347-9bfb-4dda-84eb-622b43108872">>
> [Mon, 17 Oct 2011 01:20:48 GMT] [info] [<0.476.0>] 192.168.2.3 - - 'GET' /pdlib/_changes?key=bb579347-9bfb-4dda-84eb-622b43108872&filter=replication/SINGLE_COLLECTION&style=all_docs&heartbeat=10000&since=0&feed=normal 400
> [Mon, 17 Oct 2011 01:20:48 GMT] [debug] [<0.476.0>] httpd 400 error response:
>  {"error":"bad_request","reason":"invalid UTF-8 JSON"}
> This only happens on a pull replication, if I switch source and target values it works correctly.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira