Skip to content

Commit 3f19c47

Browse files
committed
PR fixes
1 parent 3f5e083 commit 3f19c47

File tree

6 files changed

+5
-24
lines changed

6 files changed

+5
-24
lines changed

metadata-models/src/main/pegasus/com/linkedin/metadata/key/MLFeatureKey.pdl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ record MLFeatureKey {
1313
*/
1414
@Searchable = {
1515
"fieldType": "TEXT_PARTIAL",
16-
"addToFilters": true
1716
}
1817
featureNamespace: string
1918

@@ -23,7 +22,6 @@ record MLFeatureKey {
2322
@Searchable = {
2423
"fieldType": "TEXT_PARTIAL",
2524
"enableAutocomplete": true,
26-
"addToFilters": true,
2725
"boostScore": 8.0
2826
}
2927
name: string

metadata-models/src/main/pegasus/com/linkedin/metadata/key/MLFeatureTableKey.pdl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ record MLFeatureTableKey {
2424
@Searchable = {
2525
"fieldType": "TEXT_PARTIAL",
2626
"enableAutocomplete": true,
27-
"addToFilters": true,
2827
"boostScore": 8.0
2928
}
3029
name: string

metadata-models/src/main/pegasus/com/linkedin/metadata/key/MLPrimaryKeyKey.pdl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ record MLPrimaryKeyKey {
2424
@Searchable = {
2525
"fieldType": "TEXT_PARTIAL",
2626
"enableAutocomplete": true,
27-
"addToFilters": true,
2827
"boostScore": 8.0
2928
}
3029
name: string

metadata-models/src/main/pegasus/com/linkedin/ml/metadata/MLFeatureProperties.pdl

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ record MLFeatureProperties {
1414
/**
1515
* Documentation of the MLFeature
1616
*/
17-
@Searchable = {
18-
"fieldType": "TEXT",
19-
"queryByDefault": true,
20-
"hasValuesFieldName": "hasDescription"
21-
}
2217
description: optional string
2318

2419
/**
@@ -36,8 +31,8 @@ record MLFeatureProperties {
3631
*/
3732
@Relationship = {
3833
"/*": {
39-
"name": "From",
40-
"entityTypes": [ "mlFeatureSourceType" ]
34+
"name": "DerivedFrom",
35+
"entityTypes": [ "dataset" ]
4136
}
4237
}
4338
sources: optional array[MLFeatureSourceType]

metadata-models/src/main/pegasus/com/linkedin/ml/metadata/MLFeatureTableProperties.pdl

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ record MLFeatureTableProperties {
1414
/**
1515
* Documentation of the MLFeatureTable
1616
*/
17-
@Searchable = {
18-
"fieldType": "TEXT",
19-
"queryByDefault": true,
20-
"hasValuesFieldName": "hasDescription"
21-
}
2217
description: optional string
2318

2419
/**
@@ -37,7 +32,7 @@ record MLFeatureTableProperties {
3732
*/
3833
@Relationship = {
3934
"/*": {
40-
"name": "Keyed by",
35+
"name": "KeyedBy",
4136
"entityTypes": [ "mlPrimaryKey" ]
4237
}
4338
}

metadata-models/src/main/pegasus/com/linkedin/ml/metadata/MLPrimaryKeyProperties.pdl

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ record MLPrimaryKeyProperties {
1414
/**
1515
* Documentation of the MLPrimaryKey
1616
*/
17-
@Searchable = {
18-
"fieldType": "TEXT",
19-
"queryByDefault": true,
20-
"hasValuesFieldName": "hasDescription"
21-
}
2217
description: optional string
2318

2419
/**
@@ -36,8 +31,8 @@ record MLPrimaryKeyProperties {
3631
*/
3732
@Relationship = {
3833
"/*": {
39-
"name": "From",
40-
"entityTypes": [ "mlFeatureSourceType" ]
34+
"name": "DerivedFrom",
35+
"entityTypes": [ "dataset" ]
4136
}
4237
}
4338
sources: array[MLFeatureSourceType]

0 commit comments

Comments
 (0)