- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在向我的 Web 应用程序添加一个基于 Flask 的 API,以控制某些网络自动化功能的启动和停止。我遇到了一个奇怪的行为,即 Flask-Executor .submit()
方法调用的函数似乎无法从数据库中获取新的或更新的数据。
我知道这个问题非常复杂,所以感谢所有分享时间和意见的人。有关我的项目结构的概述,请参阅此问题的结尾。
flask-executor documentation说:
When calling
submit()
ormap()
Flask-Executor will wrap ThreadPoolExecutor callables with a copy of both the current application context and current request context
我不太完全理解上下文的含义,但我觉得这可能是一个很好的提示,说明为什么这应该或不应该起作用。 (顺便说一下,我正在使用 ThreadPoolExecutor)。我假设 db
SQLAlchemy 对象是应用程序上下文的一部分,因此 db
的副本应该在执行程序函数中可用。这似乎不是这种情况,因为我仍然必须在包含执行程序调用的函数的文件中import db
,正如您稍后将在本文中看到的那样。
我的前端有简单的开始和停止按钮,它们将 POST 发送到以下 API 路由:
file: app/api.py
from flask import request
from flask_login import login_required
from app import app, db, executor
from app.models import Project
from datetime import datetime
from automation.Staging import control
@app.route('/api/staging/control', methods=['POST'])
@login_required
def staging_control():
data = request.json
project_id = data['project-id']
action = data['staging-control']
project = Project.query.get(project_id)
sp = project.staging_profile
current_status = sp.status
if action == 'start':
if current_status == 'STARTED':
return {'response': 200, 'message': 'Job already running!'}
else:
sp.status = 'STARTED'
db.session.commit()
# The executor only spawns the thread if the task status was not already started.
executor.submit(control.start_staging, project_id)
elif action == 'stop':
if current_status == 'STARTED':
sp.status = 'STOPPED'
db.session.commit()
return {'response' : 200, 'message': 'OK'}
作业的状态存储在数据库模型中。如果 POSTed start
操作,则会更新数据库模型的状态列。同样,如果 stop
操作被发布,数据库模型的状态也会更新。
执行器对 control.start_staging
的函数调用生成一个线程,该线程开始一个无限循环,该循环执行一些工作然后休眠 X 秒。在每次循环开始时,我都试图检查数据库模型的状态列,以确定是否要中断循环并关闭线程。
启动线程工作得很好。数据库模型得到更新,执行程序生成线程,我的 while 循环开始。
从我的前端发送 stop
Action 也很好。数据库中的状态设置为 STOPPED
,我可以在我的数据库 shell 中通过手动查询看到这一点。
然而,最初由执行者启动的control.start_staging
函数仍然认为status
设置为STARTED
,尽管它实际上会在线程运行期间的某个时间更新为 STOPPED
。我试图从线程内部尽可能多地获取更新值。我看过this similar question .
这里是 control.start_staging
函数。我在下面的摘录中分享了一些我尝试获取更新状态的不同方法作为评论:
file: automation/Staging/control.py
from app import db
from app.models import Project, Staging_Profile
from app.config import STAGING_DURATION_MINS
from datetime import datetime, timedelta
from time import sleep
def start_staging(project_id):
project = Project.query.get(project_id)
print(f"Received START for project {project.project_name}")
sp = project.staging_profile
sp.last_activity = datetime.utcnow()
db.session.commit()
status = sp.status
# Staging Loop Start
while True:
# This just serves as a force-stop if the job runs for more than STAGING_DURATION_MINUTES minutes.
if sp.last_activity + timedelta(minutes=STAGING_DURATION_MINS) > datetime.utcnow():
print(f"Status is: {sp.status}")
# ATTEMPT 1: does not get updated data
# status = sp.status
# ATTEMPT 2: does not get updated data
# status = Staging_Profile.query.get(project.staging_profile_id).status
# ATTEMPT 3: does not get updated data
all_profiles = db.session.query(Staging_Profile).all()
this_profile = [profile for profile in all_profiles if profile.id == sp.id][0]
if this_profile.status == 'STOPPED':
print("Status is STOPPED. Returning")
break
else:
print(f"Status is {this_profile.status}")
# Do work
do_some_stuff()
else:
break
sleep(5)
return
现在,真正令人费解的是我可以从执行程序函数内部将数据写入数据库。 sp.last_activity = datetime.utcnow()
后跟 db.session.commit()
这行成功写入线程启动时的当前时间。
我以非常模块化的方式构建了这个应用程序,我觉得这也许就是问题的根源。
以下是我的应用程序结构相关部分的概述:
app/
├─ __init__.py # This is where my db & executor are instantiated
├─ api.py # This is where the /api/staging/control route lives
├─ models.py # This holds my SQLAlchemy DB classes
├─ routes.py # This holds my regular front-end routes
├─ config.py # General config parameters
automation/
├─ Staging/
│ ├─ control.py # This is where the function passed to the executor is defined
│ ├─ __init__.py # Empty
├─ __init__.py # Empty
再次感谢。当我找到这个问题时,我会发布解决方案或解决方法。
最佳答案
使用更新
Project.query.filter_by(id=project_id).update({
'last_activity': datetime.utcnow()
})
关于python - Flask-Executor 和 Flask-SQLAlchemy : Can't get updated data from DB inside of executor function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66896139/
我当前正在存储给定产品的上传图像,如下所示: class Product(db.Model): images= db.ListProperty(db.Blob) # More prop
每次对架构或新迁移文件进行更改时,我都会运行以下命令: rake db:drop db:create db:migrate db:seed 是否有预先构建的等效方法来执行此操作? 我从我读到的内容中想
在 android 中使用房间作为数据库。当我试图在 sqlviewer 中查看数据时,在数据库文件中找不到表Myapp.db 文件为空。数据/data/packageName/databases/M
我搜索并尝试了很多次,但没有找到我的答案。我有一些用小 cucumber (在 Rails 项目中)编写的项目的功能文件。所有步骤都已定义,如果我单独启动它们,功能本身运行得很好。我可以将所有场景与我
您必须承认,对于 Rails 和数据库的新手来说,rubyonrails.org 上的官方解释使所有这四个任务听起来完全一样。引用: rake db:test:clone Recreate the
当我尝试运行时: heroku run rake db:drop db:create db:migrate 我得到错误: Running rake db:drop attached to termin
rake db:migrate 和 rake db:reset 之间的区别对我来说非常清楚。我不明白的是 rake db:schema:load 与前两者有何不同。 只是为了确保我在同一页面上: ra
我们都知道,我们可以使用 Azure 函数(使用 out 参数或使用 return)在 cosmos DB 中一次保存一个文档,例如: object outputDocument = new { i
我有一个包含 60 多个表的 mysql 数据库。这是在我将 joomla 版本 2.5.3 从本地灯移植到网络服务器时构建的。 我运行 mysql-db: 移植后我发现我无法登录 amdin 区域。
我想轻松地将现有数据库迁移到 Azure 托管。在我的项目中,我使用 Entity Framework DB First。有什么经验教训或例子可以说明如何做到这一点吗? 最佳答案 您本地使用什么数据库
所以,我一直在使用 MagicalRecord 开发 iPad 应用程序,最近在转移到自动迁移商店后我遇到了一些问题。我需要将我的 .db 文件从一个设备同步到另一个设备,所以我需要所有数据都在 .d
自从我在 Heroku 上部署并希望与生产相匹配后,我最近切换到 postgres 来开发一个 Rails 应用程序。当我将数据库名称设置为“postgres”时,我的应用程序安装了 Postgres
我使用 oledb 提供程序(SQLOLEDB 和 SQL Native OLEDB 提供程序)创建了一个示例应用程序。 案例 1:提供者 = SQLOLEDB hr = ::CoInitialize
我正在为 NodeJs 使用 mongodb 驱动程序,其中有 3 个方法: 1) db.collection.insert 2) 数据库.collection.insertOne 3) db.col
我是 datomic 的新手,我仍在努力弄清楚系统是如何构建的。特别是,我不明白 :db.part/db 扮演什么角色,因为每次安装架构时似乎都需要它。有人可以解释一下这一切意味着什么吗? (需要 '
Berkeley DB 是否有空间索引,例如 R-tree? 最佳答案 有人问the same question on the Oracle forum .还没有甲骨文回答。但答案是否定的,它没有任何
请解释一下这是什么意思 $db = new DB(DB_DRIVER, DB_HOSTNAME, DB_USERNAME, DB_PASSWORD, DB_DATABASE); 它给了我一个错误 "E
berkeley-db-je 的最新版本是什么? 来自 oracle , 为 7.5。 但来自maven存储库,它是 18.3.12。 有没有人知道更多的细节? 最佳答案 Berkeley DB Ja
我不明白查询构建器的替换和更新之间的区别。尤其是替换文档... This method executes a REPLACE statement, which is basically the SQL
看起来 BerkeleyDB 被 Oracle 收购了,它没有在其网站上发布源代码? 最佳答案 Sleepycat 于 2006 年被 Oracle 收购。该产品继续在原始开源许可下可用,并继续得到增
我是一名优秀的程序员,十分优秀!