Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust pipeline explanation #927

Merged
merged 2 commits into from
Feb 1, 2024
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions docs/website/docs/general-usage/pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ keywords: [pipeline, source, full refresh]
# Pipeline

A [pipeline](glossary.md#pipeline) is a connection that moves the data from your Python code to a
[destination](glossary.md#destination). Typically, you pass the `dlt` [sources](source.md) or
[resources](resource.md) to the pipeline. You can also pass generators, lists and other iterables to
it. When the pipeline runs, the resources get executed and the data is loaded at destination.
[destination](glossary.md#destination). Pipeline accepts `dlt` [sources](source.md) or
sultaniman marked this conversation as resolved.
Show resolved Hide resolved
[resources](resource.md) as well as generators, lists and any iterables.
sultaniman marked this conversation as resolved.
Show resolved Hide resolved
Once pipeline runs, all resources get evaluated and the data is loaded at destination.
sultaniman marked this conversation as resolved.
Show resolved Hide resolved

Example:

Expand Down
Loading