Updater added, improved server rate limits filter, cleaned redundant lines
This commit is contained in:
parent
7c701906f8
commit
1af249fcb4
@ -56,24 +56,30 @@ public class RateLimitProcessingFilter extends GenericFilterBean {
|
|||||||
SecurityUser user = getCurrentUser();
|
SecurityUser user = getCurrentUser();
|
||||||
if (user != null && !user.isSystemAdmin()) {
|
if (user != null && !user.isSystemAdmin()) {
|
||||||
|
|
||||||
var profile= tenantProfileCache.get(user.getTenantId()).getDefaultTenantProfileConfiguration();
|
var profileConfiguration = tenantProfileCache.get(user.getTenantId()).getDefaultTenantProfileConfiguration();
|
||||||
|
|
||||||
if(profile != null) {
|
if(profileConfiguration != null) {
|
||||||
if (StringUtils.isNotEmpty(profile.getRateLimitsTenantConfiguration())) {
|
if (user.isTenantAdmin() && StringUtils.isNotEmpty(profileConfiguration.getRateLimitsTenantConfiguration())) {
|
||||||
|
|
||||||
|
TbRateLimits rateLimits = perTenantLimits.get(user.getTenantId());
|
||||||
|
if(rateLimits == null || !rateLimits.getCurrentConfig().equals(profileConfiguration.getRateLimitsTenantConfiguration())) {
|
||||||
|
rateLimits = new TbRateLimits(profileConfiguration.getRateLimitsTenantConfiguration());
|
||||||
|
perTenantLimits.put(user.getTenantId(), rateLimits);
|
||||||
|
}
|
||||||
|
|
||||||
TbRateLimits rateLimits = perTenantLimits.computeIfAbsent(
|
|
||||||
user.getTenantId(), id -> new TbRateLimits(profile.getRateLimitsTenantConfiguration())
|
|
||||||
);
|
|
||||||
if (!rateLimits.tryConsume()) {
|
if (!rateLimits.tryConsume()) {
|
||||||
errorResponseHandler.handle(new TbRateLimitsException(EntityType.TENANT), (HttpServletResponse) response);
|
errorResponseHandler.handle(new TbRateLimitsException(EntityType.TENANT), (HttpServletResponse) response);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (StringUtils.isNotEmpty(profile.getRateLimitsCustomerConfiguration())) {
|
if (user.isCustomerUser() && StringUtils.isNotEmpty(profileConfiguration.getRateLimitsCustomerConfiguration())) {
|
||||||
|
|
||||||
|
TbRateLimits rateLimits = perCustomerLimits.get(user.getCustomerId());
|
||||||
|
if(rateLimits == null || !rateLimits.getCurrentConfig().equals(profileConfiguration.getRateLimitsCustomerConfiguration())) {
|
||||||
|
rateLimits = new TbRateLimits(profileConfiguration.getRateLimitsCustomerConfiguration());
|
||||||
|
perCustomerLimits.put(user.getCustomerId(), rateLimits);
|
||||||
|
}
|
||||||
|
|
||||||
TbRateLimits rateLimits = perCustomerLimits.computeIfAbsent(
|
|
||||||
user.getCustomerId(), id -> new TbRateLimits(profile.getRateLimitsCustomerConfiguration())
|
|
||||||
);
|
|
||||||
if (!rateLimits.tryConsume()) {
|
if (!rateLimits.tryConsume()) {
|
||||||
errorResponseHandler.handle(new TbRateLimitsException(EntityType.CUSTOMER), (HttpServletResponse) response);
|
errorResponseHandler.handle(new TbRateLimitsException(EntityType.CUSTOMER), (HttpServletResponse) response);
|
||||||
return;
|
return;
|
||||||
|
|||||||
@ -203,6 +203,8 @@ public class ThingsboardInstallService {
|
|||||||
log.info("Updating system data...");
|
log.info("Updating system data...");
|
||||||
systemDataLoaderService.updateSystemWidgets();
|
systemDataLoaderService.updateSystemWidgets();
|
||||||
break;
|
break;
|
||||||
|
case "3.3.0":
|
||||||
|
dataUpdateService.updateData("3.3.0");
|
||||||
default:
|
default:
|
||||||
throw new RuntimeException("Unable to upgrade ThingsBoard, unsupported fromVersion: " + upgradeFromVersion);
|
throw new RuntimeException("Unable to upgrade ThingsBoard, unsupported fromVersion: " + upgradeFromVersion);
|
||||||
|
|
||||||
|
|||||||
@ -23,6 +23,7 @@ import lombok.extern.slf4j.Slf4j;
|
|||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.context.annotation.Profile;
|
import org.springframework.context.annotation.Profile;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.thingsboard.common.util.JacksonUtil;
|
||||||
import org.thingsboard.rule.engine.profile.TbDeviceProfileNode;
|
import org.thingsboard.rule.engine.profile.TbDeviceProfileNode;
|
||||||
import org.thingsboard.rule.engine.profile.TbDeviceProfileNodeConfiguration;
|
import org.thingsboard.rule.engine.profile.TbDeviceProfileNodeConfiguration;
|
||||||
import org.thingsboard.server.common.data.EntityView;
|
import org.thingsboard.server.common.data.EntityView;
|
||||||
@ -48,7 +49,6 @@ import org.thingsboard.server.dao.entityview.EntityViewService;
|
|||||||
import org.thingsboard.server.dao.rule.RuleChainService;
|
import org.thingsboard.server.dao.rule.RuleChainService;
|
||||||
import org.thingsboard.server.dao.tenant.TenantService;
|
import org.thingsboard.server.dao.tenant.TenantService;
|
||||||
import org.thingsboard.server.dao.timeseries.TimeseriesService;
|
import org.thingsboard.server.dao.timeseries.TimeseriesService;
|
||||||
import org.thingsboard.common.util.JacksonUtil;
|
|
||||||
import org.thingsboard.server.service.install.InstallScripts;
|
import org.thingsboard.server.service.install.InstallScripts;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@ -88,6 +88,9 @@ public class DefaultDataUpdateService implements DataUpdateService {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private AlarmDao alarmDao;
|
private AlarmDao alarmDao;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private RateLimitsUpdater rateLimitsUpdater;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateData(String fromVersion) throws Exception {
|
public void updateData(String fromVersion) throws Exception {
|
||||||
switch (fromVersion) {
|
switch (fromVersion) {
|
||||||
@ -108,6 +111,8 @@ public class DefaultDataUpdateService implements DataUpdateService {
|
|||||||
tenantsDefaultEdgeRuleChainUpdater.updateEntities(null);
|
tenantsDefaultEdgeRuleChainUpdater.updateEntities(null);
|
||||||
tenantsAlarmsCustomerUpdater.updateEntities(null);
|
tenantsAlarmsCustomerUpdater.updateEntities(null);
|
||||||
break;
|
break;
|
||||||
|
case "3.3.0":
|
||||||
|
rateLimitsUpdater.updateEntities(null);
|
||||||
default:
|
default:
|
||||||
throw new RuntimeException("Unable to update data, unsupported fromVersion: " + fromVersion);
|
throw new RuntimeException("Unable to update data, unsupported fromVersion: " + fromVersion);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,115 @@
|
|||||||
|
/**
|
||||||
|
* Copyright © 2016-2021 The Thingsboard Authors
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package org.thingsboard.server.service.install.update;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
import org.thingsboard.server.common.data.StringUtils;
|
||||||
|
import org.thingsboard.server.common.data.TenantProfile;
|
||||||
|
import org.thingsboard.server.common.data.page.PageData;
|
||||||
|
import org.thingsboard.server.common.data.page.PageLink;
|
||||||
|
import org.thingsboard.server.dao.tenant.TenantProfileService;
|
||||||
|
|
||||||
|
@Component
|
||||||
|
class RateLimitsUpdater extends PaginatedUpdater<String, TenantProfile> {
|
||||||
|
@Value("${server.rest.limits.tenant.enabled}")
|
||||||
|
boolean tenantServerRateLimitsEnabled;
|
||||||
|
@Value("${server.rest.limits.customer.enabled}")
|
||||||
|
boolean customerServerRateLimitsEnabled;
|
||||||
|
@Value("${server.rest.limits.tenant.configuration}")
|
||||||
|
String tenantServerRateLimitsConfiguration;
|
||||||
|
@Value("${server.rest.limits.customer.configuration}")
|
||||||
|
String customerServerRateLimitsConfiguration;
|
||||||
|
|
||||||
|
@Value("${server.ws.limits.max_sessions_per_tenant}")
|
||||||
|
private int wsLimitMaxSessionsPerTenant;
|
||||||
|
@Value("${server.ws.limits.max_sessions_per_customer}")
|
||||||
|
private int wsLimitMaxSessionsPerCustomer;
|
||||||
|
@Value("${server.ws.limits.max_sessions_per_regular_user}")
|
||||||
|
private int wsLimitMaxSessionsPerRegularUser;
|
||||||
|
@Value("${server.ws.limits.max_sessions_per_public_user}")
|
||||||
|
private int wsLimitMaxSessionsPerPublicUser;
|
||||||
|
@Value("${server.ws.limits.max_queue_per_ws_session}")
|
||||||
|
private int wsLimitQueuePerWsSession;
|
||||||
|
@Value("${server.ws.limits.max_subscriptions_per_tenant}")
|
||||||
|
private long wsLimitMaxSubscriptionsPerTenant;
|
||||||
|
@Value("${server.ws.limits.max_subscriptions_per_customer}")
|
||||||
|
private long wsLimitMaxSubscriptionsPerCustomer;
|
||||||
|
@Value("${server.ws.limits.max_subscriptions_per_regular_user}")
|
||||||
|
private long wsLimitMaxSubscriptionsPerRegularUser;
|
||||||
|
@Value("${server.ws.limits.max_subscriptions_per_public_user}")
|
||||||
|
private long wsLimitMaxSubscriptionsPerPublicUser;
|
||||||
|
@Value("${server.ws.limits.max_updates_per_session}")
|
||||||
|
private String wsLimitUpdatesPerSession;
|
||||||
|
|
||||||
|
@Value("${cassandra.query.tenant_rate_limits.enabled}")
|
||||||
|
private boolean cassandraLimitsIsEnabled;
|
||||||
|
@Value("${cassandra.query.tenant_rate_limits.configuration}")
|
||||||
|
private String cassandraTenantLimitsConfiguration;
|
||||||
|
@Value("${cassandra.query.tenant_rate_limits.print_tenant_names}")
|
||||||
|
private boolean printTenantNames;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private TenantProfileService tenantProfileService;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected boolean forceReportTotal() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected String getName() {
|
||||||
|
return "Rate limits updater";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected PageData<TenantProfile> findEntities(String id, PageLink pageLink) {
|
||||||
|
return tenantProfileService.findTenantProfiles(null, pageLink);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void updateEntity(TenantProfile entity) {
|
||||||
|
var profileConfiguration = entity.getDefaultTenantProfileConfiguration();
|
||||||
|
if (profileConfiguration != null) {
|
||||||
|
if (tenantServerRateLimitsEnabled && StringUtils.isNotEmpty(tenantServerRateLimitsConfiguration)) {
|
||||||
|
profileConfiguration.setRateLimitsTenantConfiguration(tenantServerRateLimitsConfiguration);
|
||||||
|
}
|
||||||
|
if (customerServerRateLimitsEnabled && StringUtils.isNotEmpty(customerServerRateLimitsConfiguration)) {
|
||||||
|
profileConfiguration.setRateLimitsCustomerConfiguration(customerServerRateLimitsConfiguration);
|
||||||
|
}
|
||||||
|
|
||||||
|
profileConfiguration.setWsLimitMaxSessionsPerTenant(wsLimitMaxSessionsPerTenant);
|
||||||
|
profileConfiguration.setWsLimitMaxSessionsPerCustomer(wsLimitMaxSessionsPerCustomer);
|
||||||
|
profileConfiguration.setWsLimitMaxSessionsPerPublicUser(wsLimitMaxSessionsPerPublicUser);
|
||||||
|
profileConfiguration.setWsLimitMaxSessionsPerRegularUser(wsLimitMaxSessionsPerRegularUser);
|
||||||
|
profileConfiguration.setWsLimitMaxSubscriptionsPerTenant(wsLimitMaxSubscriptionsPerTenant);
|
||||||
|
profileConfiguration.setWsLimitMaxSubscriptionsPerCustomer(wsLimitMaxSubscriptionsPerCustomer);
|
||||||
|
profileConfiguration.setWsLimitMaxSubscriptionsPerPublicUser(wsLimitMaxSubscriptionsPerPublicUser);
|
||||||
|
profileConfiguration.setWsLimitMaxSubscriptionsPerRegularUser(wsLimitMaxSubscriptionsPerRegularUser);
|
||||||
|
profileConfiguration.setWsLimitQueuePerWsSession(wsLimitQueuePerWsSession);
|
||||||
|
|
||||||
|
if (StringUtils.isNotEmpty(wsLimitUpdatesPerSession)) {
|
||||||
|
profileConfiguration.setWsLimitUpdatesPerSession(wsLimitUpdatesPerSession);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cassandraLimitsIsEnabled) {
|
||||||
|
profileConfiguration.setCassandraTenantLimitsConfiguration(cassandraTenantLimitsConfiguration);
|
||||||
|
profileConfiguration.setPrintTenantNames(printTenantNames);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -19,6 +19,7 @@ import io.github.bucket4j.Bandwidth;
|
|||||||
import io.github.bucket4j.Bucket4j;
|
import io.github.bucket4j.Bucket4j;
|
||||||
import io.github.bucket4j.local.LocalBucket;
|
import io.github.bucket4j.local.LocalBucket;
|
||||||
import io.github.bucket4j.local.LocalBucketBuilder;
|
import io.github.bucket4j.local.LocalBucketBuilder;
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
import java.time.Duration;
|
import java.time.Duration;
|
||||||
|
|
||||||
@ -27,9 +28,12 @@ import java.time.Duration;
|
|||||||
*/
|
*/
|
||||||
public class TbRateLimits {
|
public class TbRateLimits {
|
||||||
private final LocalBucket bucket;
|
private final LocalBucket bucket;
|
||||||
|
@Getter
|
||||||
|
private final String currentConfig;
|
||||||
|
|
||||||
public TbRateLimits(String limitsConfiguration) {
|
public TbRateLimits(String limitsConfiguration) {
|
||||||
LocalBucketBuilder builder = Bucket4j.builder();
|
LocalBucketBuilder builder = Bucket4j.builder();
|
||||||
|
currentConfig = limitsConfiguration;
|
||||||
boolean initialized = false;
|
boolean initialized = false;
|
||||||
for (String limitSrc : limitsConfiguration.split(",")) {
|
for (String limitSrc : limitsConfiguration.split(",")) {
|
||||||
long capacity = Long.parseLong(limitSrc.split(":")[0]);
|
long capacity = Long.parseLong(limitSrc.split(":")[0]);
|
||||||
|
|||||||
@ -16,19 +16,6 @@
|
|||||||
|
|
||||||
-->
|
-->
|
||||||
<form [formGroup]="tenantProfileDataFormGroup" style="padding-bottom: 16px;">
|
<form [formGroup]="tenantProfileDataFormGroup" style="padding-bottom: 16px;">
|
||||||
<!-- <mat-expansion-panel [expanded]="true">-->
|
|
||||||
<!-- <mat-expansion-panel-header>-->
|
|
||||||
<!-- <mat-panel-title>-->
|
|
||||||
<!-- <div translate>tenant-profile.profile-configuration</div>-->
|
|
||||||
<!-- </mat-panel-title>-->
|
|
||||||
<!-- </mat-expansion-panel-header>-->
|
|
||||||
<!-- <ng-template matExpansionPanelContent>-->
|
|
||||||
<!-- <tb-tenant-profile-configuration-->
|
|
||||||
<!-- formControlName="configuration"-->
|
|
||||||
<!-- required>-->
|
|
||||||
<!-- </tb-tenant-profile-configuration>-->
|
|
||||||
<!-- </ng-template>-->
|
|
||||||
<!-- </mat-expansion-panel>-->
|
|
||||||
<tb-tenant-profile-configuration
|
<tb-tenant-profile-configuration
|
||||||
formControlName="configuration"
|
formControlName="configuration"
|
||||||
required>
|
required>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user