Skip to content

Commit

Permalink
replace old celery docs site (#7331)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Apr 6, 2022
1 parent 1860b3a commit e073b6f
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/content/api/modules.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/content/api/searchindex.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/content/api/sections.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/content/deployment/guides/celery.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: The dagster-celery executor uses Celery to execute Dagster ops.

# Execute on Celery

[Celery](http://www.celeryproject.org/) is an open-source Python distributed task queue system, with support for a variety of queues (brokers) and result persistence strategies (backends).
[Celery](https://docs.celeryq.dev/) is an open-source Python distributed task queue system, with support for a variety of queues (brokers) and result persistence strategies (backends).

The `dagster-celery` executor uses Celery to satisfy three common requirements when running jobs in production:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In this section, we demonstrate how to extend the [previous Helm deployment guid

## Prerequsites

In addition to the [previous prerequisites](/deployment/guides/kubernetes/deploying-with-helm#prerequsites), we expect familiarity with [Celery, a distributed task queue system](https://docs.celeryproject.org/en/stable/).
In addition to the [previous prerequisites](/deployment/guides/kubernetes/deploying-with-helm#prerequsites), we expect familiarity with \[Celery, a distributed task queue system]\(<https://docs.celeryq.dev/>).

## Deployment Architecture

Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"python": ("https://docs.python.org/3", "intersphinx/python.inv"),
"airflow": ("https://airflow.apache.org", "intersphinx/airflow.inv"),
"dask": ("https://distributed.dask.org/en/latest/", "intersphinx/dask.inv"),
"celery": ("http://docs.celeryproject.org/en/latest/", "intersphinx/celery.inv"),
"celery": ("https://docs.celeryq.dev/en/stable/", "intersphinx/celery.inv"),
"boto3": ("https://boto3.amazonaws.com/v1/documentation/api/latest/", "intersphinx/boto3.inv"),
"psycopg2": ("https://www.psycopg.org/docs/", "intersphinx/psycopg2.inv"),
}
Expand Down
2 changes: 1 addition & 1 deletion helm/dagster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ runLauncher:
# Additional config options for Celery, applied to all queues.
# These can be overridden per-queue below.
# For available options, see:
# https://docs.celeryproject.org/en/stable/userguide/configuration.html
# https://docs.celeryq.dev/en/stable/userguide/configuration.html
configSource: {}

# Additional Celery worker queues can be configured here. When overriding, be sure to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def celery_docker_executor(init_context):
the ``config_source`` key. This config corresponds to the "new lowercase settings" introduced
in Celery version 4.0 and the object constructed from config will be passed to the
:py:class:`celery.Celery` constructor as its ``config_source`` argument.
(See https://docs.celeryproject.org/en/latest/userguide/configuration.html for details.)
(See https://docs.celeryq.dev/en/stable/userguide/configuration.html for details.)
The executor also exposes the ``broker``, `backend`, and ``include`` arguments to the
:py:class:`celery.Celery` constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def celery_k8s_job_executor(init_context):
the ``config_source`` key. This config corresponds to the "new lowercase settings" introduced
in Celery version 4.0 and the object constructed from config will be passed to the
:py:class:`celery.Celery` constructor as its ``config_source`` argument.
(See https://docs.celeryproject.org/en/latest/userguide/configuration.html for details.)
(See https://docs.celeryq.dev/en/stable/userguide/configuration.html for details.)
The executor also exposes the ``broker``, `backend`, and ``include`` arguments to the
:py:class:`celery.Celery` constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def celery_executor(init_context):
the ``config_source`` key. This config corresponds to the "new lowercase settings" introduced
in Celery version 4.0 and the object constructed from config will be passed to the
:py:class:`celery.Celery` constructor as its ``config_source`` argument.
(See https://docs.celeryproject.org/en/latest/userguide/configuration.html for details.)
(See https://docs.celeryq.dev/en/stable/userguide/configuration.html for details.)
The executor also exposes the ``broker``, `backend`, and ``include`` arguments to the
:py:class:`celery.Celery` constructor.
Expand Down

1 comment on commit e073b6f

@vercel
Copy link

@vercel vercel bot commented on e073b6f Apr 6, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.