TS.戴尔

语法
TS.DEL key fromTimestamp toTimestamp
可用:
Redis 堆栈 / TimeSeries 1.6.0
时间复杂度:
O(N),其中 N 是将被删除的数据点的数量

删除给定时间序列的两个时间戳之间的所有样本

例子

必需参数

key

是时间序列的键名称。

fromTimestamp

是范围删除的开始时间戳。

toTimestamp

是范围删除的结束时间戳。

给定的时间戳间隔是闭合的(包括在内),这意味着其时间戳等于fromTimestamptoTimestamp也会被删除。

笔记:

  • 如果 fromTimestamp 早于保留期,则与最大现有时间戳相比,将丢弃删除并返回错误。
  • 从定义了压缩规则的时间序列中删除样本时:
    • 如果受影响的压缩桶的所有原始样本都可用,则根据剩余的原始样本重新计算压缩值,如果删除压缩桶中的所有原始样本,则将其删除。
    • 如果受影响的压缩存储桶的原始样本已过期,则会丢弃删除并返回错误。
  • 从压缩的时间序列中显式删除样本可能会导致原始数据与压缩数据不一致。压缩过程可能会覆盖此类样本。话虽如此,在原始时间序列的保留期之后,从压缩的时间序列中显式删除样本是安全的。

返回值

返回以下回复之一:

  • Integer reply - 已删除的样本数
  • [] 出错(参数无效、键类型错误等),当timestamp早于保留期(与最大现有时间戳相比),或者无法重新计算受影响的压缩存储桶

例子

删除数据点范围

创建特拉维夫和耶路撒冷的温度时间序列,然后添加不同的温度样本。

127.0.0.1:6379> TS.CREATE temp:TLV LABELS type temp location TLV
OK
127.0.0.1:6379> TS.CREATE temp:JLM LABELS type temp location JLM
OK
127.0.0.1:6379> TS.MADD temp:TLV 1000 30 temp:TLV 1010 35 temp:TLV 1020 9999 temp:TLV 1030 40
1) (integer) 1000
2) (integer) 1010
3) (integer) 1020
4) (integer) 1030
127.0.0.1:6379> TS.MADD temp:JLM 1005 30 temp:JLM 1015 35 temp:JLM 1025 9999 temp:JLM 1035 40
1) (integer) 1005
2) (integer) 1015
3) (integer) 1025
4) (integer) 1035

Delete the range of data points for temperature in Tel Aviv.

127.0.0.1:6379> TS.DEL temp:TLV 1000 1030
(integer) 4

See also

TS.ADD

RedisTimeSeries


RATE THIS PAGE
Back to top ↑