Deploy_OpenWhisk_with_Helm
Deploy_OpenWhisk_with_Helm copied to clipboard
reduce_overflow_error after openwhisk-catalog is installed
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
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.