Skip to content

Commit

Permalink
Update docs/docs-beta/docs/tutorial/multi-asset-integration.md
Browse files Browse the repository at this point in the history
Co-authored-by: Nikki Everett <[email protected]>
  • Loading branch information
cmpadden and neverett authored Dec 20, 2024
1 parent 2c816e6 commit 9b48c24
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/docs-beta/docs/tutorial/multi-asset-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,11 @@ def my_assets(replication_resource: ReplicationProject):

At the end of [Step 2](#step-2-implementation), we mentioned that end users were unable to customize asset attributes, like the asset key, generated by our decorator. Translator classes are the recommended way of defining this logic, and they provide users with the option to override the default methods used to convert a concept from your tool (for example, a table name) to the corresponding concept in Dagster (for example, asset key).

To start, we will define a translator method to map the table specification to a Dagster asset key. **Note**: in a real world integration you will want to define methods for all common attributes like dependencies, group names, and metadata.
To start, we will define a translator method to map the table specification to a Dagster asset key.

:::note
In a real world integration, you will want to define methods for all common attributes like dependencies, group names, and metadata.
:::

```python
from dagster import AssetKey, _check as check
Expand Down

0 comments on commit 9b48c24

Please sign in to comment.