Skip to content

Commit

Permalink
Updates redirects, removes broken links, and updates subsection index…
Browse files Browse the repository at this point in the history
… entries (#15163)

Co-authored-by: nate nowack <[email protected]>
  • Loading branch information
discdiver and zzstoatzz authored Aug 30, 2024
1 parent ecbd6f9 commit fcefcb0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
5 changes: 1 addition & 4 deletions docs/3.0rc/develop/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,17 @@ The **Configure runtime behavior** section introduces advanced features for inte

- [Configure task caching](/3.0rc/develop/task-caching/) explores how to cache task results to save money and time.
- [Write transactions](/3.0rc/develop/transactions/) shows how to group tasks together to ensure they run atomically.
- [Execute code on state changes](/3.0rc/develop/manage-states#execute-code-on-state-changes) shows how to run code when a task or flow changes state.
- [Pause and resume flow runs](/3.0rc/develop/pause-resume/) explains how to halt flow runs for input.
- [Send and receive flow run inputs](/3.0rc/develop/inputs/) highlights how to run Human-in-the-Loop workflows with Prefect.
- [Access runtime context](/3.0rc/develop/runtime-context/) shows how to access information about the current run.

The **Manage state and configuration** section explores how to manage data and configuration in Prefect.

- [Manage results](/3.0rc/develop/results/) explains how to store and retrieve task results.
- [Manage states](/3.0rc/develop/manage-states/) discusses how to learn about a workflow through task and flow states.
- [Manage states](/3.0rc/develop/manage-states/) discusses how to take action based on task and flow run states.
- [Create run artifacts](/3.0rc/develop/artifacts/) demonstrates how to create artifacts for human consumption in the UI.
- [Set and get variables](/3.0rc/develop/variables/) shows how to store and retrieve configuration values from API.
- [Connect to external systems](/3.0rc/develop/blocks/) discusses how Prefect blocks can help you connect to external systems.
- [Manage cloud-hosted data](/3.0rc/develop/interact-with-data/) shows convieniences for moving data to and from cloud storage providers.


The **Manage concurrency** section explains how to speed up your workflows and limit activities that can take place concurrently.

Expand Down
1 change: 1 addition & 0 deletions docs/3.0rc/manage/cloud/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The **Manage accounts** subsection covers aspects of Prefect Cloud accounts:
- [Configure single sign-on](/3.0rc/manage/cloud/manage-users/configure-sso/) describes how (SSO) authentication integration is supported through identity providers with OIDC and SAML. Directory Sync and SCIM provisioning is also available. <span class="badge enterprise"></span>
- [Audit Cloud activity](/3.0rc/manage/cloud/manage-users/audit-logs/) shows how Prefect provides a record of user activities to monitor for security and compliance. <span class="badge pro"></span> <span class="badge enterprise"></span>
- [Object access control lists](/3.0rc/manage/cloud/manage-users/object-access-control-lists/) (ACLs) allow privileged users to restrict deployment and block access to individual users. <span class="badge enterprise"></span>
- [Secure access by IP](/3.0rc/manage/cloud/manage-users/secure-access-by-ip-address/) shows how to restrict access to Prefect Cloud by IP address. <span class="badge enterprise"></span>

The remaining Prefect Cloud pages in this section cover various aspects of Prefect Cloud:

Expand Down
6 changes: 2 additions & 4 deletions docs/3.0rc/resources/big-data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,15 @@ The result of the task writes to S3, rather than stored in memory.
<!-- vale off -->
*/}
To save memory and time with big data, you don't need to pass results between tasks.
Instead, write and read data to disk directly in your flow code.
Instead, you can write and read data to disk directly in your flow code.
Prefect has integration libraries for each of the major cloud providers.
{/*
<!-- vale on -->
*/}

Each library contains blocks with methods that make it convenient to read and write data to and
from cloud object storage.
The [moving data guide](/3.0rc/develop/interact-with-data/) has step-by-step examples for each
cloud provider.


### Cache task results

Expand All @@ -123,7 +122,6 @@ Specify the result type with `compressed/` prefixed:
@task(result_serializer="compressed/json")
```

Read about [compressing results with Prefect](/3.0rc/develop/interact-with-data/) for more details.
Note that compression takes time to compress and decompress the data.

### Use a task runner for parallelizable operations
Expand Down
6 changes: 3 additions & 3 deletions docs/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@
"source": "/latest/community"
},
{
"destination": "/latest/develop/interact-with-data",
"destination": "/latest/develop/blocks",
"source": "/latest/concepts/filesystems"
},
{
Expand All @@ -930,15 +930,15 @@
"source": "/latest/api-ref/server"
},
{
"destination": "/latest/develop/interact-with-data",
"destination": "/latest/develop/blocks",
"source": "/latest/guides/moving-data"
},
{
"destination": "/contribute/develop-a-new-worker-type",
"source": "/latest/guides/deployment/developing-a-new-worker-type"
},
{
"destination": "/latest/develop/state-hooks",
"destination": "/latest/develop/manage-states",
"source": "/latest/guides/state-change-hooks"
},
{
Expand Down

0 comments on commit fcefcb0

Please sign in to comment.