Implementation
This commit is contained in:
parent
f6bc0791f1
commit
87d05f7c84
@ -1,12 +1,12 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright © 2016-2017 The Thingsboard Authors
|
* Copyright © 2016-2017 The Thingsboard Authors
|
||||||
* <p>
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
* <p>
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
* <p>
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
|||||||
@ -140,7 +140,7 @@ cassandra:
|
|||||||
# Specify partitioning size for timestamp key-value storage. Example MINUTES, HOURS, DAYS, MONTHS
|
# Specify partitioning size for timestamp key-value storage. Example MINUTES, HOURS, DAYS, MONTHS
|
||||||
ts_key_value_partitioning: "${TS_KV_PARTITIONING:MONTHS}"
|
ts_key_value_partitioning: "${TS_KV_PARTITIONING:MONTHS}"
|
||||||
# Specify max data points per request
|
# Specify max data points per request
|
||||||
max_limit_per_request: "${TS_KV_MAX_LIMIT_PER_REQUEST:86400}"
|
min_aggregation_step_ms: "${TS_KV_MIN_AGGREGATION_STEP_MS:100}"
|
||||||
|
|
||||||
# Actor system parameters
|
# Actor system parameters
|
||||||
actors:
|
actors:
|
||||||
|
|||||||
@ -1,3 +1,18 @@
|
|||||||
|
/**
|
||||||
|
* Copyright © 2016-2017 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.common.data.kv;
|
package org.thingsboard.server.common.data.kv;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -1,12 +1,12 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright © 2016-2017 The Thingsboard Authors
|
* Copyright © 2016-2017 The Thingsboard Authors
|
||||||
* <p>
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
* <p>
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
* <p>
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
|||||||
@ -1,12 +1,12 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright © 2016-2017 The Thingsboard Authors
|
* Copyright © 2016-2017 The Thingsboard Authors
|
||||||
* <p>
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
* <p>
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
* <p>
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
@ -19,6 +19,7 @@ import java.util.UUID;
|
|||||||
|
|
||||||
import com.datastax.driver.core.utils.UUIDs;
|
import com.datastax.driver.core.utils.UUIDs;
|
||||||
import org.apache.commons.lang3.ArrayUtils;
|
import org.apache.commons.lang3.ArrayUtils;
|
||||||
|
import org.thingsboard.server.common.data.kv.Aggregation;
|
||||||
|
|
||||||
public class ModelConstants {
|
public class ModelConstants {
|
||||||
|
|
||||||
@ -261,16 +262,17 @@ public class ModelConstants {
|
|||||||
public static final String LONG_VALUE_COLUMN = "long_v";
|
public static final String LONG_VALUE_COLUMN = "long_v";
|
||||||
public static final String DOUBLE_VALUE_COLUMN = "dbl_v";
|
public static final String DOUBLE_VALUE_COLUMN = "dbl_v";
|
||||||
|
|
||||||
|
public static final String[] NONE_AGGREGATION_COLUMNS = new String[]{LONG_VALUE_COLUMN, DOUBLE_VALUE_COLUMN, BOOLEAN_VALUE_COLUMN, STRING_VALUE_COLUMN, KEY_COLUMN, TS_COLUMN};
|
||||||
|
|
||||||
public static final String[] COUNT_AGGREGATION_COLUMNS = new String[]{count(LONG_VALUE_COLUMN), count(DOUBLE_VALUE_COLUMN), count(BOOLEAN_VALUE_COLUMN), count(STRING_VALUE_COLUMN)};
|
public static final String[] COUNT_AGGREGATION_COLUMNS = new String[]{count(LONG_VALUE_COLUMN), count(DOUBLE_VALUE_COLUMN), count(BOOLEAN_VALUE_COLUMN), count(STRING_VALUE_COLUMN)};
|
||||||
|
|
||||||
public static final String[] NONE_AGGREGATION_COLUMNS = new String[]{LONG_VALUE_COLUMN, DOUBLE_VALUE_COLUMN, BOOLEAN_VALUE_COLUMN, STRING_VALUE_COLUMN,};
|
|
||||||
public static final String[] MIN_AGGREGATION_COLUMNS = ArrayUtils.addAll(COUNT_AGGREGATION_COLUMNS,
|
public static final String[] MIN_AGGREGATION_COLUMNS = ArrayUtils.addAll(COUNT_AGGREGATION_COLUMNS,
|
||||||
new String[]{min(LONG_VALUE_COLUMN), min(DOUBLE_VALUE_COLUMN), min(BOOLEAN_VALUE_COLUMN), min(STRING_VALUE_COLUMN)});
|
new String[]{min(LONG_VALUE_COLUMN), min(DOUBLE_VALUE_COLUMN), min(BOOLEAN_VALUE_COLUMN), min(STRING_VALUE_COLUMN)});
|
||||||
public static final String[] MAX_AGGREGATION_COLUMNS = ArrayUtils.addAll(COUNT_AGGREGATION_COLUMNS,
|
public static final String[] MAX_AGGREGATION_COLUMNS = ArrayUtils.addAll(COUNT_AGGREGATION_COLUMNS,
|
||||||
new String[]{max(LONG_VALUE_COLUMN), max(DOUBLE_VALUE_COLUMN), max(BOOLEAN_VALUE_COLUMN), max(STRING_VALUE_COLUMN)});
|
new String[]{max(LONG_VALUE_COLUMN), max(DOUBLE_VALUE_COLUMN), max(BOOLEAN_VALUE_COLUMN), max(STRING_VALUE_COLUMN)});
|
||||||
public static final String[] SUM_AGGREGATION_COLUMNS = ArrayUtils.addAll(COUNT_AGGREGATION_COLUMNS,
|
public static final String[] SUM_AGGREGATION_COLUMNS = ArrayUtils.addAll(COUNT_AGGREGATION_COLUMNS,
|
||||||
new String[]{sum(LONG_VALUE_COLUMN), sum(DOUBLE_VALUE_COLUMN)});
|
new String[]{sum(LONG_VALUE_COLUMN), sum(DOUBLE_VALUE_COLUMN)});
|
||||||
public static final String[] AVG_AGGREGATION_COLUMNS = ArrayUtils.addAll(COUNT_AGGREGATION_COLUMNS, SUM_AGGREGATION_COLUMNS);
|
public static final String[] AVG_AGGREGATION_COLUMNS = SUM_AGGREGATION_COLUMNS;
|
||||||
|
|
||||||
public static String min(String s) {
|
public static String min(String s) {
|
||||||
return "min(" + s + ")";
|
return "min(" + s + ")";
|
||||||
@ -287,4 +289,23 @@ public class ModelConstants {
|
|||||||
public static String count(String s) {
|
public static String count(String s) {
|
||||||
return "count(" + s + ")";
|
return "count(" + s + ")";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static String[] getFetchColumnNames(Aggregation aggregation) {
|
||||||
|
switch (aggregation) {
|
||||||
|
case NONE:
|
||||||
|
return NONE_AGGREGATION_COLUMNS;
|
||||||
|
case MIN:
|
||||||
|
return MIN_AGGREGATION_COLUMNS;
|
||||||
|
case MAX:
|
||||||
|
return MAX_AGGREGATION_COLUMNS;
|
||||||
|
case SUM:
|
||||||
|
return SUM_AGGREGATION_COLUMNS;
|
||||||
|
case COUNT:
|
||||||
|
return COUNT_AGGREGATION_COLUMNS;
|
||||||
|
case AVG:
|
||||||
|
return AVG_AGGREGATION_COLUMNS;
|
||||||
|
default:
|
||||||
|
throw new RuntimeException("Aggregation type: " + aggregation + " is not supported!");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,18 @@
|
|||||||
|
/**
|
||||||
|
* Copyright © 2016-2017 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.timeseries;
|
package org.thingsboard.server.dao.timeseries;
|
||||||
|
|
||||||
import com.datastax.driver.core.ResultSet;
|
import com.datastax.driver.core.ResultSet;
|
||||||
@ -84,8 +99,11 @@ public class AggregatePartitionsFunction implements com.google.common.base.Funct
|
|||||||
count += curCount;
|
count += curCount;
|
||||||
} else if (aggregation == Aggregation.AVG || aggregation == Aggregation.SUM) {
|
} else if (aggregation == Aggregation.AVG || aggregation == Aggregation.SUM) {
|
||||||
count += curCount;
|
count += curCount;
|
||||||
dValue = dValue == null ? curDValue : dValue + curDValue;
|
if (curDValue != null) {
|
||||||
lValue = lValue == null ? curLValue : lValue + curLValue;
|
dValue = dValue == null ? curDValue : dValue + curDValue;
|
||||||
|
} else if (curLValue != null) {
|
||||||
|
lValue = lValue == null ? curLValue : lValue + curLValue;
|
||||||
|
}
|
||||||
} else if (aggregation == Aggregation.MIN) {
|
} else if (aggregation == Aggregation.MIN) {
|
||||||
if (curDValue != null) {
|
if (curDValue != null) {
|
||||||
dValue = dValue == null ? curDValue : Math.min(dValue, curDValue);
|
dValue = dValue == null ? curDValue : Math.min(dValue, curDValue);
|
||||||
|
|||||||
@ -1,12 +1,12 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright © 2016-2017 The Thingsboard Authors
|
* Copyright © 2016-2017 The Thingsboard Authors
|
||||||
* <p>
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
* <p>
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
* <p>
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
@ -20,6 +20,7 @@ import com.datastax.driver.core.querybuilder.QueryBuilder;
|
|||||||
import com.datastax.driver.core.querybuilder.Select;
|
import com.datastax.driver.core.querybuilder.Select;
|
||||||
import com.google.common.base.Function;
|
import com.google.common.base.Function;
|
||||||
import com.google.common.util.concurrent.AsyncFunction;
|
import com.google.common.util.concurrent.AsyncFunction;
|
||||||
|
import com.google.common.util.concurrent.FutureCallback;
|
||||||
import com.google.common.util.concurrent.Futures;
|
import com.google.common.util.concurrent.Futures;
|
||||||
import com.google.common.util.concurrent.ListenableFuture;
|
import com.google.common.util.concurrent.ListenableFuture;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
@ -51,14 +52,8 @@ import static com.datastax.driver.core.querybuilder.QueryBuilder.select;
|
|||||||
@Slf4j
|
@Slf4j
|
||||||
public class BaseTimeseriesDao extends AbstractDao implements TimeseriesDao {
|
public class BaseTimeseriesDao extends AbstractDao implements TimeseriesDao {
|
||||||
|
|
||||||
@Value("${cassandra.query.max_limit_per_request}")
|
@Value("${cassandra.query.min_aggregation_step_ms}")
|
||||||
protected Integer maxLimitPerRequest;
|
private int minAggregationStepMs;
|
||||||
|
|
||||||
@Value("${cassandra.query.read_result_processing_threads}")
|
|
||||||
private int readResultsProcessingThreads;
|
|
||||||
|
|
||||||
@Value("${cassandra.query.min_read_step}")
|
|
||||||
private int minReadStep;
|
|
||||||
|
|
||||||
@Value("${cassandra.query.ts_key_value_partitioning}")
|
@Value("${cassandra.query.ts_key_value_partitioning}")
|
||||||
private String partitioning;
|
private String partitioning;
|
||||||
@ -77,7 +72,7 @@ public class BaseTimeseriesDao extends AbstractDao implements TimeseriesDao {
|
|||||||
@PostConstruct
|
@PostConstruct
|
||||||
public void init() {
|
public void init() {
|
||||||
getFetchStmt(Aggregation.NONE);
|
getFetchStmt(Aggregation.NONE);
|
||||||
readResultsProcessingExecutor = Executors.newFixedThreadPool(readResultsProcessingThreads);
|
readResultsProcessingExecutor = Executors.newCachedThreadPool();
|
||||||
Optional<TsPartitionDate> partition = TsPartitionDate.parse(partitioning);
|
Optional<TsPartitionDate> partition = TsPartitionDate.parse(partitioning);
|
||||||
if (partition.isPresent()) {
|
if (partition.isPresent()) {
|
||||||
tsFormat = partition.get();
|
tsFormat = partition.get();
|
||||||
@ -100,33 +95,12 @@ public class BaseTimeseriesDao extends AbstractDao implements TimeseriesDao {
|
|||||||
return tsFormat.truncatedTo(time).toInstant(ZoneOffset.UTC).toEpochMilli();
|
return tsFormat.truncatedTo(time).toInstant(ZoneOffset.UTC).toEpochMilli();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static String[] getFetchColumnNames(Aggregation aggregation) {
|
|
||||||
switch (aggregation) {
|
|
||||||
case NONE:
|
|
||||||
return ModelConstants.NONE_AGGREGATION_COLUMNS;
|
|
||||||
case MIN:
|
|
||||||
return ModelConstants.MIN_AGGREGATION_COLUMNS;
|
|
||||||
case MAX:
|
|
||||||
return ModelConstants.MAX_AGGREGATION_COLUMNS;
|
|
||||||
case SUM:
|
|
||||||
return ModelConstants.SUM_AGGREGATION_COLUMNS;
|
|
||||||
case COUNT:
|
|
||||||
return ModelConstants.COUNT_AGGREGATION_COLUMNS;
|
|
||||||
case AVG:
|
|
||||||
return ModelConstants.AVG_AGGREGATION_COLUMNS;
|
|
||||||
default:
|
|
||||||
throw new RuntimeException("Aggregation type: " + aggregation + " is not supported!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ListenableFuture<List<TsKvEntry>> findAllAsync(String entityType, UUID entityId, TsKvQuery query, long minPartition, long maxPartition) {
|
public ListenableFuture<List<TsKvEntry>> findAllAsync(String entityType, UUID entityId, TsKvQuery query) {
|
||||||
if (query.getAggregation() == Aggregation.NONE) {
|
if (query.getAggregation() == Aggregation.NONE) {
|
||||||
//TODO:
|
return findAllAsyncWithLimit(entityType, entityId, query);
|
||||||
return null;
|
|
||||||
} else {
|
} else {
|
||||||
long step = Math.max((query.getEndTs() - query.getStartTs()) / query.getLimit(), minReadStep);
|
long step = Math.max((query.getEndTs() - query.getStartTs()) / query.getLimit(), minAggregationStepMs);
|
||||||
long stepTs = query.getStartTs();
|
long stepTs = query.getStartTs();
|
||||||
List<ListenableFuture<Optional<TsKvEntry>>> futures = new ArrayList<>();
|
List<ListenableFuture<Optional<TsKvEntry>>> futures = new ArrayList<>();
|
||||||
while (stepTs < query.getEndTs()) {
|
while (stepTs < query.getEndTs()) {
|
||||||
@ -143,23 +117,88 @@ public class BaseTimeseriesDao extends AbstractDao implements TimeseriesDao {
|
|||||||
public List<TsKvEntry> apply(@Nullable List<Optional<TsKvEntry>> input) {
|
public List<TsKvEntry> apply(@Nullable List<Optional<TsKvEntry>> input) {
|
||||||
return input.stream().filter(v -> v.isPresent()).map(v -> v.get()).collect(Collectors.toList());
|
return input.stream().filter(v -> v.isPresent()).map(v -> v.get()).collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
});
|
}, readResultsProcessingExecutor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private ListenableFuture<List<TsKvEntry>> findAllAsyncWithLimit(String entityType, UUID entityId, TsKvQuery query) {
|
||||||
|
long minPartition = query.getStartTs();
|
||||||
|
long maxPartition = query.getEndTs();
|
||||||
|
|
||||||
|
ResultSetFuture partitionsFuture = fetchPartitions(entityType, entityId, query.getKey(), minPartition, maxPartition);
|
||||||
|
|
||||||
|
final SimpleListenableFuture<List<TsKvEntry>> resultFuture = new SimpleListenableFuture<>();
|
||||||
|
final ListenableFuture<List<Long>> partitionsListFuture = Futures.transform(partitionsFuture, getPartitionsArrayFunction(), readResultsProcessingExecutor);
|
||||||
|
|
||||||
|
Futures.addCallback(partitionsListFuture, new FutureCallback<List<Long>>() {
|
||||||
|
@Override
|
||||||
|
public void onSuccess(@Nullable List<Long> partitions) {
|
||||||
|
TsKvQueryCursor cursor = new TsKvQueryCursor(entityType, entityId, query, partitions);
|
||||||
|
findAllAsyncSequentiallyWithLimit(cursor, resultFuture);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onFailure(Throwable t) {
|
||||||
|
log.error("[{}][{}] Failed to fetch partitions for interval {}-{}", entityType, entityId, minPartition, maxPartition, t);
|
||||||
|
}
|
||||||
|
}, readResultsProcessingExecutor);
|
||||||
|
|
||||||
|
return resultFuture;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void findAllAsyncSequentiallyWithLimit(final TsKvQueryCursor cursor, final SimpleListenableFuture<List<TsKvEntry>> resultFuture) {
|
||||||
|
if (cursor.isFull() || !cursor.hasNextPartition()) {
|
||||||
|
resultFuture.set(cursor.getData());
|
||||||
|
} else {
|
||||||
|
PreparedStatement proto = getFetchStmt(Aggregation.NONE);
|
||||||
|
BoundStatement stmt = proto.bind();
|
||||||
|
stmt.setString(0, cursor.getEntityType());
|
||||||
|
stmt.setUUID(1, cursor.getEntityId());
|
||||||
|
stmt.setString(2, cursor.getKey());
|
||||||
|
stmt.setLong(3, cursor.getNextPartition());
|
||||||
|
stmt.setLong(4, cursor.getStartTs());
|
||||||
|
stmt.setLong(5, cursor.getEndTs());
|
||||||
|
stmt.setInt(6, cursor.getCurrentLimit());
|
||||||
|
|
||||||
|
Futures.addCallback(executeAsyncRead(stmt), new FutureCallback<ResultSet>() {
|
||||||
|
@Override
|
||||||
|
public void onSuccess(@Nullable ResultSet result) {
|
||||||
|
cursor.addData(convertResultToTsKvEntryList(result.all()));
|
||||||
|
findAllAsyncSequentiallyWithLimit(cursor, resultFuture);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onFailure(Throwable t) {
|
||||||
|
log.error("[{}][{}] Failed to fetch data for query {}-{}", stmt, t);
|
||||||
|
}
|
||||||
|
}, readResultsProcessingExecutor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private ListenableFuture<Optional<TsKvEntry>> findAndAggregateAsync(String entityType, UUID entityId, TsKvQuery query, long minPartition, long maxPartition) {
|
private ListenableFuture<Optional<TsKvEntry>> findAndAggregateAsync(String entityType, UUID entityId, TsKvQuery query, long minPartition, long maxPartition) {
|
||||||
final Aggregation aggregation = query.getAggregation();
|
final Aggregation aggregation = query.getAggregation();
|
||||||
|
final String key = query.getKey();
|
||||||
final long startTs = query.getStartTs();
|
final long startTs = query.getStartTs();
|
||||||
final long endTs = query.getEndTs();
|
final long endTs = query.getEndTs();
|
||||||
final long ts = startTs + (endTs - startTs) / 2;
|
final long ts = startTs + (endTs - startTs) / 2;
|
||||||
|
|
||||||
ResultSetFuture partitionsFuture = fetchPartitions(entityType, entityId, query.getKey(), minPartition, maxPartition);
|
ResultSetFuture partitionsFuture = fetchPartitions(entityType, entityId, key, minPartition, maxPartition);
|
||||||
com.google.common.base.Function<ResultSet, List<Long>> toArrayFunction = rows -> rows.all().stream()
|
|
||||||
|
ListenableFuture<List<Long>> partitionsListFuture = Futures.transform(partitionsFuture, getPartitionsArrayFunction(), readResultsProcessingExecutor);
|
||||||
|
|
||||||
|
ListenableFuture<List<ResultSet>> aggregationChunks = Futures.transform(partitionsListFuture,
|
||||||
|
getFetchChunksAsyncFunction(entityType, entityId, key, aggregation, startTs, endTs), readResultsProcessingExecutor);
|
||||||
|
|
||||||
|
return Futures.transform(aggregationChunks, new AggregatePartitionsFunction(aggregation, key, ts), readResultsProcessingExecutor);
|
||||||
|
}
|
||||||
|
|
||||||
|
private Function<ResultSet, List<Long>> getPartitionsArrayFunction() {
|
||||||
|
return rows -> rows.all().stream()
|
||||||
.map(row -> row.getLong(ModelConstants.PARTITION_COLUMN)).collect(Collectors.toList());
|
.map(row -> row.getLong(ModelConstants.PARTITION_COLUMN)).collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
ListenableFuture<List<Long>> partitionsListFuture = Futures.transform(partitionsFuture, toArrayFunction, readResultsProcessingExecutor);
|
private AsyncFunction<List<Long>, List<ResultSet>> getFetchChunksAsyncFunction(String entityType, UUID entityId, String key, Aggregation aggregation, long startTs, long endTs) {
|
||||||
|
return partitions -> {
|
||||||
AsyncFunction<List<Long>, List<ResultSet>> fetchChunksFunction = partitions -> {
|
|
||||||
try {
|
try {
|
||||||
PreparedStatement proto = getFetchStmt(aggregation);
|
PreparedStatement proto = getFetchStmt(aggregation);
|
||||||
List<ResultSetFuture> futures = new ArrayList<>(partitions.size());
|
List<ResultSetFuture> futures = new ArrayList<>(partitions.size());
|
||||||
@ -167,7 +206,7 @@ public class BaseTimeseriesDao extends AbstractDao implements TimeseriesDao {
|
|||||||
BoundStatement stmt = proto.bind();
|
BoundStatement stmt = proto.bind();
|
||||||
stmt.setString(0, entityType);
|
stmt.setString(0, entityType);
|
||||||
stmt.setUUID(1, entityId);
|
stmt.setUUID(1, entityId);
|
||||||
stmt.setString(2, query.getKey());
|
stmt.setString(2, key);
|
||||||
stmt.setLong(3, partition);
|
stmt.setLong(3, partition);
|
||||||
stmt.setLong(4, startTs);
|
stmt.setLong(4, startTs);
|
||||||
stmt.setLong(5, endTs);
|
stmt.setLong(5, endTs);
|
||||||
@ -180,10 +219,6 @@ public class BaseTimeseriesDao extends AbstractDao implements TimeseriesDao {
|
|||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
ListenableFuture<List<ResultSet>> aggregationChunks = Futures.transform(partitionsListFuture, fetchChunksFunction, readResultsProcessingExecutor);
|
|
||||||
|
|
||||||
return Futures.transform(aggregationChunks, new AggregatePartitionsFunction(aggregation, query.getKey(), ts), readResultsProcessingExecutor);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -320,14 +355,21 @@ public class BaseTimeseriesDao extends AbstractDao implements TimeseriesDao {
|
|||||||
if (fetchStmts == null) {
|
if (fetchStmts == null) {
|
||||||
fetchStmts = new PreparedStatement[Aggregation.values().length];
|
fetchStmts = new PreparedStatement[Aggregation.values().length];
|
||||||
for (Aggregation type : Aggregation.values()) {
|
for (Aggregation type : Aggregation.values()) {
|
||||||
fetchStmts[type.ordinal()] = getSession().prepare("SELECT " +
|
if (type == Aggregation.SUM && fetchStmts[Aggregation.AVG.ordinal()] != null) {
|
||||||
String.join(", ", getFetchColumnNames(type)) + " FROM " + ModelConstants.TS_KV_CF
|
fetchStmts[type.ordinal()] = fetchStmts[Aggregation.AVG.ordinal()];
|
||||||
+ " WHERE " + ModelConstants.ENTITY_TYPE_COLUMN + " = ? "
|
} else if (type == Aggregation.AVG && fetchStmts[Aggregation.SUM.ordinal()] != null) {
|
||||||
+ "AND " + ModelConstants.ENTITY_ID_COLUMN + " = ? "
|
fetchStmts[type.ordinal()] = fetchStmts[Aggregation.SUM.ordinal()];
|
||||||
+ "AND " + ModelConstants.KEY_COLUMN + " = ? "
|
} else {
|
||||||
+ "AND " + ModelConstants.PARTITION_COLUMN + " = ? "
|
fetchStmts[type.ordinal()] = getSession().prepare("SELECT " +
|
||||||
+ "AND " + ModelConstants.TS_COLUMN + " > ? "
|
String.join(", ", ModelConstants.getFetchColumnNames(type)) + " FROM " + ModelConstants.TS_KV_CF
|
||||||
+ "AND " + ModelConstants.TS_COLUMN + " <= ?");
|
+ " WHERE " + ModelConstants.ENTITY_TYPE_COLUMN + " = ? "
|
||||||
|
+ "AND " + ModelConstants.ENTITY_ID_COLUMN + " = ? "
|
||||||
|
+ "AND " + ModelConstants.KEY_COLUMN + " = ? "
|
||||||
|
+ "AND " + ModelConstants.PARTITION_COLUMN + " = ? "
|
||||||
|
+ "AND " + ModelConstants.TS_COLUMN + " > ? "
|
||||||
|
+ "AND " + ModelConstants.TS_COLUMN + " <= ?"
|
||||||
|
+ (type == Aggregation.NONE ? " ORDER BY " + ModelConstants.TS_COLUMN + " DESC LIMIT ?" : ""));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return fetchStmts[aggType.ordinal()];
|
return fetchStmts[aggType.ordinal()];
|
||||||
|
|||||||
@ -1,12 +1,12 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright © 2016-2017 The Thingsboard Authors
|
* Copyright © 2016-2017 The Thingsboard Authors
|
||||||
* <p>
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
* <p>
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
* <p>
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
@ -59,7 +59,7 @@ public class BaseTimeseriesService implements TimeseriesService {
|
|||||||
public ListenableFuture<List<TsKvEntry>> findAll(String entityType, UUIDBased entityId, TsKvQuery query) {
|
public ListenableFuture<List<TsKvEntry>> findAll(String entityType, UUIDBased entityId, TsKvQuery query) {
|
||||||
validate(entityType, entityId);
|
validate(entityType, entityId);
|
||||||
validate(query);
|
validate(query);
|
||||||
return timeseriesDao.findAllAsync(entityType, entityId.getId(), query, timeseriesDao.toPartitionTs(query.getStartTs()), timeseriesDao.toPartitionTs(query.getEndTs()));
|
return timeseriesDao.findAllAsync(entityType, entityId.getId(), query);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -132,7 +132,8 @@ public class BaseTimeseriesService implements TimeseriesService {
|
|||||||
throw new IncorrectParameterException("TsKvQuery can't be null");
|
throw new IncorrectParameterException("TsKvQuery can't be null");
|
||||||
} else if (isBlank(query.getKey())) {
|
} else if (isBlank(query.getKey())) {
|
||||||
throw new IncorrectParameterException("Incorrect TsKvQuery. Key can't be empty");
|
throw new IncorrectParameterException("Incorrect TsKvQuery. Key can't be empty");
|
||||||
|
} else if (query.getAggregation() == null){
|
||||||
|
throw new IncorrectParameterException("Incorrect TsKvQuery. Aggregation can't be empty");
|
||||||
}
|
}
|
||||||
//TODO: add validation of all params
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,33 @@
|
|||||||
|
/**
|
||||||
|
* Copyright © 2016-2017 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.timeseries;
|
||||||
|
|
||||||
|
import com.google.common.util.concurrent.AbstractFuture;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by ashvayka on 21.02.17.
|
||||||
|
*/
|
||||||
|
public class SimpleListenableFuture<V> extends AbstractFuture<V> {
|
||||||
|
|
||||||
|
public SimpleListenableFuture() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean set(V value) {
|
||||||
|
return super.set(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -33,7 +33,7 @@ public interface TimeseriesDao {
|
|||||||
|
|
||||||
long toPartitionTs(long ts);
|
long toPartitionTs(long ts);
|
||||||
|
|
||||||
ListenableFuture<List<TsKvEntry>> findAllAsync(String entityType, UUID entityId, TsKvQuery query, long minPartition, long maxPartition);
|
ListenableFuture<List<TsKvEntry>> findAllAsync(String entityType, UUID entityId, TsKvQuery query);
|
||||||
|
|
||||||
// List<TsKvEntry> find(String entityType, UUID entityId, TsKvQuery query, Optional<Long> minPartition, Optional<Long> maxPartition);
|
// List<TsKvEntry> find(String entityType, UUID entityId, TsKvQuery query, Optional<Long> minPartition, Optional<Long> maxPartition);
|
||||||
|
|
||||||
|
|||||||
@ -0,0 +1,82 @@
|
|||||||
|
/**
|
||||||
|
* Copyright © 2016-2017 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.timeseries;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.Getter;
|
||||||
|
import org.thingsboard.server.common.data.kv.TsKvEntry;
|
||||||
|
import org.thingsboard.server.common.data.kv.TsKvQuery;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by ashvayka on 21.02.17.
|
||||||
|
*/
|
||||||
|
public class TsKvQueryCursor {
|
||||||
|
@Getter
|
||||||
|
private final String entityType;
|
||||||
|
@Getter
|
||||||
|
private final UUID entityId;
|
||||||
|
@Getter
|
||||||
|
private final String key;
|
||||||
|
@Getter
|
||||||
|
private final long startTs;
|
||||||
|
@Getter
|
||||||
|
private final long endTs;
|
||||||
|
private final List<Long> partitions;
|
||||||
|
@Getter
|
||||||
|
private final List<TsKvEntry> data;
|
||||||
|
|
||||||
|
private int partitionIndex;
|
||||||
|
private int currentLimit;
|
||||||
|
|
||||||
|
public TsKvQueryCursor(String entityType, UUID entityId, TsKvQuery baseQuery, List<Long> partitions) {
|
||||||
|
this.entityType = entityType;
|
||||||
|
this.entityId = entityId;
|
||||||
|
this.key = baseQuery.getKey();
|
||||||
|
this.startTs = baseQuery.getStartTs();
|
||||||
|
this.endTs = baseQuery.getEndTs();
|
||||||
|
this.partitions = partitions;
|
||||||
|
this.partitionIndex = partitions.size() - 1;
|
||||||
|
this.data = new ArrayList<>();
|
||||||
|
this.currentLimit = baseQuery.getLimit();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean hasNextPartition() {
|
||||||
|
return partitionIndex >= 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isFull() {
|
||||||
|
return currentLimit <= 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long getNextPartition() {
|
||||||
|
long partition = partitions.get(partitionIndex);
|
||||||
|
partitionIndex--;
|
||||||
|
return partition;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getCurrentLimit() {
|
||||||
|
return currentLimit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addData(List<TsKvEntry> newData) {
|
||||||
|
currentLimit -= newData.size();
|
||||||
|
data.addAll(newData);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -25,11 +25,11 @@ import java.util.Arrays;
|
|||||||
|
|
||||||
@RunWith(ClasspathSuite.class)
|
@RunWith(ClasspathSuite.class)
|
||||||
@ClassnameFilters({
|
@ClassnameFilters({
|
||||||
// "org.thingsboard.server.dao.service.*Test",
|
"org.thingsboard.server.dao.service.*Test",
|
||||||
// "org.thingsboard.server.dao.kv.*Test",
|
"org.thingsboard.server.dao.kv.*Test",
|
||||||
// "org.thingsboard.server.dao.plugin.*Test",
|
"org.thingsboard.server.dao.plugin.*Test",
|
||||||
// "org.thingsboard.server.dao.rule.*Test",
|
"org.thingsboard.server.dao.rule.*Test",
|
||||||
// "org.thingsboard.server.dao.attributes.*Test",
|
"org.thingsboard.server.dao.attributes.*Test",
|
||||||
"org.thingsboard.server.dao.timeseries.*Test"
|
"org.thingsboard.server.dao.timeseries.*Test"
|
||||||
})
|
})
|
||||||
public class DaoTestSuite {
|
public class DaoTestSuite {
|
||||||
|
|||||||
@ -51,8 +51,6 @@ public class TimeseriesServiceTest extends AbstractServiceTest {
|
|||||||
private static final String DOUBLE_KEY = "doubleKey";
|
private static final String DOUBLE_KEY = "doubleKey";
|
||||||
private static final String BOOLEAN_KEY = "booleanKey";
|
private static final String BOOLEAN_KEY = "booleanKey";
|
||||||
|
|
||||||
public static final int PARTITION_MINUTES = 1100;
|
|
||||||
|
|
||||||
private static final long TS = 42L;
|
private static final long TS = 42L;
|
||||||
|
|
||||||
KvEntry stringKvEntry = new StringDataEntry(STRING_KEY, "value");
|
KvEntry stringKvEntry = new StringDataEntry(STRING_KEY, "value");
|
||||||
@ -103,49 +101,101 @@ public class TimeseriesServiceTest extends AbstractServiceTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testFindDeviceTsDataByQuery() throws Exception {
|
public void testFindDeviceTsData() throws Exception {
|
||||||
DeviceId deviceId = new DeviceId(UUIDs.timeBased());
|
DeviceId deviceId = new DeviceId(UUIDs.timeBased());
|
||||||
LocalDateTime localDateTime = LocalDateTime.now(ZoneOffset.UTC).minusMinutes(PARTITION_MINUTES);
|
List<TsKvEntry> entries = new ArrayList<>();
|
||||||
log.debug("Start event time is {}", localDateTime);
|
|
||||||
List<TsKvEntry> entries = new ArrayList<>(PARTITION_MINUTES);
|
|
||||||
|
|
||||||
for (int i = 0; i < PARTITION_MINUTES; i++) {
|
entries.add(save(deviceId, 5000, 100));
|
||||||
long time = localDateTime.plusMinutes(i).toInstant(ZoneOffset.UTC).toEpochMilli();
|
entries.add(save(deviceId, 15000, 200));
|
||||||
BasicTsKvEntry tsKvEntry = new BasicTsKvEntry(time, stringKvEntry);
|
|
||||||
tsService.save(DataConstants.DEVICE, deviceId, tsKvEntry).get();
|
entries.add(save(deviceId, 25000, 300));
|
||||||
entries.add(tsKvEntry);
|
entries.add(save(deviceId, 35000, 400));
|
||||||
}
|
|
||||||
log.debug("Saved all records {}", localDateTime);
|
entries.add(save(deviceId, 45000, 500));
|
||||||
List<TsKvEntry> list = tsService.findAll(DataConstants.DEVICE, deviceId, new BaseTsKvQuery(STRING_KEY, entries.get(599).getTs(),
|
entries.add(save(deviceId, 55000, 600));
|
||||||
LocalDateTime.now(ZoneOffset.UTC).toInstant(ZoneOffset.UTC).toEpochMilli(), PARTITION_MINUTES - 599, Aggregation.MIN)).get();
|
|
||||||
log.debug("Fetched records {}", localDateTime);
|
List<TsKvEntry> list = tsService.findAll(DataConstants.DEVICE, deviceId, new BaseTsKvQuery(LONG_KEY, 0,
|
||||||
List<TsKvEntry> expected = entries.subList(600, PARTITION_MINUTES);
|
60000, 3, Aggregation.NONE)).get();
|
||||||
assertEquals(expected.size(), list.size());
|
assertEquals(3, list.size());
|
||||||
assertEquals(expected, list);
|
assertEquals(55000, list.get(0).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(600L), list.get(0).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(45000, list.get(1).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(500L), list.get(1).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(35000, list.get(2).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(400L), list.get(2).getLongValue());
|
||||||
|
|
||||||
|
list = tsService.findAll(DataConstants.DEVICE, deviceId, new BaseTsKvQuery(LONG_KEY, 0,
|
||||||
|
60000, 3, Aggregation.AVG)).get();
|
||||||
|
assertEquals(3, list.size());
|
||||||
|
assertEquals(10000, list.get(0).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(150L), list.get(0).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(30000, list.get(1).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(350L), list.get(1).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(50000, list.get(2).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(550L), list.get(2).getLongValue());
|
||||||
|
|
||||||
|
list = tsService.findAll(DataConstants.DEVICE, deviceId, new BaseTsKvQuery(LONG_KEY, 0,
|
||||||
|
60000, 3, Aggregation.SUM)).get();
|
||||||
|
|
||||||
|
assertEquals(3, list.size());
|
||||||
|
assertEquals(10000, list.get(0).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(300L), list.get(0).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(30000, list.get(1).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(700L), list.get(1).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(50000, list.get(2).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(1100L), list.get(2).getLongValue());
|
||||||
|
|
||||||
|
list = tsService.findAll(DataConstants.DEVICE, deviceId, new BaseTsKvQuery(LONG_KEY, 0,
|
||||||
|
60000, 3, Aggregation.MIN)).get();
|
||||||
|
|
||||||
|
assertEquals(3, list.size());
|
||||||
|
assertEquals(10000, list.get(0).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(100L), list.get(0).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(30000, list.get(1).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(300L), list.get(1).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(50000, list.get(2).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(500L), list.get(2).getLongValue());
|
||||||
|
|
||||||
|
list = tsService.findAll(DataConstants.DEVICE, deviceId, new BaseTsKvQuery(LONG_KEY, 0,
|
||||||
|
60000, 3, Aggregation.MAX)).get();
|
||||||
|
|
||||||
|
assertEquals(3, list.size());
|
||||||
|
assertEquals(10000, list.get(0).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(200L), list.get(0).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(30000, list.get(1).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(400L), list.get(1).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(50000, list.get(2).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(600L), list.get(2).getLongValue());
|
||||||
|
|
||||||
|
list = tsService.findAll(DataConstants.DEVICE, deviceId, new BaseTsKvQuery(LONG_KEY, 0,
|
||||||
|
60000, 3, Aggregation.COUNT)).get();
|
||||||
|
|
||||||
|
assertEquals(3, list.size());
|
||||||
|
assertEquals(10000, list.get(0).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(2L), list.get(0).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(30000, list.get(1).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(2L), list.get(1).getLongValue());
|
||||||
|
|
||||||
|
assertEquals(50000, list.get(2).getTs());
|
||||||
|
assertEquals(java.util.Optional.of(2L), list.get(2).getLongValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Test
|
private TsKvEntry save(DeviceId deviceId, long ts, long value) throws Exception {
|
||||||
// public void testFindDeviceTsDataByQuery() throws Exception {
|
TsKvEntry entry = new BasicTsKvEntry(ts, new LongDataEntry(LONG_KEY, value));
|
||||||
// DeviceId deviceId = new DeviceId(UUIDs.timeBased());
|
tsService.save(DataConstants.DEVICE, deviceId, entry).get();
|
||||||
// LocalDateTime localDateTime = LocalDateTime.now(ZoneOffset.UTC).minusMinutes(PARTITION_MINUTES);
|
return entry;
|
||||||
// log.debug("Start event time is {}", localDateTime);
|
}
|
||||||
// List<TsKvEntry> entries = new ArrayList<>(PARTITION_MINUTES);
|
|
||||||
//
|
|
||||||
// for (int i = 0; i < PARTITION_MINUTES; i++) {
|
|
||||||
// long time = localDateTime.plusMinutes(i).toInstant(ZoneOffset.UTC).toEpochMilli();
|
|
||||||
// BasicTsKvEntry tsKvEntry = new BasicTsKvEntry(time, stringKvEntry);
|
|
||||||
// tsService.save(DataConstants.DEVICE, deviceId, tsKvEntry).get();
|
|
||||||
// entries.add(tsKvEntry);
|
|
||||||
// }
|
|
||||||
// log.debug("Saved all records {}", localDateTime);
|
|
||||||
// List<TsKvEntry> list = tsService.findAll(DataConstants.DEVICE, deviceId, new BaseTsKvQuery(STRING_KEY, entries.get(599).getTs(),
|
|
||||||
// LocalDateTime.now(ZoneOffset.UTC).toInstant(ZoneOffset.UTC).toEpochMilli(), PARTITION_MINUTES - 599, Aggregation.MIN)).get();
|
|
||||||
// log.debug("Fetched records {}", localDateTime);
|
|
||||||
// List<TsKvEntry> expected = entries.subList(600, PARTITION_MINUTES);
|
|
||||||
// assertEquals(expected.size(), list.size());
|
|
||||||
// assertEquals(expected, list);
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
private void saveEntries(DeviceId deviceId, long ts) throws ExecutionException, InterruptedException {
|
private void saveEntries(DeviceId deviceId, long ts) throws ExecutionException, InterruptedException {
|
||||||
tsService.save(DataConstants.DEVICE, deviceId, toTsEntry(ts, stringKvEntry)).get();
|
tsService.save(DataConstants.DEVICE, deviceId, toTsEntry(ts, stringKvEntry)).get();
|
||||||
|
|||||||
@ -48,6 +48,4 @@ cassandra.query.ts_key_value_partitioning=HOURS
|
|||||||
|
|
||||||
cassandra.query.max_limit_per_request=1000
|
cassandra.query.max_limit_per_request=1000
|
||||||
|
|
||||||
cassandra.query.read_result_processing_threads=3
|
cassandra.query.min_aggregation_step_ms=100
|
||||||
|
|
||||||
cassandra.query.min_read_step=100
|
|
||||||
Loading…
x
Reference in New Issue
Block a user