31
31
import org .opensearch .timeseries .ml .ModelState ;
32
32
import org .opensearch .timeseries .ml .Sample ;
33
33
import org .opensearch .timeseries .model .Config ;
34
- import org .opensearch .timeseries .model .IntervalTimeConfiguration ;
35
34
import org .opensearch .timeseries .util .ActionListenerExecutor ;
36
35
import org .opensearch .transport .TransportService ;
37
36
@@ -129,14 +128,12 @@ protected ADHCImputeNodeResponse nodeOperation(ADHCImputeNodeRequest nodeRequest
129
128
return ;
130
129
}
131
130
Config config = configOptional .get ();
132
- long windowDelayMillis = ((IntervalTimeConfiguration ) config .getWindowDelay ()).toDuration ().toMillis ();
133
131
int featureSize = config .getEnabledFeatureIds ().size ();
134
132
long dataEndMillis = nodeRequest .getRequest ().getDataEndMillis ();
135
133
long dataStartMillis = nodeRequest .getRequest ().getDataStartMillis ();
136
- long executionEndTime = dataEndMillis + windowDelayMillis ;
137
134
String taskId = nodeRequest .getRequest ().getTaskId ();
138
135
for (ModelState <ThresholdedRandomCutForest > modelState : cache .get ().getAllModels (configId )) {
139
- if (shouldProcessModelState (modelState , executionEndTime , clusterService , hashRing )) {
136
+ if (shouldProcessModelState (modelState , dataEndMillis , clusterService , hashRing )) {
140
137
double [] nanArray = new double [featureSize ];
141
138
Arrays .fill (nanArray , Double .NaN );
142
139
adInferencer
@@ -163,8 +160,8 @@ protected ADHCImputeNodeResponse nodeOperation(ADHCImputeNodeRequest nodeRequest
163
160
* Determines whether the model state should be processed based on various conditions.
164
161
*
165
162
* Conditions checked:
166
- * - The model's last seen execution end time is not the minimum Instant value.
167
- * - The current execution end time is greater than or equal to the model's last seen execution end time,
163
+ * - The model's last seen data end time is not the minimum Instant value. This means the model hasn't been initialized yet .
164
+ * - The current data end time is greater than the model's last seen data end time,
168
165
* indicating that the model state was updated in previous intervals.
169
166
* - The entity associated with the model state is present.
170
167
* - The owning node for real-time processing of the entity, with the same local version, is present in the hash ring.
@@ -175,14 +172,14 @@ protected ADHCImputeNodeResponse nodeOperation(ADHCImputeNodeRequest nodeRequest
175
172
* concurrently (e.g., during tests when multiple threads may operate quickly).
176
173
*
177
174
* @param modelState The current state of the model.
178
- * @param executionEndTime The end time of the current execution interval.
175
+ * @param dataEndTime The data end time of current interval.
179
176
* @param clusterService The service providing information about the current cluster node.
180
177
* @param hashRing The hash ring used to determine the owning node for real-time processing of entities.
181
178
* @return true if the model state should be processed; otherwise, false.
182
179
*/
183
180
private boolean shouldProcessModelState (
184
181
ModelState <ThresholdedRandomCutForest > modelState ,
185
- long executionEndTime ,
182
+ long dataEndTime ,
186
183
ClusterService clusterService ,
187
184
HashRing hashRing
188
185
) {
@@ -194,8 +191,8 @@ private boolean shouldProcessModelState(
194
191
// Check if the model state conditions are met for processing
195
192
// We cannot use last used time as it will be updated whenever we update its priority in CacheBuffer.update when there is a
196
193
// PriorityCache.get.
197
- return modelState .getLastSeenExecutionEndTime () != Instant .MIN
198
- && executionEndTime >= modelState .getLastSeenExecutionEndTime ().toEpochMilli ()
194
+ return modelState .getLastSeenDataEndTime () != Instant .MIN
195
+ && dataEndTime > modelState .getLastSeenDataEndTime ().toEpochMilli ()
199
196
&& modelState .getEntity ().isPresent ()
200
197
&& owningNode .isPresent ()
201
198
&& owningNode .get ().getId ().equals (clusterService .localNode ().getId ());
0 commit comments