Я пытаюсь создать ведро на диване, используя scala.У меня есть следующие настройки:
val cluster: Cluster = CouchbaseCluster.create("127.0.0.1")
val bucketSettings: BucketSettings = new DefaultBucketSettings.Builder().`type`(BucketType.COUCHBASE).name("test").quota(100)
cluster.clusterManager("Administrator","password").insertBucket(bucketSettings)
Однако, когда я запускаю это, я получаю следующую ошибку:
com.couchbase.client.core.CouchbaseException: Could not insert bucket: {"errors":{"ramQuotaMB":"RAM quota specified is too large to be provisioned into this cluster."},"summaries":{"ramSummary":{"total":8892973056,"otherBuckets":8892973056,"nodesCount":1,"perNodeMegs":100,"thisAlloc":104857600,"thisUsed":0,"free":-104857600},"hddSummary":{"total":249678528512,"otherData":162290338027,"otherBuckets":705505,"thisUsed":0,"free":87387484980}}}
Я не уверен, как решить эту проблему?У меня нет других ведер.Спасибо!