A Sentry extension to support Alicloud Tablestore (OTS) as a node storage backend.
Project description
sentry-tablestore
An extension for Sentry which support Alicloud Tablestore (OTS) as a node storage backend.
Objectives
Sentry provides an abstraction called ‘nodestore’ which is used for storing key/value blobs.
It's implemented by BigTable (a service of Google Cloud Platform) in sentry.io.
But for self-hosted Sentry, it's implemented by Django default. This means the large amounts of key-value data were stored in the SQL database.
It's horrible, it can lead to rapid growth in the size of SQL database, and make it difficult to clean up.
For more details from https://forum.sentry.io/t/postgres-nodestore-node-table-124gb/12753/3 .
Therefore, this project came into being. It provides a new solution in addition to Django Database or BigTable, that is Alicloud Tablestore (OTS).
Features
- Implement the TablestoreNodeStorage backend.
- Support migrating data from current nodestore backend to the new one.
Prerequisites
Sentry 21.9.0 or higher.
An Tablestore instance of Alibaba Cloud (International) or Aliyun (China).
Installation
To install, simply add sentry-tablestore
to your requirements.txt for your Sentry environment (or pip install sentry-tablestore
).
Configuration
To configure Sentry to use this module, set sentry_tablestore.nodestore.backend.TablestoreNodeStorage
to your SENTRY_NODESTORE
in your sentry.conf.py, like this:
from datetime import timedelta
SENTRY_NODESTORE = 'sentry_tablestore.nodestore.backend.TablestoreNodeStorage'
SENTRY_NODESTORE_OPTIONS = {
# Get help from https://www.alibabacloud.com/help/tablestore/latest/python-sdk-initialization
'end_point': '',
'access_key_id': '',
'access_key_secret': '',
}
Then, add any applicable configuration options. Depending on your environment, and especially if you are running Sentry in containers, you might consider using python-decouple so you can set these options via environment variables.
Example Configuration
from datetime import timedelta
SENTRY_NODESTORE = 'sentry_tablestore.nodestore.backend.TablestoreNodeStorage'
SENTRY_NODESTORE_OPTIONS = {
# Auto clean data for 90 days from its creation
'default_ttl': timedelta(days=90),
'automatic_expiry': True,
# Get help from https://www.alibabacloud.com/help/tablestore/latest/python-sdk-initialization
'end_point': 'https://sentry-self-hosted.cn-shanghai.vpc.tablestore.aliyuncs.com',
'access_key_id': 'LTAI****************LYhz',
'access_key_secret': 'MKs5**********************6t0J',
# A boolean whether to enable zlib-compression, or the string "zstd" to use zstd.
# Use zstd compression to override the default zlib for more compact and more efficient
'compression': 'zstd'
}
# Set log-level for debugging
# Make sure LOGGING.disable_existing_loggers is set to False (in sentry/conf/server.py)
import logging
logger = logging.getLogger('sentry_tablestore.kvstore.tablestore') # Logger of this project
logger.setLevel(logging.DEBUG)
logger = logging.getLogger('tablestore-client') # Logger of Alicloud SDK
logger.setLevel(logging.DEBUG)
Bootstrap
Execute the command to bootstrap tablestore (create or update the table):
sentry upgrade --with-nodestore
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sentry-tablestore-1.0.0b2.post1.tar.gz
.
File metadata
- Download URL: sentry-tablestore-1.0.0b2.post1.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 450041ffa28afedddb815302d103fe53fda105e59c62bbb9d7e73ec10c6daf4b |
|
MD5 | c0dfd1f99cb95dffc002560245c44ba8 |
|
BLAKE2b-256 | b3d791752895431da020150837054466e6cef862a572252aa28780e20a77f1d7 |
File details
Details for the file sentry_tablestore-1.0.0b2.post1-py3-none-any.whl
.
File metadata
- Download URL: sentry_tablestore-1.0.0b2.post1-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9b3b0464d33b364e11a112a4f3a91dd8ac19b264623a358af0459bf78cd456c |
|
MD5 | c08f9e5d22dbbbb503bb80fe5082d371 |
|
BLAKE2b-256 | 3cd5b651c27c431841eea012d5ee860fa72e5b7206a5da2eaad9826967f542f1 |