This is an automated email from the ASF dual-hosted git repository.
justinchen pushed a commit to branch logger-pipe
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/logger-pipe by this push:
new 599a4e3a750 shop
599a4e3a750 is described below
commit 599a4e3a75046127458606252dd6b685421f6ae4
Author: Caideyipi <[email protected]>
AuthorDate: Thu Feb 5 09:49:06 2026 +0800
shop
---
.../java/org/apache/iotdb/confignode/persistence/pipe/PipeTaskInfo.java | 2 +-
.../procedure/impl/pipe/plugin/CreatePipePluginProcedure.java | 2 +-
.../confignode/procedure/impl/pipe/plugin/DropPipePluginProcedure.java | 2 +-
.../plan/execution/config/executor/ClusterConfigTaskExecutor.java | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/persistence/pipe/PipeTaskInfo.java
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/persistence/pipe/PipeTaskInfo.java
index 0b3acb4058e..96eab13aec2 100644
---
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/persistence/pipe/PipeTaskInfo.java
+++
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/persistence/pipe/PipeTaskInfo.java
@@ -205,7 +205,7 @@ public class PipeTaskInfo implements SnapshotProcessor {
final String exceptionMessage =
String.format(
"Failed to alter pipe %s, %s", alterPipeRequest.getPipeName(),
PIPE_NOT_EXIST_MSG);
- LOGGER.warn(exceptionMessage);
+ LOGGER.info(exceptionMessage);
throw new PipeException(exceptionMessage);
}
diff --git
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/pipe/plugin/CreatePipePluginProcedure.java
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/pipe/plugin/CreatePipePluginProcedure.java
index e3a4719a719..f4fa738428d 100644
---
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/pipe/plugin/CreatePipePluginProcedure.java
+++
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/pipe/plugin/CreatePipePluginProcedure.java
@@ -145,7 +145,7 @@ public class CreatePipePluginProcedure extends
AbstractNodeProcedure<CreatePipeP
}
} catch (PipeException e) {
// The pipe plugin has already created, we should end the procedure
- LOGGER.warn(
+ LOGGER.info(
"Pipe plugin {} is already created, end the
CreatePipePluginProcedure({})",
pluginName,
pluginName);
diff --git
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/pipe/plugin/DropPipePluginProcedure.java
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/pipe/plugin/DropPipePluginProcedure.java
index 665a3782a91..efbe1ee6ccd 100644
---
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/pipe/plugin/DropPipePluginProcedure.java
+++
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/pipe/plugin/DropPipePluginProcedure.java
@@ -143,7 +143,7 @@ public class DropPipePluginProcedure extends
AbstractNodeProcedure<DropPipePlugi
subscriptionInfo.validatePipePluginUsageByTopic(pluginName);
} catch (PipeException e) {
// if the pipe plugin is a built-in plugin, we should not drop it
- LOGGER.warn(e.getMessage());
+ LOGGER.info(e.getMessage());
pipePluginCoordinator.unlock();
pipeTaskCoordinator.unlock();
setFailure(new ProcedureException(e.getMessage()));
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/execution/config/executor/ClusterConfigTaskExecutor.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/execution/config/executor/ClusterConfigTaskExecutor.java
index 3627e3f82af..65c86754c70 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/execution/config/executor/ClusterConfigTaskExecutor.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/execution/config/executor/ClusterConfigTaskExecutor.java
@@ -1071,7 +1071,7 @@ public class ClusterConfigTaskExecutor implements
IConfigTaskExecutor {
final Visibility pluginVisibility =
VisibilityUtils.calculateFromPluginClass(clazz);
final boolean isTableModel = createPipePluginStatement.isTableModel();
if (!VisibilityUtils.isCompatible(pluginVisibility, isTableModel)) {
- LOGGER.warn(
+ LOGGER.info(
"Failed to create PipePlugin({}) because this plugin is not
designed for {} model.",
createPipePluginStatement.getPluginName(),
isTableModel ? "table" : "tree");