Browse Source
Updated CassandraBaseTimeseriesDao to do one db insert instead of 5 when setNullValuesEnabled=truepull/10149/head
committed by
GitHub
4 changed files with 252 additions and 64 deletions
@ -0,0 +1,72 @@ |
|||
/** |
|||
* Copyright © 2016-2024 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.dao.service.timeseries.nosql; |
|||
|
|||
import com.datastax.oss.driver.api.core.uuid.Uuids; |
|||
import org.junit.Test; |
|||
import org.springframework.test.context.TestPropertySource; |
|||
import org.thingsboard.server.common.data.id.DeviceId; |
|||
import org.thingsboard.server.common.data.kv.Aggregation; |
|||
import org.thingsboard.server.common.data.kv.BaseReadTsKvQuery; |
|||
import org.thingsboard.server.common.data.kv.BasicTsKvEntry; |
|||
import org.thingsboard.server.common.data.kv.DoubleDataEntry; |
|||
import org.thingsboard.server.common.data.kv.LongDataEntry; |
|||
import org.thingsboard.server.common.data.kv.TsKvEntry; |
|||
import org.thingsboard.server.dao.service.DaoNoSqlTest; |
|||
|
|||
import java.util.Collections; |
|||
import java.util.List; |
|||
import java.util.concurrent.ExecutionException; |
|||
import java.util.concurrent.TimeUnit; |
|||
import java.util.concurrent.TimeoutException; |
|||
|
|||
import static org.assertj.core.api.Assertions.assertThat; |
|||
import static org.junit.Assert.assertEquals; |
|||
import static org.junit.Assert.assertFalse; |
|||
import static org.junit.Assert.assertTrue; |
|||
|
|||
@DaoNoSqlTest |
|||
@TestPropertySource(properties = { |
|||
"cassandra.query.set_null_values_enabled=true", |
|||
}) |
|||
public class TimeseriesServiceNoSqlSetNullEnabledTest extends TimeseriesServiceNoSqlTest { |
|||
|
|||
@Override |
|||
@Test |
|||
public void testNullValuesOfNoneTargetColumn() throws ExecutionException, InterruptedException, TimeoutException { |
|||
long ts = TimeUnit.MINUTES.toMillis(1); |
|||
TsKvEntry longEntry = new BasicTsKvEntry(ts, new LongDataEntry("temp", 0L)); |
|||
double doubleValue = 20.6; |
|||
TsKvEntry doubleEntry = new BasicTsKvEntry(ts, new DoubleDataEntry("temp", doubleValue)); |
|||
DeviceId deviceId = new DeviceId(Uuids.timeBased()); |
|||
tsService.save(tenantId, deviceId, longEntry).get(MAX_TIMEOUT, TimeUnit.SECONDS); |
|||
tsService.save(tenantId, deviceId, doubleEntry).get(MAX_TIMEOUT, TimeUnit.SECONDS); |
|||
|
|||
List<TsKvEntry> listWithoutAgg = tsService.findAll(tenantId, deviceId, Collections.singletonList(new BaseReadTsKvQuery("temp", 0L, |
|||
ts + 1 , 1000, 3, Aggregation.NONE))).get(MAX_TIMEOUT, TimeUnit.SECONDS); |
|||
assertEquals(1, listWithoutAgg.size()); |
|||
assertFalse(listWithoutAgg.get(0).getLongValue().isPresent()); |
|||
assertTrue(listWithoutAgg.get(0).getDoubleValue().isPresent()); |
|||
assertThat(listWithoutAgg.get(0).getDoubleValue().get()).isEqualTo(doubleValue); |
|||
|
|||
// long value should be set to null after second insert, so avg = doubleValue
|
|||
List<TsKvEntry> listWithAgg = tsService.findAll(tenantId, deviceId, Collections.singletonList(new BaseReadTsKvQuery("temp", 0L, |
|||
ts + 1 , 1000, 3, Aggregation.AVG))).get(MAX_TIMEOUT, TimeUnit.SECONDS); |
|||
assertEquals(1, listWithAgg.size()); |
|||
assertTrue(listWithAgg.get(0).getDoubleValue().isPresent()); |
|||
assertThat(listWithAgg.get(0).getDoubleValue().get()).isEqualTo(doubleValue); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue