Configuration
The Dallinger configuration module provides tools for reading and writing
configuration parameters that control the behavior of an experiment. To use the
configuration, first import the module and get the configuration object:
import dallinger
config = dallinger.config.get_config()
You can then get and set parameters:
config.get("duration")
config.set("duration", 0.50)
When retrieving a configuration parameter, Dallinger will look for the parameter
first among environment variables, then in a config.txt in the experiment
directory, and then in the .dallingerconfig file, using whichever value
is found first. If the parameter is not found, Dallinger will use the default.
If a value is extracted from the environment or a config file it will be converted
to the correct type. You can also specify a value of file:/path/to/file to
use the contents of that file on your local computer.
Built-in configuration
Built-in configuration parameters, grouped into categories:
General
modeunicodeRun the experiment in this mode. Options include
debug(local testing),sandbox(MTurk sandbox), andlive(MTurk).logfileunicodeWhere to write logs.
loglevelunicodeA number between 0 and 4 that controls the verbosity of logs, from
debugtocritical. Note thatdallinger debugignores this setting and always runs at 0 (debug).whimsicalbooleanWhat’s life without whimsy? Controls whether email notifications sent regarding various experiment errors are whimsical in tone, or more matter-of-fact.
dallinger_develop_directoryunicodeThe directory on your computer to be used to hold files and symlinks when running
dallinger develop. Defaults to~/dallinger_develop(a folder nameddallinger_developinside your home directory).dashboard_passwordunicodeAn optional password for accessing the Dallinger Dashboard interface. If not specified, a random password will be generated.
dashboard_userunicodeAn optional login name for accessing the Dallinger Dashboard interface. If not specified
adminwill be used.protected_routesunicode - JSON formattedAn optional JSON array of Flask route rule names which should be made inaccessible. Example:
protected_routes = ["/participant/<participant_id>", "/network/<network_id>", "/node/<int:node_id>/neighbors"]
Accessing routes included in this list will raise a PermissionError and no data will be returned.
enable_global_experiment_registrybooleanEnable a global experiment id registration. When enabled, the
collectAPI check this registry to see if an experiment has already been run and reject re-running an experiment if it has been.languageunicodeA
gettextlanguage code to be used for the experiment.
Recruitment (General)
activate_recruiter_on_startbooleanA boolean on whether recruitment should start automatically when the experiment launches. If set to
falsethe user has to manually initialize recruitment (e.g. via the Prolific panel). Defaults totrue.auto_recruitbooleanA boolean on whether recruitment should be automatic.
browser_exclude_ruleunicode - comma separatedA set of rules you can apply to prevent participants with unsupported web browsers from participating in your experiment. Valid exclustion values are:
mobile
tablet
touchcapable
pc
bot
recruiterunicodeThe recruiter class to use during the experiment run. While this can be a full class name, it is more common to use the class’s
nicknameproperty for this value; for examplemturk,prolific,cli,bots, ormulti.NOTE: when running in debug mode, the HotAir (
hotair) recruiter will always be used. The exception is if the--botsoption is passed todallinger debug, in which case the BotRecruiter will be used instead.recruitersunicode - custom formatWhen using multiple recruiters in a single experiment run via the
multisetting for therecruiterconfig key,recruitersallows you to specify which recruiters you’d like to use, and how many participants to recruit from each. The special syntax for this value is:recruiters = [nickname 1]: [recruits], [nickname 2]: [recruits], etc.For example, to recruit 5 human participants via MTurk, and 5 bot participants, the configuration would be:
recruiters = mturk: 5, bots: 5
Amazon Mechanical Turk Recruitment
aws_access_key_idunicodeAWS access key ID.
aws_secret_access_keyunicodeAWS access key secret.
aws_regionunicodeAWS region to use. Defaults to
us-east-1.ad_groupunicodeObsolete. See
group_name.assign_qualificationsbooleanA boolean which controls whether an experiment-specific qualification (based on the experiment ID), and a group qualification (based on the value of
group_name) will be assigned to participants by the recruiter. This feature assumes a recruiter which supports qualifications, like theMTurkRecruiter.group_nameunicodeAssign a named qualification to workers who complete a HIT.
mturk_qualification_blocklistunicode - comma seperatedComma-separated list of qualification names. Workers with qualifications in this list will be prevented from viewing and accepting the HIT.
mturk_qualification_requirementsunicode - JSON formattedA JSON list of qualification documents to pass to Amazon Mechanical Turk.
titleunicodeThe title of the HIT on Amazon Mechanical Turk.
descriptionunicodeThe description of the HIT on Amazon Mechanical Turk.
keywordsunicodeA comma-separated list of keywords to use on Amazon Mechanical Turk.
lifetimeintegerHow long in hours that your HIT remains visible to workers.
durationfloatHow long in hours participants have until the HIT will time out.
disable_when_duration_exceededbooleanWhether to disable recruiting and expire the HIT when the duration has been exceeded. This only has an effect when
clock_onis enabled.us_onlybooleanControls whether this HIT is available only to MTurk workers in the U.S.
base_paymentfloatBase payment in U.S. dollars. All workers who accept the HIT are guaranteed this much compensation.
approve_requirementintegerThe percentage of past MTurk HITs that must have been approved for a worker to qualify to participate in your experiment. 1-100.
organization_nameunicodeObsolete.
Preventing Repeat Participants on MTurk
If you set a group_name and assign_qualifications is also set to
true, workers who complete your HIT will be given an MTurk qualification for
your group_name. In the future, you can prevent these workers from
participating in a HIT with the same group_name by including that name in
the qualification_blacklist configuration. These four configuration keys
work together to create a system to prevent recuiting workers who have already
completed a prior run of the same experiment.
Prolific Recruitment
titleunicodeThe title of the Study on Prolific
descriptionunicodeThe description of the Study on Prolific
prolific_api_tokenunicodeYour Prolific API token
These are requested from Prolific via email or some other non-programmatic channel, and should be stored in your
~/.dallingerconfigfile.prolific_api_versionunicodeThe version of the Prolific API you’d like to use
The default (“v1”) is defined in global_config_defaults.txt
prolific_estimated_completion_minutesintEstimated duration in minutes of the experiment or survey
prolific_recruitment_configunicode - JSON formattedJSON data to add additional recruitment parameters
Since some recruitment parameters are complex and are defined with relatively complex syntax, Dallinger allows you to define this configuration in raw JSON. The parameters you would typically specify this way include:
device_compatibilityperipheral_requirementseligibility_requirements
See the Prolific API Documentation for details.
Configuration can also be stored in a separate JSON file, and included by using the filename, prefixed with
file:, as the configuration value. For example, to use a JSON file calledprolific_config.json, you would first create this file, with valid JSON as contents:{ "eligibility_requirements": [ { "attributes": [ { "name": "white_list", "value": [ # worker ID one, # worker ID two, # etc. ] } ], "_cls": "web.eligibility.models.CustomWhitelistEligibilityRequirement" } ] }
You can also specify the devices you expect the participants to have, e.g.:
{ "eligibility_requirements": […], "device_compatibility": ["desktop"], "peripheral_requirements": ["audio", "microphone"] }Supported devices are
desktop,tablet, andmobile. Supported peripherals areaudio,camera,download(download additional software to run the experiment), andmicrophone.You would then include this file in your overall configuration by adding the following to your config.txt file:
prolific_recruitment_config = file:prolific_config.json
A word of caution: while it is technically possible to specify other recruitment values this way (for example,
{"title": "My Experiment Title"}), we recommend that you stick to the standard key = value format ofconfig.txtwhenever possible, and leaveprolific_recruitment_configfor complex requirements which can’t be configured in this simpler way.
Deprecated since version 10.0.0:
prolific_maximum_allowed_minutesintMax time in minutes for a participant to finish the submission
Has no effect as it is currently ignored by the Prolific API.
Note
Prolific will use the currency of your researcher account, and convert automatically to the participant’s currency.
Email Notifications
See Email Notification Setup for a much more detailed explanation of these values and their use.
contact_email_on_errorunicodeThe email address used as the recipient for error report emails, and the email displayed to workers when there is an error.
dallinger_email_addressunicodeAn email address for use by Dallinger to send status emails.
smtp_hostunicodeHostname and port of a mail server for outgoing mail. Defaults to
smtp.gmail.com:587smtp_usernameunicodeUsername for outgoing mail host.
smtp_passwordunicodePassword for the outgoing mail host.
Deployment Configuration
database_urlunicodeURI of the Postgres database.
database_sizeunicodeSize of the database on Heroku. See Heroku Postgres plans.
dyno_typeunicodeHeroku dyno type to use. See Heroku dynos types.
redis_sizeunicodeSize of the redis server on Heroku. See Heroku Redis.
num_dynos_webintegerNumber of Heroku dynos to use for processing incoming HTTP requests. It is recommended that you use at least two.
num_dynos_workerintegerNumber of Heroku dynos to use for performing other computations, or (when deploying via Docker SSH) the number of worker Docker containers.
hostunicodeIP address of the host.
portunicodePort of the host.
clock_onbooleanIf the clock process is on, it will enable a task scheduler to run automated background tasks. By default, a single task is registered which performs a series of checks that ensure the integrity of the database. The configuration option
disable_when_duration_exceededconfigures the behavior of that task.heroku_python_versionunicodeThe python version to be used on Heroku deployments. The version specification will be deployed to Heroku in a runtime.txt file in accordance with Heroku’s deployment API. Note that only the version number should be provided (eg: “2.7.14”) and not the “python-” prefix included in the final runtime.txt format. See Dallinger’s global_config_defaults.txt for the current default version. See Heroku supported runtimes.
heroku_teamunicodeThe name of the Heroku team to which all applications will be assigned. This is useful for centralized billing. Note, however, that it will prevent you from using free-tier dynos.
worker_multiplierfloatMultiplier used to determine the number of gunicorn web worker processes started per Heroku CPU count. Reduce this if you see Heroku warnings about memory limits for your experiment. Default is 1.5
Choosing configuration values
When running real experiments it is important to pick configuration variables that result in a deployment that performs appropriately.
The number of Heroku dynos that are required and their specifications can make a very large difference to how the application behaves.
num_dynos_webThis configuration variable determines how many dynos are run to deal with web traffic. They will be transparently load-balanced, so the more web dynos are started the more simultaneous HTTP requests the stack can handle. If an experiment defines the
channelvariable to subscribe to websocket events then all of these callbacks happen on the dyno that handles the initial/launchPOST, so experiments that use this functionality heavily receive significantly less benefit from increasingnum_dynos_web. The optimum value differs between experiments, but a good rule of thumb is 1 web dyno for every 10-20 simultaneous human users.num_dynos_workerWorkers are dynos that pull tasks from a queue and execute them in the background. They are optimized for many short tasks, but they are also used to run bots which are very long-lived. Each worker can run up to 20 concurrent tasks, however they are co-operatively multitasked so a poorly behaving task can cause all others sharing its host to block. When running with bots, you should always pick a value of
num_dynos_worker` that is at least ``0.05*number_of_bots, otherwise it is guaranteed to fail. In practice, there may well be experiment-specific tasks that also need to execute, and bots are more performant on underloaded dynos, so a better heuristic is0.25*number_of_bots.dyno_typeThis determines how powerful the heroku dynos started by Dallinger are. It is applied as the default for both web and worker dyno types. The minimum recommended is
standard-1x, which should be sufficient for experiments that do not rely on real-time coordination, such as Bartlett (1932), stories. Experiments that require significant power to process websocket events should consider the higher levels,standard-2x,performance-mandperformance-l. In all but the most intensive experiments, eitherdyno_typeornum_dynos_webshould be increased, not both. Seedyno_type_webanddyno_type_workerbelow for information about more specific settings.dyno_type_webThis determines how powerful the heroku web dynos are. It applies only to web dynos and will override the default set in
dyno_type. Seedyno_typeabove for details on specific values.dyno_type_workerThis determines how powerful the heroku worker dynos are. It applies only to worker dynos and will override the default set in
dyno_type.. Seedyno_typeabove for details on specific values.redis_sizeA larger value for this increases the number of connections available on the redis dyno. This should be increased for experiments that make substantial use of websockets. Values are
premium-0topremium-14. It is very unlikely that values higher thanpremium-5are useful.durationThe duration parameter determines the number of hours that an MTurk worker has to complete the experiment. Choosing numbers that are too short can cause people to refuse to work on a HIT. A deadline that is too long may give people pause for thought as it may make the task seem underpaid. Set this to be significantly above the total time from start to finish that you’d expect a user to take in the worst case.
base_paymentThe amount of US dollars to pay for completion of the experiment. The higher this is, the easier it will be to attract workers.
Docker Deployment Configuration
docker_image_base_nameA string that will be used to name the docker image generated by this experiment.
Defaults to the experiment directory name (
bartlett1932,chatroometc).To enable repeatability a generated docker image can be pushed to a registry.
To this end the registry needs to be specified in the
docker_image_base_name. For example:ghcr.io/<GITHUB_USERNAME>/<GITHUB_REPOSITORY>/<EXPERIMENT_NAME>docker.io/<DOCKERHUB_USERNAME>/<EXPERIMENT_NAME>
docker_image_nameThe docker image name to use for this experiment.
If present, the code in the current directory will not be used when deploying. The specified image will be used instead.
Example:
ghcr.io/dallinger/dallinger/bartlett1932@sha256:ad3c7b376e23798438c18aae6e0136eb97f5627ddde6baafe1958d40274fa478docker_volumesAdditional list of volumes to mount when deploying using docker.
Example:
/host/path:/container_path,/another-path:/another-container-path