You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-07-31 05:44:24 +03:00
123 lines
3.8 KiB
JavaScript
123 lines
3.8 KiB
JavaScript
// Add data to a Redis TimeSeries and query it.
|
|
// Requires the RedisTimeSeries module: https://redis.io/docs/stack/timeseries/
|
|
|
|
import { createClient } from 'redis';
|
|
import { TIME_SERIES_DUPLICATE_POLICIES, TIME_SERIES_ENCODING, TIME_SERIES_AGGREGATION_TYPE } from '@redis/time-series';
|
|
|
|
const client = createClient();
|
|
|
|
await client.connect();
|
|
await client.del('mytimeseries');
|
|
|
|
try {
|
|
// Create a timeseries
|
|
// https://redis.io/commands/ts.create/
|
|
const created = await client.ts.create('mytimeseries', {
|
|
RETENTION: 86400000, // 1 day in milliseconds
|
|
ENCODING: TIME_SERIES_ENCODING.UNCOMPRESSED, // No compression
|
|
DUPLICATE_POLICY: TIME_SERIES_DUPLICATE_POLICIES.BLOCK // No duplicates
|
|
});
|
|
|
|
if (created === 'OK') {
|
|
console.log('Created timeseries.');
|
|
} else {
|
|
console.log('Error creating timeseries :(');
|
|
process.exit(1);
|
|
}
|
|
|
|
let value = Math.floor(Math.random() * 1000) + 1; // Random data point value
|
|
let currentTimestamp = 1640995200000; // Jan 1 2022 00:00:00
|
|
let num = 0;
|
|
|
|
while (num < 10000) {
|
|
// Add a new value to the timeseries, providing our own timestamp:
|
|
// https://redis.io/commands/ts.add/
|
|
await client.ts.add('mytimeseries', currentTimestamp, value);
|
|
console.log(`Added timestamp ${currentTimestamp}, value ${value}.`);
|
|
|
|
num += 1;
|
|
value = Math.floor(Math.random() * 1000) + 1; // Get another random value
|
|
currentTimestamp += 1000; // Move on one second.
|
|
}
|
|
|
|
// Add multiple values to the timeseries in round trip to the server:
|
|
// https://redis.io/commands/ts.madd/
|
|
const response = await client.ts.mAdd([{
|
|
key: 'mytimeseries',
|
|
timestamp: currentTimestamp + 60000,
|
|
value: Math.floor(Math.random() * 1000) + 1
|
|
}, {
|
|
key: 'mytimeseries',
|
|
timestamp: currentTimestamp + 120000,
|
|
value: Math.floor(Math.random() * 1000) + 1
|
|
}]);
|
|
|
|
// response = array of timestamps added by TS.MADD command.
|
|
if (response.length === 2) {
|
|
console.log('Added 2 entries to timeseries with TS.MADD.');
|
|
}
|
|
|
|
// Update timeseries retention with TS.ALTER:
|
|
// https://redis.io/commands/ts.alter/
|
|
const alterResponse = await client.ts.alter('mytimeseries', {
|
|
RETENTION: 0 // Keep the entries forever
|
|
});
|
|
|
|
if (alterResponse === 'OK') {
|
|
console.log('Timeseries retention settings altered successfully.');
|
|
}
|
|
|
|
// Query the timeseries with TS.RANGE:
|
|
// https://redis.io/commands/ts.range/
|
|
const fromTimestamp = 1640995200000; // Jan 1 2022 00:00:00
|
|
const toTimestamp = 1640995260000; // Jan 1 2022 00:01:00
|
|
const rangeResponse = await client.ts.range('mytimeseries', fromTimestamp, toTimestamp, {
|
|
// Group into 10 second averages.
|
|
AGGREGATION: {
|
|
type: TIME_SERIES_AGGREGATION_TYPE.AVG,
|
|
timeBucket: 10000
|
|
}
|
|
});
|
|
|
|
console.log('RANGE RESPONSE:');
|
|
// rangeResponse looks like:
|
|
// [
|
|
// { timestamp: 1640995200000, value: 356.8 },
|
|
// { timestamp: 1640995210000, value: 534.8 },
|
|
// { timestamp: 1640995220000, value: 481.3 },
|
|
// { timestamp: 1640995230000, value: 437 },
|
|
// { timestamp: 1640995240000, value: 507.3 },
|
|
// { timestamp: 1640995250000, value: 581.2 },
|
|
// { timestamp: 1640995260000, value: 600 }
|
|
// ]
|
|
|
|
console.log(rangeResponse);
|
|
|
|
// Get some information about the state of the timeseries.
|
|
// https://redis.io/commands/ts.info/
|
|
const tsInfo = await client.ts.info('mytimeseries');
|
|
|
|
// tsInfo looks like this:
|
|
// {
|
|
// totalSamples: 1440,
|
|
// memoryUsage: 28904,
|
|
// firstTimestamp: 1641508920000,
|
|
// lastTimestamp: 1641595320000,
|
|
// retentionTime: 86400000,
|
|
// chunkCount: 7,
|
|
// chunkSize: 4096,
|
|
// chunkType: 'uncompressed',
|
|
// duplicatePolicy: 'block',
|
|
// labels: [],
|
|
// sourceKey: null,
|
|
// rules: []
|
|
// }
|
|
|
|
console.log('Timeseries info:');
|
|
console.log(tsInfo);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
|
|
client.close();
|