10
10
11
11
import org .apache .logging .log4j .LogManager ;
12
12
import org .apache .logging .log4j .Logger ;
13
- import org .opensearch .client .Client ;
14
- import org .opensearch .cluster .service .ClusterService ;
15
13
import org .opensearch .common .unit .TimeValue ;
16
14
import org .opensearch .core .common .Strings ;
17
15
import org .opensearch .core .rest .RestStatus ;
@@ -61,37 +59,47 @@ public class WorkflowStepFactory {
61
59
62
60
private final Map <String , Supplier <WorkflowStep >> stepMap = new HashMap <>();
63
61
private static final Logger logger = LogManager .getLogger (WorkflowStepFactory .class );
64
- private static ThreadPool threadPool ;
65
- private static MachineLearningNodeClient mlClient ;
66
- private static FlowFrameworkIndicesHandler flowFrameworkIndicesHandler ;
67
- private static FlowFrameworkSettings flowFrameworkSettings ;
68
62
69
63
/**
70
64
* Instantiate this class.
71
65
*
72
66
* @param threadPool The OpenSearch thread pool
73
- * @param clusterService The OpenSearch cluster service
74
- * @param client The OpenSearch client steps can use
75
67
* @param mlClient Machine Learning client to perform ml operations
76
68
* @param flowFrameworkIndicesHandler FlowFrameworkIndicesHandler class to update system indices
77
69
* @param flowFrameworkSettings common settings of the plugin
78
70
*/
79
71
public WorkflowStepFactory (
80
72
ThreadPool threadPool ,
81
- ClusterService clusterService ,
82
- Client client ,
83
73
MachineLearningNodeClient mlClient ,
84
74
FlowFrameworkIndicesHandler flowFrameworkIndicesHandler ,
85
75
FlowFrameworkSettings flowFrameworkSettings
86
76
) {
87
- this .threadPool = threadPool ;
88
- this .mlClient = mlClient ;
89
- this .flowFrameworkIndicesHandler = flowFrameworkIndicesHandler ;
90
- this .flowFrameworkSettings = flowFrameworkSettings ;
91
- // Initialize the WorkflowSteps enum inside the constructor
92
- for (WorkflowSteps workflowStep : WorkflowSteps .values ()) {
93
- stepMap .put (workflowStep .getWorkflowStepName (), workflowStep .step ());
94
- }
77
+ stepMap .put (NoOpStep .NAME , NoOpStep ::new );
78
+ stepMap .put (
79
+ RegisterLocalCustomModelStep .NAME ,
80
+ () -> new RegisterLocalCustomModelStep (threadPool , mlClient , flowFrameworkIndicesHandler , flowFrameworkSettings )
81
+ );
82
+ stepMap .put (
83
+ RegisterLocalSparseEncodingModelStep .NAME ,
84
+ () -> new RegisterLocalSparseEncodingModelStep (threadPool , mlClient , flowFrameworkIndicesHandler , flowFrameworkSettings )
85
+ );
86
+ stepMap .put (
87
+ RegisterLocalPretrainedModelStep .NAME ,
88
+ () -> new RegisterLocalPretrainedModelStep (threadPool , mlClient , flowFrameworkIndicesHandler , flowFrameworkSettings )
89
+ );
90
+ stepMap .put (RegisterRemoteModelStep .NAME , () -> new RegisterRemoteModelStep (mlClient , flowFrameworkIndicesHandler ));
91
+ stepMap .put (DeleteModelStep .NAME , () -> new DeleteModelStep (mlClient ));
92
+ stepMap .put (
93
+ DeployModelStep .NAME ,
94
+ () -> new DeployModelStep (threadPool , mlClient , flowFrameworkIndicesHandler , flowFrameworkSettings )
95
+ );
96
+ stepMap .put (UndeployModelStep .NAME , () -> new UndeployModelStep (mlClient ));
97
+ stepMap .put (CreateConnectorStep .NAME , () -> new CreateConnectorStep (mlClient , flowFrameworkIndicesHandler ));
98
+ stepMap .put (DeleteConnectorStep .NAME , () -> new DeleteConnectorStep (mlClient ));
99
+ stepMap .put (RegisterModelGroupStep .NAME , () -> new RegisterModelGroupStep (mlClient , flowFrameworkIndicesHandler ));
100
+ stepMap .put (ToolStep .NAME , ToolStep ::new );
101
+ stepMap .put (RegisterAgentStep .NAME , () -> new RegisterAgentStep (mlClient , flowFrameworkIndicesHandler ));
102
+ stepMap .put (DeleteAgentStep .NAME , () -> new DeleteAgentStep (mlClient ));
95
103
}
96
104
97
105
/**
@@ -101,16 +109,15 @@ public WorkflowStepFactory(
101
109
public enum WorkflowSteps {
102
110
103
111
/** Noop Step */
104
- NOOP ("noop" , Collections .emptyList (), Collections .emptyList (), Collections .emptyList (), null , NoOpStep :: new ),
112
+ NOOP ("noop" , Collections .emptyList (), Collections .emptyList (), Collections .emptyList (), null ),
105
113
106
114
/** Create Connector Step */
107
115
CREATE_CONNECTOR (
108
116
CreateConnectorStep .NAME ,
109
117
List .of (NAME_FIELD , DESCRIPTION_FIELD , VERSION_FIELD , PROTOCOL_FIELD , PARAMETERS_FIELD , CREDENTIAL_FIELD , ACTIONS_FIELD ),
110
118
List .of (CONNECTOR_ID ),
111
119
List .of (OPENSEARCH_ML ),
112
- TimeValue .timeValueSeconds (60 ),
113
- () -> new CreateConnectorStep (mlClient , flowFrameworkIndicesHandler )
120
+ TimeValue .timeValueSeconds (60 )
114
121
),
115
122
116
123
/** Register Local Custom Model Step */
@@ -129,8 +136,7 @@ public enum WorkflowSteps {
129
136
),
130
137
List .of (MODEL_ID , REGISTER_MODEL_STATUS ),
131
138
List .of (OPENSEARCH_ML ),
132
- TimeValue .timeValueSeconds (60 ),
133
- () -> new RegisterLocalCustomModelStep (threadPool , mlClient , flowFrameworkIndicesHandler , flowFrameworkSettings )
139
+ TimeValue .timeValueSeconds (60 )
134
140
),
135
141
136
142
/** Register Local Sparse Encoding Model Step */
@@ -139,8 +145,7 @@ public enum WorkflowSteps {
139
145
List .of (NAME_FIELD , VERSION_FIELD , MODEL_FORMAT , FUNCTION_NAME , MODEL_CONTENT_HASH_VALUE , URL ),
140
146
List .of (MODEL_ID , REGISTER_MODEL_STATUS ),
141
147
List .of (OPENSEARCH_ML ),
142
- TimeValue .timeValueSeconds (60 ),
143
- () -> new RegisterLocalSparseEncodingModelStep (threadPool , mlClient , flowFrameworkIndicesHandler , flowFrameworkSettings )
148
+ TimeValue .timeValueSeconds (60 )
144
149
),
145
150
146
151
/** Register Local Pretrained Model Step */
@@ -149,8 +154,7 @@ public enum WorkflowSteps {
149
154
List .of (NAME_FIELD , VERSION_FIELD , MODEL_FORMAT ),
150
155
List .of (MODEL_ID , REGISTER_MODEL_STATUS ),
151
156
List .of (OPENSEARCH_ML ),
152
- TimeValue .timeValueSeconds (60 ),
153
- () -> new RegisterLocalPretrainedModelStep (threadPool , mlClient , flowFrameworkIndicesHandler , flowFrameworkSettings )
157
+ TimeValue .timeValueSeconds (60 )
154
158
),
155
159
156
160
/** Register Remote Model Step */
@@ -159,8 +163,7 @@ public enum WorkflowSteps {
159
163
List .of (NAME_FIELD , CONNECTOR_ID ),
160
164
List .of (MODEL_ID , REGISTER_MODEL_STATUS ),
161
165
List .of (OPENSEARCH_ML ),
162
- null ,
163
- () -> new RegisterRemoteModelStep (mlClient , flowFrameworkIndicesHandler )
166
+ null
164
167
),
165
168
166
169
/** Register Model Group Step */
@@ -169,94 +172,42 @@ public enum WorkflowSteps {
169
172
List .of (NAME_FIELD ),
170
173
List .of (MODEL_GROUP_ID , MODEL_GROUP_STATUS ),
171
174
List .of (OPENSEARCH_ML ),
172
- null ,
173
- () -> new RegisterModelGroupStep (mlClient , flowFrameworkIndicesHandler )
175
+ null
174
176
),
175
177
176
178
/** Deploy Model Step */
177
- DEPLOY_MODEL (
178
- DeployModelStep .NAME ,
179
- List .of (MODEL_ID ),
180
- List .of (MODEL_ID ),
181
- List .of (OPENSEARCH_ML ),
182
- TimeValue .timeValueSeconds (15 ),
183
- () -> new DeployModelStep (threadPool , mlClient , flowFrameworkIndicesHandler , flowFrameworkSettings )
184
- ),
179
+ DEPLOY_MODEL (DeployModelStep .NAME , List .of (MODEL_ID ), List .of (MODEL_ID ), List .of (OPENSEARCH_ML ), TimeValue .timeValueSeconds (15 )),
185
180
186
181
/** Undeploy Model Step */
187
- UNDEPLOY_MODEL (
188
- UndeployModelStep .NAME ,
189
- List .of (MODEL_ID ),
190
- List .of (SUCCESS ),
191
- List .of (OPENSEARCH_ML ),
192
- null ,
193
- () -> new UndeployModelStep (mlClient )
194
- ),
182
+ UNDEPLOY_MODEL (UndeployModelStep .NAME , List .of (MODEL_ID ), List .of (SUCCESS ), List .of (OPENSEARCH_ML ), null ),
195
183
196
184
/** Delete Model Step */
197
- DELETE_MODEL (
198
- DeleteModelStep .NAME ,
199
- List .of (MODEL_ID ),
200
- List .of (MODEL_ID ),
201
- List .of (OPENSEARCH_ML ),
202
- null ,
203
- () -> new DeleteModelStep (mlClient )
204
- ),
185
+ DELETE_MODEL (DeleteModelStep .NAME , List .of (MODEL_ID ), List .of (MODEL_ID ), List .of (OPENSEARCH_ML ), null ),
205
186
206
187
/** Delete Connector Step */
207
- DELETE_CONNECTOR (
208
- DeleteConnectorStep .NAME ,
209
- List .of (CONNECTOR_ID ),
210
- List .of (CONNECTOR_ID ),
211
- List .of (OPENSEARCH_ML ),
212
- null ,
213
- () -> new DeleteConnectorStep (mlClient )
214
- ),
188
+ DELETE_CONNECTOR (DeleteConnectorStep .NAME , List .of (CONNECTOR_ID ), List .of (CONNECTOR_ID ), List .of (OPENSEARCH_ML ), null ),
215
189
216
190
/** Register Agent Step */
217
- REGISTER_AGENT (
218
- RegisterAgentStep .NAME ,
219
- List .of (NAME_FIELD , TYPE ),
220
- List .of (AGENT_ID ),
221
- List .of (OPENSEARCH_ML ),
222
- null ,
223
- () -> new RegisterAgentStep (mlClient , flowFrameworkIndicesHandler )
224
- ),
191
+ REGISTER_AGENT (RegisterAgentStep .NAME , List .of (NAME_FIELD , TYPE ), List .of (AGENT_ID ), List .of (OPENSEARCH_ML ), null ),
225
192
226
193
/** Delete Agent Step */
227
- DELETE_AGENT (
228
- DeleteAgentStep .NAME ,
229
- List .of (AGENT_ID ),
230
- List .of (AGENT_ID ),
231
- List .of (OPENSEARCH_ML ),
232
- null ,
233
- () -> new DeleteAgentStep (mlClient )
234
- ),
194
+ DELETE_AGENT (DeleteAgentStep .NAME , List .of (AGENT_ID ), List .of (AGENT_ID ), List .of (OPENSEARCH_ML ), null ),
235
195
236
196
/** Create Tool Step */
237
- CREATE_TOOL (ToolStep .NAME , List .of (TYPE ), List .of (TOOLS_FIELD ), List .of (OPENSEARCH_ML ), null , ToolStep :: new );
197
+ CREATE_TOOL (ToolStep .NAME , List .of (TYPE ), List .of (TOOLS_FIELD ), List .of (OPENSEARCH_ML ), null );
238
198
239
199
private final String workflowStepName ;
240
200
private final List <String > inputs ;
241
201
private final List <String > outputs ;
242
202
private final List <String > requiredPlugins ;
243
203
private final TimeValue timeout ;
244
- private final Supplier <WorkflowStep > workflowStep ;
245
-
246
- WorkflowSteps (
247
- String workflowStepName ,
248
- List <String > inputs ,
249
- List <String > outputs ,
250
- List <String > requiredPlugins ,
251
- TimeValue timeout ,
252
- Supplier <WorkflowStep > workflowStep
253
- ) {
204
+
205
+ WorkflowSteps (String workflowStepName , List <String > inputs , List <String > outputs , List <String > requiredPlugins , TimeValue timeout ) {
254
206
this .workflowStepName = workflowStepName ;
255
207
this .inputs = List .copyOf (inputs );
256
208
this .outputs = List .copyOf (outputs );
257
209
this .requiredPlugins = requiredPlugins ;
258
210
this .timeout = timeout ;
259
- this .workflowStep = workflowStep ;
260
211
}
261
212
262
213
/**
@@ -299,14 +250,6 @@ public TimeValue timeout() {
299
250
return timeout ;
300
251
}
301
252
302
- /**
303
- * Get the step
304
- * @return the step
305
- */
306
- public Supplier <WorkflowStep > step () {
307
- return workflowStep ;
308
- }
309
-
310
253
/**
311
254
* Get the workflow step validator object
312
255
* @return the WorkflowStepValidator
0 commit comments