Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions docs/apache-airflow-providers/core-extensions/asset-schemes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,17 @@
specific language governing permissions and limitations
under the License.

asset URI Schemes
Dataset URI Schemes
-------------------

This is a summary of all Apache Airflow Community provided implementations of asset URI schemes
This is a summary of all Apache Airflow Community provided implementations of dataset URI schemes
exposed via Airflow core and community-managed providers.

See :doc:`documentation on assets <apache-airflow:authoring-and-scheduling/assets>` for details on how asset URIs work.
..
TODO: Change this from Dataset to Asset in Airflow 3.0

.. airflow-asset-schemes::
See :doc:`documentation on Datasets <apache-airflow:authoring-and-scheduling/datasets>` for details on how dataset URIs work.

.. airflow-dataset-schemes::
:tags: None
:header-separator: "
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,12 @@ Exposing customized functionality to the Airflow's core:
* ``filesystems`` - this field should contain the list of all the filesystem module names.
See :doc:`apache-airflow:core-concepts/objectstorage` for description of the filesystems.

* ``asset-uris`` - this field should contain the list of the URI schemes together with
..
TODO: Change this from Dataset to Asset in Airflow 3.0

* ``dataset-uris`` - this field should contain the list of the URI schemes together with
class names implementing normalization functions.
See :doc:`apache-airflow:authoring-and-scheduling/assets` for description of the asset URIs.
See :doc:`apache-airflow:authoring-and-scheduling/datasets` for description of the dataset URIs.

.. note:: Deprecated values

Expand Down
2 changes: 1 addition & 1 deletion docs/exts/operators_and_hooks_ref.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ def setup(app):
app.add_directive("airflow-executors", ExecutorsDirective)
app.add_directive("airflow-deferrable-operators", DeferrableOperatorDirective)
app.add_directive("airflow-deprecations", DeprecationsDirective)
app.add_directive("airflow-asset-schemes", DatasetSchemeDirective)
app.add_directive("airflow-dataset-schemes", DatasetSchemeDirective)

return {"parallel_read_safe": True, "parallel_write_safe": True}

Expand Down