Deploy_OpenWhisk_with_Helm icon indicating copy to clipboard operation
Deploy_OpenWhisk_with_Helm copied to clipboard

reduce_overflow_error after openwhisk-catalog is installed

Open daisy-ycguo opened this issue 7 years ago • 1 comments

After I installed https://github.com/apache/incubator-openwhisk-catalog and try wsk package list /whisk.system, I will get error. And I looked into the log of couchdb, it reports: reduce_overflow_error: Reduce output must shrink more rapidly

daisy-ycguo avatar Sep 28 '17 08:09 daisy-ycguo

The problem is because that reduce_limit is not set to false with command curl -X PUT http://$COUCHDB_USER:$COUCHDB_PASSWORD@$DB_HOST:$DB_PORT/_node/couchdb@couchdb0/_config/query_server_config/reduce_limit -d '"false"'. It will report an error {"error":"not_found","reason":"no such node: couchdb@couchdb0"}.

After I change couchdb@couchdb0 to nonode@nohost, i.e. curl -X PUT http://$COUCHDB_USER:$COUCHDB_PASSWORD@$DB_HOST:$DB_PORT/_node/nonode@nohost/_config/query_server_config/reduce_limit -d '"false"', reduce_limit is set to false successfully. And then, this issue is gone. /whisk.system can be listed.

daisy-ycguo avatar Sep 29 '17 10:09 daisy-ycguo