You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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.
After I installed
/~https://github.com/apache/incubator-openwhisk-catalog
and trywsk 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 text was updated successfully, but these errors were encountered: