Skip to content

Commit

Permalink
Rebuild schema...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Oct 2, 2024
1 parent 5a1bacc commit dfc194d
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 0 deletions.
56 changes: 56 additions & 0 deletions doc/source/admin/galaxy_options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5115,6 +5115,26 @@
:Type: str


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
``workflow_scheduling_separate_materialization_iteration``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:Description:
Workflows launched with URI/URL inputs that are not marked as
'deferred' are "materialized" (or undeferred) by the workflow
scheduler. This might be a lengthy process. Setting this to 'True'
will place the invocation back in the queue after materialization
before scheduling the workflow so it is less likely to starve
other workflow scheduling. Ideally, Galaxy would allow more fine
grain control of handlers but until then, this provides a way to
tip the balance between "doing more work" and "being more fair".
The default here is pretty arbitrary - it has been to False to
optimize Galaxy for automated, single user applications where
"fairness" is mostly irrelevant.
:Default: ``false``
:Type: bool


~~~~~~~~~~~~~~~~~~~~~~~~
``cache_user_job_count``
~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down Expand Up @@ -5602,3 +5622,39 @@
This requires the help_forum_api_url to be set.
:Default: ``false``
:Type: bool


~~~~~~~~~~~~~~~~~~~~~~~~
``file_source_temp_dir``
~~~~~~~~~~~~~~~~~~~~~~~~

:Description:
Directory to store temporary files for file sources. This defaults
to new_file_path if not set.
:Default: ``None``
:Type: str


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
``file_source_webdav_use_temp_files``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:Description:
Default value for use_temp_files for webdav plugins that don't
explicitly declare this.
:Default: ``true``
:Type: bool


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
``file_source_listings_expiry_time``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:Description:
Default value for listings_expiry_time for s3fs file source
plugins that don't explicitly declare this.
:Default: ``60``
:Type: int



26 changes: 26 additions & 0 deletions lib/galaxy/config/sample/galaxy.yml.sample
Original file line number Diff line number Diff line change
Expand Up @@ -2748,6 +2748,19 @@ galaxy:
# <config_dir>.
#workflow_schedulers_config_file: workflow_schedulers_conf.xml

# Workflows launched with URI/URL inputs that are not marked as
# 'deferred' are "materialized" (or undeferred) by the workflow
# scheduler. This might be a lengthy process. Setting this to 'True'
# will place the invocation back in the queue after materialization
# before scheduling the workflow so it is less likely to starve other
# workflow scheduling. Ideally, Galaxy would allow more fine grain
# control of handlers but until then, this provides a way to tip the
# balance between "doing more work" and "being more fair". The default
# here is pretty arbitrary - it has been to False to optimize Galaxy
# for automated, single user applications where "fairness" is mostly
# irrelevant.
#workflow_scheduling_separate_materialization_iteration: false

# If using job concurrency limits (configured in job_config_file),
# several extra database queries must be performed to determine the
# number of jobs a user has dispatched to a given destination. By
Expand Down Expand Up @@ -2978,3 +2991,16 @@ galaxy:
# Enable the integration of the Galaxy Help Forum in the tool panel.
# This requires the help_forum_api_url to be set.
#enable_help_forum_tool_panel_integration: false

# Directory to store temporary files for file sources. This defaults
# to new_file_path if not set.
#file_source_temp_dir: null

# Default value for use_temp_files for webdav plugins that don't
# explicitly declare this.
#file_source_webdav_use_temp_files: true

# Default value for listings_expiry_time for s3fs file source plugins
# that don't explicitly declare this.
#file_source_listings_expiry_time: 60

0 comments on commit dfc194d

Please sign in to comment.