From ab802aa229871578570bed72eac074b3ec302343 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Tue, 15 Apr 2025 08:44:41 -0600 Subject: [PATCH] hotfix: updated influxdb3 table limits --- layouts/shortcodes/influxdb3/limit.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/shortcodes/influxdb3/limit.html b/layouts/shortcodes/influxdb3/limit.html index ecbcd35c2..fe7e36b76 100644 --- a/layouts/shortcodes/influxdb3/limit.html +++ b/layouts/shortcodes/influxdb3/limit.html @@ -3,6 +3,6 @@ {{- $limit := .Get 0 | default "database" -}} {{- $modifier := .Get 1 | default 0 -}} {{- $coreLimits := dict "database" 5 "table" 2000 "column" 500 -}} -{{- $enterpriseLimits := dict "database" 100 "table" 4000 "column" 500 -}} +{{- $enterpriseLimits := dict "database" 100 "table" 10000 "column" 500 -}} {{- $productLimits := cond (eq $product "core") $coreLimits $enterpriseLimits -}} {{ add (index $productLimits $limit) $modifier }} \ No newline at end of file