RedisTimeSeries
redistimeseries-py
Python

RedisTimeSeries python client

Last updated Aug 12, 2024
99
Stars
21
Forks
14
Issues
0
Stars/day
Attention Score
13
Language breakdown
No language data available.
โ–ธ Files click to expand
README

license PyPI version CircleCI GitHub issues Codecov Language grade: Python Known Vulnerabilities

redistimeseries-py

Forum Discord

Deprecation notice

As of redis-py 4.0.0 this library is deprecated. It's features have been merged into redis-py. Please either install it from pypy or the repo.


redistimeseries-py is a package that gives developers easy access to RedisTimeSeries module. The package extends redis-py's interface with RedisTimeSeries's API.

Installation

$ pip install redistimeseries

Development

  • Create a virtualenv to manage your python dependencies, and ensure it's active.
-v venv
  • Install pypoetry to manage your dependencies.
install poetry
  • Install dependencies.
install

tox runs all tests as its default target. Running tox by itself will run unit tests. Ensure you have a running redis, with the module loaded.

API

The complete documentation of RedisTimeSeries's commands can be found at RedisTimeSeries's website.

Usage example

# Simple example
from redistimeseries.client import Client
rts = Client()
rts.create('test', labels={'Time':'Series'})
rts.add('test', 1, 1.12)
rts.add('test', 2, 1.12)
rts.get('test')
rts.incrby('test',1)
rts.range('test', 0, -1)
rts.range('test', 0, -1, aggregati, bucketsizemsec=10)
rts.range('test', 0, -1, aggregati, bucketsizemsec=10)
rts.info('test').dict

Example with rules

rts.create('source', retention_msecs=40) rts.create('sumRule') rts.create('avgRule') rts.createrule('source', 'sumRule', 'sum', 20) rts.createrule('source', 'avgRule', 'avg', 15) rts.add('source', '*', 1) rts.add('source', '*', 2) rts.add('source', '*', 3) rts.get('sumRule') rts.get('avgRule') rts.info('sumRule').dict

Further notes on back-filling time series

Since RedisTimeSeries 1.4 we've added the ability to back-fill time series, with different duplicate policies.

The default behavior is to block updates to the same timestamp, and you can control it via the duplicatepolicy argument. You can check in detail the duplicate policy documentation.

Bellow you can find an example of the LAST duplicate policy, in which we override duplicate timestamps with the latest value:

from redistimeseries.client import Client
rts = Client()
rts.create('last-upsert', labels={'Time':'Series'}, duplicate_policy='last')
rts.add('last-upsert', 1, 10.0)
rts.add('last-upsert', 1, 5.0)

should output [(1, 5.0)]

print(rts.range('last-upsert', 0, -1))

License

BSD 3-Clause

ยฉ 2026 GitRepoTrend ยท RedisTimeSeries/redistimeseries-py ยท Updated daily from GitHub