From 9a3c4a359e6928c79259af571f7fb1b0eb372ba3 Mon Sep 17 00:00:00 2001 From: "satish.kumar1" Date: Thu, 2 Nov 2023 17:33:20 +0530 Subject: [PATCH] CE-578 Couchbase 1.30 >> bucket size control implementation >> Bucket size should be greater or equal to 100MB PR URL: https://www.github.com/delphix/couchbase-plugin/pull/64 --- schema.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/schema.json b/schema.json index cbc751d..31a253f 100644 --- a/schema.json +++ b/schema.json @@ -415,7 +415,9 @@ "bsize": { "type": "integer", "prettyName": "Bucket Size (in MB)", - "default": 0 + "description": "Greater than or equal to 100MB.", + "default": 100, + "minimum": 100 } } }