This release is a pre-release and may not be stable for production use.
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
切换导出格式
使用 Flask.config 配置项 OTEL_EXPORTER 切换 zipkin 和 jaeger
设置 service.name
Flask.config配置项SERVICE_NAME- 环境变量,
JAEGER_SERVICE_NAME(以支持jaeger-operator)
设置其他参数
所有 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
Release files for modern-flask 202204b1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| modern-flask-202204b1.tar.gz | 9.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| modern_flask-202204b1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:19.1 kB
Release files / modern-flask-202204b1.tar.gz
| Download URL | modern-flask-202204b1.tar.gz |
|---|---|
| Size | 9.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c3eab83164357d017a15e6ce4087c292032559c3dbace4f1f9c0a180b3a54558
|
|
BLAKE2b-256 checksum How to use checksums |
9492cd43be5d9a6e39f31501b2809ca74f117529a143617c1af7f7cbc70efaa9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.12
|
Release files / modern_flask-202204b1-py3-none-any.whl
| Download URL | modern_flask-202204b1-py3-none-any.whl |
|---|---|
| Size | 9.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
568696b4f75b3fe927585f258db43a529e93d0431b02912954a7f3ea371b9643
|
|
BLAKE2b-256 checksum How to use checksums |
34b26a9c7fa86357fd1c7371bacbf3d96ea04bc646306d7c8d98a61a03c40085
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.12
|