Skip to content

Commit a0caf9c

Browse files
dbwiddismartinpkr
authored andcommitted
Add user mapping to Workflow State index (opensearch-project#705)
* Add user mapping to Workflow State index Signed-off-by: Daniel Widdis <[email protected]> * Increment schema version Signed-off-by: Daniel Widdis <[email protected]> --------- Signed-off-by: Daniel Widdis <[email protected]> Signed-off-by: martinpkr <[email protected]>
1 parent a85e7f7 commit a0caf9c

File tree

2 files changed

+41
-17
lines changed

2 files changed

+41
-17
lines changed

CHANGELOG.md

+2-16
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,13 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
1212
### Maintenance
1313
### Refactoring
1414

15-
## [Unreleased 2.x](https://github.com/opensearch-project/flow-framework/compare/2.13...2.x)
15+
## [Unreleased 2.x](https://github.com/opensearch-project/flow-framework/compare/2.14...2.x)
1616
### Features
1717
### Enhancements
18-
- Add guardrails to default use case params ([#658](https://github.com/opensearch-project/flow-framework/pull/658))
19-
- Allow strings for boolean workflow step parameters ([#671](https://github.com/opensearch-project/flow-framework/pull/671))
20-
- Add optional delay parameter to no-op step ([#674](https://github.com/opensearch-project/flow-framework/pull/674))
21-
- Add model interface support for remote and local custom models ([#701](https://github.com/opensearch-project/flow-framework/pull/701))
22-
2318
### Bug Fixes
24-
- Reset workflow state to initial state after successful deprovision ([#635](https://github.com/opensearch-project/flow-framework/pull/635))
25-
- Silently ignore content on APIs that don't require it ([#639](https://github.com/opensearch-project/flow-framework/pull/639))
26-
- Hide user and credential field from search response ([#680](https://github.com/opensearch-project/flow-framework/pull/680))
27-
- Throw the correct error message in status API for WorkflowSteps ([#676](https://github.com/opensearch-project/flow-framework/pull/676))
28-
- Delete workflow state when template is deleted and no resources exist ([#689](https://github.com/opensearch-project/flow-framework/pull/689))
29-
- Fixing model group parsing and restoring context ([#695] (https://github.com/opensearch-project/flow-framework/pull/695))
19+
- Add user mapping to Workflow State index ([#705](https://github.com/opensearch-project/flow-framework/pull/705))
3020

3121
### Infrastructure
32-
- Switch macos runner to macos-13 from macos-latest since macos-latest is now arm64 ([#686](https://github.com/opensearch-project/flow-framework/pull/686))
33-
3422
### Documentation
3523
### Maintenance
3624
### Refactoring
37-
- Improve error messages for workflow states other than NOT_STARTED ([#642](https://github.com/opensearch-project/flow-framework/pull/642))
38-
- Create a Config XContent model for Config index ([#679](https://github.com/opensearch-project/flow-framework/pull/679))

src/main/resources/mappings/workflow-state.json

+39-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dynamic": false,
33
"_meta": {
4-
"schema_version": 2
4+
"schema_version": 3
55
},
66
"properties": {
77
"schema_version": {
@@ -30,6 +30,44 @@
3030
"user_outputs": {
3131
"type": "object"
3232
},
33+
"user": {
34+
"type": "nested",
35+
"properties": {
36+
"name": {
37+
"type": "text",
38+
"fields": {
39+
"keyword": {
40+
"type": "keyword",
41+
"ignore_above": 256
42+
}
43+
}
44+
},
45+
"backend_roles": {
46+
"type" : "text",
47+
"fields" : {
48+
"keyword" : {
49+
"type" : "keyword"
50+
}
51+
}
52+
},
53+
"roles": {
54+
"type" : "text",
55+
"fields" : {
56+
"keyword" : {
57+
"type" : "keyword"
58+
}
59+
}
60+
},
61+
"custom_attribute_names": {
62+
"type" : "text",
63+
"fields" : {
64+
"keyword" : {
65+
"type" : "keyword"
66+
}
67+
}
68+
}
69+
}
70+
},
3371
"resources_created": {
3472
"type": "nested",
3573
"properties": {

0 commit comments

Comments
 (0)