Heroku 应用程序崩溃H10 错误与 psiturk 实验

问题描述

我正在尝试使用 psiturk 在 Heroku 应用程序上进行实验。我之前已经让它工作了(~2019 年),但最近(自 2021 年以来)我无法在 Heroku 上运行 psiturk 而不会导致应用程序崩溃,即使使用完全相同的代码也是如此。

以下是我目前采取的一些步骤:

  • 实验在本地运行,我已经确认可以从 Heroku 应用连接到我的 postgres 数据库
  • 我还确认 Heroku 正在动态绑定端口,而不是使用 config.txt 中的设置。
  • 在 Heroku bash 环境中,我能够启动 psiturk 并打开服务器而不会导致应用程序崩溃,但是在加载沙箱 HIT 链接的调试时应用程序会崩溃。

Heroku 应用程序使用 python 和节点构建包,procfile 指向 python 脚本。我正在使用 psiturk 2.3.11 和 python 3.8.8,并且我已按照 psiturk 文档中的步骤设置配置变量。

这是 Heroku 日志:

2021-03-29T16:44:16.409840+00:00 app[api]: Starting process with command `bash` by user danibassettlab@gmail.com
2021-03-29T16:44:39.951733+00:00 heroku[run.7975]: State changed from starting to up
2021-03-29T16:44:40.507250+00:00 heroku[run.7975]: Awaiting client
2021-03-29T16:44:40.583037+00:00 heroku[run.7975]: Starting process with command `bash`
2021-03-29T17:04:33.678083+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/pub/ad?assignmentId=debug98GDW3&hitId=debug6JU43S&workerId=debugG38KJ9&mode=debug" host=jeni-docker-test.herokuapp.com request_id=2bdae5da-5f59-475e-8ca6-9ea9a380d5c0 fwd="70.16.141.206" dyno= connect= service= status=503 bytes= protocol=http
2021-03-29T17:04:33.870529+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=jeni-docker-test.herokuapp.com request_id=828565a0-923b-4283-b9de-17b4cf890459 fwd="70.16.141.206" dyno= connect= service= status=503 bytes= protocol=http

以及我正在使用的 config.txt(已删除帐户信息)

[HIT Configuration]
title = Key Sequence Learning Study
description = Psychology Study in which you will learn to quickly press keys to respond to squares on the screen.
lifetime = 96
us_only = true
approve_requirement = 95
ad_group = default_network
psiturk_keywords = network
organization_name = University of Pennsylvania
browser_exclude_rule = mobile,tablet
allow_repeats = false
server_timeout = 240

[Database Parameters]
database_url = postgres:<my_database_url>
table_name = participants_tmp

[Server Parameters]
host = 0.0.0.0
port = 22362
cutoff_time = 30
logfile = server.log
loglevel = 2
debug = false
login_username = examplename
login_pw = examplepassword
threads = 1
secret_key = 'this is my secret key which is hard to guess,i should change this'

[Task Parameters]
experiment_code_version = 'behavioral_pilot_v6_delay'
num_conds = 1
num_counters = 1

[Shell Parameters]
launch_in_sandBox_mode = true
bonus_message = "Bonus for Bassett Lab Experiment. Thanks for participating!"


use_psiturk_ad_server = false
ad_location = https://jeni-docker-test.herokuapp.com/pub

崩溃发生在将任何内容记录到实验文件夹中的 psiturk server.log 文件之前。

对下一步有什么建议吗?

解决方法

较新版本的 SQLAlchemy 删除了已弃用的方言名称 postgres。您必须使用 postgresql。在您的数据库参数中,您有:

database_url = postgres:<my_database_url>

要解决此问题,请将 URL 中的 postgres:// 重命名为 postgresql://

或者考虑将 sslmode='require' 添加到您的数据库 URL。

,

我在 psiturk google group 上找到了答案。 Psiturk 2 需要设置参数 ON_HEROKU(我已经设置了 ON_CLOUD 而不是。正在运行

heroku config:set ON_HEROKU=1

修复了问题。

或者你可以升级到 psiturk 3