Skip to content
This repository was archived by the owner on Feb 16, 2026. It is now read-only.

Commit bd3243f

Browse files
committed
correct field name
1 parent b83e328 commit bd3243f

File tree

6 files changed

+16
-58
lines changed

6 files changed

+16
-58
lines changed

content/v1.11.x/connectors/pipeline/dagster/index.md

Lines changed: 5 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -82,28 +82,7 @@ For a complete guide on managing secrets in hybrid setups, see the [Hybrid Inges
8282
- Click on the "Create a New API Key" button.
8383
- Give your API key a name and click on the "Create API Key" button.
8484
- Copy the generated API key to your clipboard and paste it in the field.
85-
86-
### Strip Asset Key Prefix $(id="stripAssetKeyPrefix")
87-
88-
Number of leading segments to remove from asset key paths before resolving to tables.
89-
90-
**About Dagster Asset Keys:**
91-
92-
Dagster asset keys are path-like identifiers represented as arrays of strings (e.g., `["project", "environment", "schema", "table"]`). When OpenMetadata ingests Dagster pipelines, it tries to match these asset keys to table entities using the standard format: `database.schema.table` or `schema.table`.
93-
94-
**When to Use This Setting:**
95-
96-
If your Dagster asset keys include additional prefix segments beyond the database/schema/table hierarchy, use this setting to strip those prefixes. For example:
97-
- Asset key: `["project", "environment", "schema", "table"]`
98-
- Set value to `2` to strip `project` and `environment`
99-
- Result: `schema.table` (matches OpenMetadata table entities)
100-
101-
Common use cases include stripping:
102-
- Project/workspace identifiers
103-
- Environment names (dev/staging/prod)
104-
- Storage bucket/container prefixes
105-
106-
Default value is `0` (no stripping).
85+
- **Strip Asset Key Prefix Length**: Number of leading segments to remove from asset key paths before resolving to tables. Dagster asset keys are path-like identifiers (e.g., `["project", "environment", "schema", "table"]`). OpenMetadata matches these to tables using `database.schema.table` or `schema.table` format. If your asset keys include additional prefix segments (project, environment, etc.), use this setting to strip them. For example, setting value to `2` on asset key `["project", "env", "schema", "table"]` results in `schema.table`. Default: `0` (no stripping).
10786

10887
{% /extraContent %}
10988

@@ -164,9 +143,9 @@ def customer_orders():
164143
| `["schema", "table"]` | Schema and table only |
165144
| `["table"]` | Table name only |
166145

167-
**Using stripAssetKeyPrefix for Asset Keys with Prefixes**
146+
**Using stripAssetKeyPrefixLength for Asset Keys with Prefixes**
168147

169-
If your asset keys include additional prefix segments (e.g., project name, environment), use the `stripAssetKeyPrefix` configuration to remove them before matching to tables:
148+
If your asset keys include additional prefix segments (e.g., project name, environment), use the `stripAssetKeyPrefixLength` configuration to remove them before matching to tables:
170149

171150
**Example 1: Stripping Environment Prefix**
172151

@@ -188,7 +167,7 @@ def orders():
188167
```yaml
189168
sourceConfig:
190169
config:
191-
stripAssetKeyPrefix: 1 # Remove the first segment ("prod")
170+
stripAssetKeyPrefixLength: 1 # Remove the first segment ("prod")
192171
```
193172
194173
**Result:** Asset keys become `["analytics_db", "public", "customers"]` and `["analytics_db", "public", "orders"]`, which match the table format `database.schema.table`.
@@ -206,7 +185,7 @@ def users():
206185
```yaml
207186
sourceConfig:
208187
config:
209-
stripAssetKeyPrefix: 2 # Remove first two segments ("my_project", "staging")
188+
stripAssetKeyPrefixLength: 2 # Remove first two segments ("my_project", "staging")
210189
```
211190

212191
**Result:** Asset key becomes `["warehouse", "raw", "users"]`, matching `warehouse.raw.users` in OpenMetadata.

content/v1.11.x/connectors/pipeline/dagster/yaml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ This is a sample config for Dagster:
7777

7878
{% codeInfo srNumber=4 %}
7979

80-
**stripAssetKeyPrefix**: Number of leading segments to remove from asset key paths before resolving to tables.
80+
**stripAssetKeyPrefixLength**: Number of leading segments to remove from asset key paths before resolving to tables.
8181

8282
Dagster asset keys are path-like identifiers represented as arrays of strings (e.g., `["project", "environment", "schema", "table"]`). When OpenMetadata ingests Dagster pipelines, it tries to match these asset keys to table entities using the standard format: `database.schema.table` or `schema.table`.
8383

@@ -137,7 +137,7 @@ source:
137137
# timeout: 1000
138138
```
139139
```yaml {% srNumber=4 %}
140-
# stripAssetKeyPrefix: 0
140+
# stripAssetKeyPrefixLength: 0
141141
```
142142
```yaml {% srNumber=5 %}
143143
sourceConfig:

content/v1.11.x/main-concepts/metadata-standard/schemas/entity/services/connections/pipeline/dagsterConnection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ slug: /main-concepts/metadata-standard/schemas/entity/services/connections/pipel
1313
- **`host`** *(string)*: URL to the Dagster instance.
1414
- **`token`** *(string)*: To Connect to Dagster Cloud.
1515
- **`timeout`** *(integer)*: Connection Time Limit Between OM and Dagster Graphql API in second. Default: `1000`.
16-
- **`stripAssetKeyPrefix`** *(integer)*: Number of leading segments to remove from asset key paths before resolving to tables. Dagster asset keys are path-like identifiers (e.g., `["project", "environment", "schema", "table"]`). Use this setting to strip prefix segments beyond the database/schema/table hierarchy. Default: `0`.
16+
- **`stripAssetKeyPrefixLength`** *(integer)*: Number of leading segments to remove from asset key paths before resolving to tables. Dagster asset keys are path-like identifiers (e.g., `["project", "environment", "schema", "table"]`). Use this setting to strip prefix segments beyond the database/schema/table hierarchy. Default: `0`.
1717
- **`pipelineFilterPattern`**: Regex exclude pipelines. Refer to *../../../../type/filterPattern.json#/definitions/filterPattern*.
1818
- **`supportsMetadataExtraction`**: Refer to *../connectionBasicType.json#/definitions/supportsMetadataExtraction*.
1919
## Definitions

content/v1.12.x-SNAPSHOT/connectors/pipeline/dagster/index.md

Lines changed: 5 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -82,28 +82,7 @@ For a complete guide on managing secrets in hybrid setups, see the [Hybrid Inges
8282
- Click on the "Create a New API Key" button.
8383
- Give your API key a name and click on the "Create API Key" button.
8484
- Copy the generated API key to your clipboard and paste it in the field.
85-
86-
### Strip Asset Key Prefix $(id="stripAssetKeyPrefix")
87-
88-
Number of leading segments to remove from asset key paths before resolving to tables.
89-
90-
**About Dagster Asset Keys:**
91-
92-
Dagster asset keys are path-like identifiers represented as arrays of strings (e.g., `["project", "environment", "schema", "table"]`). When OpenMetadata ingests Dagster pipelines, it tries to match these asset keys to table entities using the standard format: `database.schema.table` or `schema.table`.
93-
94-
**When to Use This Setting:**
95-
96-
If your Dagster asset keys include additional prefix segments beyond the database/schema/table hierarchy, use this setting to strip those prefixes. For example:
97-
- Asset key: `["project", "environment", "schema", "table"]`
98-
- Set value to `2` to strip `project` and `environment`
99-
- Result: `schema.table` (matches OpenMetadata table entities)
100-
101-
Common use cases include stripping:
102-
- Project/workspace identifiers
103-
- Environment names (dev/staging/prod)
104-
- Storage bucket/container prefixes
105-
106-
Default value is `0` (no stripping).
85+
- **Strip Asset Key Prefix Length**: Number of leading segments to remove from asset key paths before resolving to tables. Dagster asset keys are path-like identifiers (e.g., `["project", "environment", "schema", "table"]`). OpenMetadata matches these to tables using `database.schema.table` or `schema.table` format. If your asset keys include additional prefix segments (project, environment, etc.), use this setting to strip them. For example, setting value to `2` on asset key `["project", "env", "schema", "table"]` results in `schema.table`. Default: `0` (no stripping).
10786

10887
{% /extraContent %}
10988

@@ -164,9 +143,9 @@ def customer_orders():
164143
| `["schema", "table"]` | Schema and table only |
165144
| `["table"]` | Table name only |
166145

167-
**Using stripAssetKeyPrefix for Asset Keys with Prefixes**
146+
**Using stripAssetKeyPrefixLength for Asset Keys with Prefixes**
168147

169-
If your asset keys include additional prefix segments (e.g., project name, environment), use the `stripAssetKeyPrefix` configuration to remove them before matching to tables:
148+
If your asset keys include additional prefix segments (e.g., project name, environment), use the `stripAssetKeyPrefixLength` configuration to remove them before matching to tables:
170149

171150
**Example 1: Stripping Environment Prefix**
172151

@@ -188,7 +167,7 @@ def orders():
188167
```yaml
189168
sourceConfig:
190169
config:
191-
stripAssetKeyPrefix: 1 # Remove the first segment ("prod")
170+
stripAssetKeyPrefixLength: 1 # Remove the first segment ("prod")
192171
```
193172
194173
**Result:** Asset keys become `["analytics_db", "public", "customers"]` and `["analytics_db", "public", "orders"]`, which match the table format `database.schema.table`.
@@ -206,7 +185,7 @@ def users():
206185
```yaml
207186
sourceConfig:
208187
config:
209-
stripAssetKeyPrefix: 2 # Remove first two segments ("my_project", "staging")
188+
stripAssetKeyPrefixLength: 2 # Remove first two segments ("my_project", "staging")
210189
```
211190

212191
**Result:** Asset key becomes `["warehouse", "raw", "users"]`, matching `warehouse.raw.users` in OpenMetadata.

content/v1.12.x-SNAPSHOT/connectors/pipeline/dagster/yaml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ This is a sample config for Dagster:
7777

7878
{% codeInfo srNumber=4 %}
7979

80-
**stripAssetKeyPrefix**: Number of leading segments to remove from asset key paths before resolving to tables.
80+
**stripAssetKeyPrefixLength**: Number of leading segments to remove from asset key paths before resolving to tables.
8181

8282
Dagster asset keys are path-like identifiers represented as arrays of strings (e.g., `["project", "environment", "schema", "table"]`). When OpenMetadata ingests Dagster pipelines, it tries to match these asset keys to table entities using the standard format: `database.schema.table` or `schema.table`.
8383

@@ -137,7 +137,7 @@ source:
137137
# timeout: 1000
138138
```
139139
```yaml {% srNumber=4 %}
140-
# stripAssetKeyPrefix: 0
140+
# stripAssetKeyPrefixLength: 0
141141
```
142142
```yaml {% srNumber=5 %}
143143
sourceConfig:

content/v1.12.x-SNAPSHOT/main-concepts/metadata-standard/schemas/entity/services/connections/pipeline/dagsterConnection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ slug: /main-concepts/metadata-standard/schemas/entity/services/connections/pipel
1313
- **`host`** *(string)*: URL to the Dagster instance.
1414
- **`token`** *(string)*: To Connect to Dagster Cloud.
1515
- **`timeout`** *(integer)*: Connection Time Limit Between OM and Dagster Graphql API in second. Default: `1000`.
16-
- **`stripAssetKeyPrefix`** *(integer)*: Number of leading segments to remove from asset key paths before resolving to tables. Dagster asset keys are path-like identifiers (e.g., `["project", "environment", "schema", "table"]`). Use this setting to strip prefix segments beyond the database/schema/table hierarchy. Default: `0`.
16+
- **`stripAssetKeyPrefixLength`** *(integer)*: Number of leading segments to remove from asset key paths before resolving to tables. Dagster asset keys are path-like identifiers (e.g., `["project", "environment", "schema", "table"]`). Use this setting to strip prefix segments beyond the database/schema/table hierarchy. Default: `0`.
1717
- **`pipelineFilterPattern`**: Regex exclude pipelines. Refer to *../../../../type/filterPattern.json#/definitions/filterPattern*.
1818
- **`supportsMetadataExtraction`**: Refer to *../connectionBasicType.json#/definitions/supportsMetadataExtraction*.
1919
## Definitions

0 commit comments

Comments
 (0)