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
sh("curl -sS -uAdministrator:password http://${CLUSTER.firstIP()}:8093/query/service -d'statement=CREATE PRIMARY INDEX ON default USING GSI' -d 'timeout=300s'")
243
+
sh("curl -sS -u Administrator:password http://${CLUSTER.firstIP()}:8093/query/service -d 'statement=CREATE PRIMARY INDEX ON default USING GSI' -d 'timeout=300s'")
244
+
if (CLUSTER.major() >=8|| (CLUSTER.major() ==7&&CLUSTER.minor() >=6)) {
245
+
// FTS changed their throttling behaviour when creating indexes to better respect its RAM quota. It now needs more memory to create search indexes in time.
246
+
// See MB-64303
247
+
shWithEcho("curl -v -X POST -u Administrator:password -d 'ftsMemoryQuota=2048' http://${CLUSTER.firstIP()}:8091/pools/default")
0 commit comments