Skip to content

Commit

Permalink
Extend the startup waiting time of AINode in CI (#13759)
Browse files Browse the repository at this point in the history
  • Loading branch information
ycycse authored Oct 14, 2024
1 parent 3b121f7 commit 8815529
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void initClusterEnvironment() {

@Override
public void initClusterEnvironment(int configNodesNum, int dataNodesNum) {
super.initEnvironment(configNodesNum, dataNodesNum, 500, true);
super.initEnvironment(configNodesNum, dataNodesNum, 1000, true);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

package org.apache.iotdb.db.queryengine.execution.operator.process.AI;
package org.apache.iotdb.db.queryengine.execution.operator.process.ai;

import org.apache.iotdb.ainode.rpc.thrift.TInferenceResp;
import org.apache.iotdb.ainode.rpc.thrift.TWindowParams;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2286,7 +2286,7 @@ public Operator visitInference(InferenceNode node, LocalExecutionPlanContext con
.addOperatorContext(
context.getNextOperatorId(),
node.getPlanNodeId(),
org.apache.iotdb.db.queryengine.execution.operator.process.AI.InferenceOperator
org.apache.iotdb.db.queryengine.execution.operator.process.ai.InferenceOperator
.class
.getSimpleName());

Expand All @@ -2301,7 +2301,7 @@ public Operator visitInference(InferenceNode node, LocalExecutionPlanContext con
calculateSize(inputShape[0], inputTypes) + TimeColumn.SIZE_IN_BYTES_PER_POSITION;
long maxReturnSize = calculateSize(outputShape[0], outputTypes);

return new org.apache.iotdb.db.queryengine.execution.operator.process.AI.InferenceOperator(
return new org.apache.iotdb.db.queryengine.execution.operator.process.ai.InferenceOperator(
operatorContext,
child,
modelInferenceDescriptor,
Expand Down

0 comments on commit 8815529

Please sign in to comment.