Setting Memory Quota
- reference
Memory quota is set with the POST /pools/default
HTTP method and URI.
HTTP method and URI
The memory quota configures how much RAM to be allocated to Couchbase Server per service, for every node in the cluster.
POST /pools/default
Memory quota | Description |
---|---|
Method |
|
Request Data |
Payload with memory quota setting |
Response Data |
Empty |
Authentication Required |
yes |
Syntax
Raw HTTP request syntax:
POST /pools/default HTTP/1.1 Host: 10.143.192.102:8091 Authorization: Basic QWRtaW5pc3RyYXRvcjpwYXNzd29yZA== Content-Type: application/x-www-form-urlencoded Content-Length: 100 Content-Type: application/x-www-form-urlencoded
Curl request syntax:
curl -X POST -u [admin]:[password] -d memoryQuota=[quotaNumber] -d indexMemoryQuota=[quotaNumber] -d ftsMemoryQuota=[quotaNumber] -d cbasMemoryQuota=[quotaNumber] -d eventingMemoryQuota=[quotaNumber] http://localhost:port/pools/default