modern flask framework
Project description
Modern Flask
性能基准
以 gunicorn 为服务器,以 --workers 1 --threads 1 为性能基准
目的是为了在容器环境下,以 1 CPU 为基准进行调度
配置
Flask.config
使用环境变量 CONFIG_SOURCE 来判断配置来源,只支持 Python 类型
- 本地文件
xxxx.py
- Kubernetes 资源
kubernetes://[NAMESPACE]/configmaps/[NAME]/[KEY]kubernetes://[NAMESPACE]/secrets/[NAME]/[KEY]kubernetes://configmaps/[NAME]/[KEY]kubernetes://secrets/[NAME]/[KEY]
- HTTP 资源
http://xxxxx.xxxx/xxxx.pyhttps://xxxxx.xxxx/xxxx.py
默认为本地文件 config.py
可观测性
可观测性框架基于 OpenTelemetry,使用 Zipkin 或者 Jaeger 作为导出格式, 默认启用了对以下组件的观测
- logging
- flask
- sqlalchemy
- redis
切换导出格式
使用 环境变量 OTEL_EXPORTER 切换 zipkin 和 jaeger
设置 Kubernetes 相关环境变量
[
{
name: 'OTEL_EXPORTER',
value: 'zipkin',
},
{
name: 'OTEL_EXPORTER_ZIPKIN_ENDPOINT',
value: 'http://zipkin.observability:9411/api/v2/spans',
},
{
name: 'NODE_NAME',
valueFrom: {
fieldRef: {
fieldPath: 'spec.nodeName',
},
},
},
{
name: 'POD_NAME',
valueFrom: {
fieldRef: {
fieldPath: 'metadata.name',
},
},
},
{
name: 'POD_NAMESPACE',
valueFrom: {
fieldRef: {
fieldPath: 'metadata.namespace',
},
},
},
{
name: 'SERVICE_NAME',
value: name,
},
{
name: 'CONFIG_SOURCE',
value: 'kubernetes://secrets/' + name + '-cfg/config.py',
},
{
name: 'WORKLOAD_TYPE',
value: type,
}
]
设置其他参数
所有 Flask.config 中,以 OTEL_ 开头的配置会自动写入环境变量,用以配置 OpenTelemetry 的其他组件
详细参考:
- https://opentelemetry-python.readthedocs.io/en/latest/exporter/zipkin/zipkin.html
- https://opentelemetry-python.readthedocs.io/en/latest/exporter/jaeger/jaeger.html
- https://opentelemetry-python-contrib.readthedocs.io/en/latest/instrumentation/logging/logging.html
指标
使用标准 Prometheus 库,暴露于 /metrics 路径下
数据库
使用 SQLAlchemy 库
Engine 配置来自于 Flask.config, 前缀 DATABASE_ENGINE_, 参考配置如下:
DATABASE_ENGINE_URL = "sqlite+pysqlite:///:memory:"
DATABASE_ENGINE_ECHO = True
DATABASE_ENGINE_FUTURE = True
Session 配置来自于 Flask.config, 前缀 DATABASE_SESSION_, 参考配置如下:
DATABASE_SESSION_AUTOFLUSH = False
Redis
使用 Redis 库, 配置来自于 Flask.config, 前缀 REDIS_, 参考配置如下:
REDIS_HOST = "127.0.0.1"
详细参考 https://github.com/redis/redis-py/blob/12c17bfc436ea6784bbc8b2d327d981520858eb7/redis/client.py#L853
存储
目前只支持 腾讯云 COS 和 阿里云 OSS
配置来自于 Flask.config,前缀 STORAGE_,参考配置如下
腾讯云 COS
STORAGE_VENDOR = "cos"
STORAGE_SECRET_ID = "xxxxxxxxx"
STORAGE_SECRET_KEY = "xxxxxxxxx"
STORAGE_REGION = "ap-guangzhou"
STORAGE_ENDPOINT = "xxx.xxx.com"
阿里云 OSS
STORAGE_VENDOR = "oss"
STORAGE_ACCESS_KEY_ID = ""
STORAGE_ACCESS_KEY_SECRET = ""
STORAGE_ENDPOINT = ""
STORAGE_BUCKET = ""
详细参考 https://pypi.org/project/oss2/
Celery
使用 Flask.config 配置 CELERY_ 前缀参数
许可证
Guo Y.K., MIT License
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file modern-flask-202207b1.tar.gz.
File metadata
- Download URL: modern-flask-202207b1.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30103bb223bb74bc18612d533e654d8cfe1bcd65508cb82d4d9c9de62b477b9e
|
|
| MD5 |
e6f8ad2a3b9893b39b6be52de2c3c196
|
|
| BLAKE2b-256 |
f9be65122feb40a036d8daa7a56cee9e38bf8dfaf836d60fbb0fd8d65f8ceff3
|
File details
Details for the file modern_flask-202207b1-py3-none-any.whl.
File metadata
- Download URL: modern_flask-202207b1-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d49161af56c366892704968ca015b1c393d2287e00d280deac48625a25397e3f
|
|
| MD5 |
210ee01d3c7c8f9a4f6fac515d0ed4db
|
|
| BLAKE2b-256 |
51d8a2ac26f43e96a0718eb541283f1bf430950dcdd8d99d36ab68c9af98459e
|