Skip to content

Commit

Permalink
reorder concept super-sections in left nav (#8315)
Browse files Browse the repository at this point in the history
  • Loading branch information
sryza committed Jun 11, 2022
1 parent 7a86d60 commit 2dc2d9c
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 70 deletions.
76 changes: 38 additions & 38 deletions docs/content/_navigation.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,20 +135,36 @@
]
},
{
"title": "Resources",
"title": "Schedules, Sensors, & Partitions",
"children": [
{
"title": "Resources",
"path": "/concepts/resources"
"title": "Schedules",
"path": "/concepts/partitions-schedules-sensors/schedules"
},
{
"title": "Sensors",
"path": "/concepts/partitions-schedules-sensors/sensors"
},
{
"title": "Partitions",
"path": "/concepts/partitions-schedules-sensors/partitions"
},
{
"title": "Backfills",
"path": "/concepts/partitions-schedules-sensors/backfills"
}
]
},
{
"title": "Testing",
"title": "IO Management",
"children": [
{
"title": "Testing",
"path": "/concepts/testing"
"title": "IO Managers",
"path": "/concepts/io-management/io-managers"
},
{
"title": "Unconnected Inputs",
"path": "/concepts/io-management/unconnected-inputs"
}
]
},
Expand All @@ -166,24 +182,24 @@
]
},
{
"title": "Dagster Types",
"title": "Repositories & Workspaces",
"children": [
{
"title": "Dagster Types",
"path": "/concepts/types"
"title": "Repositories",
"path": "/concepts/repositories-workspaces/repositories"
},
{
"title": "Workspaces",
"path": "/concepts/repositories-workspaces/workspaces"
}
]
},
{
"title": "IO Management",
"title": "Resources",
"children": [
{
"title": "IO Managers",
"path": "/concepts/io-management/io-managers"
},
{
"title": "Unconnected Inputs",
"path": "/concepts/io-management/unconnected-inputs"
"title": "Resources",
"path": "/concepts/resources"
}
]
},
Expand All @@ -205,15 +221,11 @@
]
},
{
"title": "Repositories & Workspaces",
"title": "Dagster Types",
"children": [
{
"title": "Repositories",
"path": "/concepts/repositories-workspaces/repositories"
},
{
"title": "Workspaces",
"path": "/concepts/repositories-workspaces/workspaces"
"title": "Dagster Types",
"path": "/concepts/types"
}
]
},
Expand All @@ -231,23 +243,11 @@
]
},
{
"title": "Partitions, Schedules, & Sensors",
"title": "Testing",
"children": [
{
"title": "Schedules",
"path": "/concepts/partitions-schedules-sensors/schedules"
},
{
"title": "Sensors",
"path": "/concepts/partitions-schedules-sensors/sensors"
},
{
"title": "Partitions",
"path": "/concepts/partitions-schedules-sensors/partitions"
},
{
"title": "Backfills",
"path": "/concepts/partitions-schedules-sensors/backfills"
"title": "Testing",
"path": "/concepts/testing"
}
]
}
Expand Down
64 changes: 32 additions & 32 deletions docs/content/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,14 @@ Each page in this section contains:
Ops, Jobs, and Graphs are the building blocks of Dagster code. This section
covers how to define and use both ops and jobs.
</LinkGridItem>
<LinkGridItem title="Resources" href="/concepts/resources">
Resources enable you to separate logic from its heavyweight external
dependencies. This makes testing and developing data jobs possible in
various environments.
</LinkGridItem>
<LinkGridItem title="Testing" href="/concepts/testing">
Dagster enables you to build testable and maintainable data applications.
This section shows that Dagster enables you to unit-test your data jobs,
separate business logic from external dependencies, and run data quality
tests.
</LinkGridItem>
<LinkGridItem
title="Configuration System"
href="/concepts/configuration/config-schema"
title="Schedules, Sensors, and Partitions"
href="/concepts/partitions-schedules-sensors/schedules"
>
Dagster provides a configuration system that allows you to document,
schematize, and error-check your configuration. This section demonstrates
how configurations work with different Dagster entities.
</LinkGridItem>
<LinkGridItem title="Dagster Types" href="/concepts/types">
Dagster includes gradual, opt-in typing for the inputs and outputs of ops.
This section explains how to define, use, and test types in Dagster.
Schedulers can launch runs on a fixed interval, while sensors allow you to
run based on any external state change. This section demonstrates how to
define them and their convenient capabilities like partitioning and
backfilling.
</LinkGridItem>
<LinkGridItem
title="IO Management"
Expand All @@ -58,10 +44,13 @@ Each page in this section contains:
management and shows how to define and use IO managers and other IO-related
features.
</LinkGridItem>
<LinkGridItem title="Dagit & GraphQL API" href="/concepts/dagit/dagit">
Dagit is a web-based interface for viewing and interacting with Dagster
objects. This section walks you through Dagit's functionalities and the
GraphQL API used to interact with Dagster programatically.
<LinkGridItem
title="Configuration"
href="/concepts/configuration/config-schema"
>
Dagster provides a configuration system that allows you to document,
schematize, and error-check your configuration. This section demonstrates
how configurations work with different Dagster entities.
</LinkGridItem>
<LinkGridItem
title="Repositories and Workspaces"
Expand All @@ -72,18 +61,29 @@ Each page in this section contains:
workspaces to load user code. This section shows how to define and when to
use repositories and workspaces.
</LinkGridItem>
<LinkGridItem
title="Schedules, Sensors, and Partitions"
href="/concepts/partitions-schedules-sensors/schedules"
>
Schedulers can launch runs on a fixed interval, while sensors allow you to
run based on any external state change. This section demonstrates how to
define them and their convenient capabilities like partitioning and
backfilling.
<LinkGridItem title="Resources" href="/concepts/resources">
Resources enable you to separate logic from its heavyweight external
dependencies. This makes testing and developing data jobs possible in
various environments.
</LinkGridItem>
<LinkGridItem title="Dagit & GraphQL API" href="/concepts/dagit/dagit">
Dagit is a web-based interface for viewing and interacting with Dagster
objects. This section walks you through Dagit's functionalities and the
GraphQL API used to interact with Dagster programatically.
</LinkGridItem>
<LinkGridItem title="Dagster Types" href="/concepts/types">
Dagster includes gradual, opt-in typing for the inputs and outputs of ops.
This section explains how to define, use, and test types in Dagster.
</LinkGridItem>
<LinkGridItem title="Logging" href="/concepts/logging/loggers">
Dagster includes a rich and extensible logging system. This section
showcases Dagster's built-in logger and shows how you can customize loggers
to fit your logging and monitoring infrastructure.
</LinkGridItem>
<LinkGridItem title="Testing" href="/concepts/testing">
Dagster enables you to build testable and maintainable data applications.
This section shows that Dagster enables you to unit-test your data jobs,
separate business logic from external dependencies, and run data quality
tests.
</LinkGridItem>
</LinkGrid>

1 comment on commit 2dc2d9c

@vercel
Copy link

@vercel vercel bot commented on 2dc2d9c Jun 11, 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.