This is an automated email from the ASF dual-hosted git repository. wusheng pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/skywalking.git
The following commit(s) were added to refs/heads/master by this push: new caeaec6387 Remove unnecessary BanyanDB flushing logs(info). (#12319) caeaec6387 is described below commit caeaec6387cf43bb8659238c18cc0c56b9226cc8 Author: 吴晟 Wu Sheng <wu.sh...@foxmail.com> AuthorDate: Tue Jun 11 12:41:43 2024 +0800 Remove unnecessary BanyanDB flushing logs(info). (#12319) --- docs/en/changes/changes.md | 1 + docs/en/setup/backend/marketplace.md | 2 +- .../oap/server/storage/plugin/banyandb/measure/BanyanDBMetricsDAO.java | 3 --- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/en/changes/changes.md b/docs/en/changes/changes.md index 5e5f262d7f..7a5d87fbc0 100644 --- a/docs/en/changes/changes.md +++ b/docs/en/changes/changes.md @@ -8,6 +8,7 @@ * Fix wrong indices in the eBPF Profiling related models. * Support exclude the specific namespaces traffic in the eBPF Access Log receiver. * Add Golang as a supported language for Elasticsearch. +* Remove unnecessary BanyanDB flushing logs(info). #### UI diff --git a/docs/en/setup/backend/marketplace.md b/docs/en/setup/backend/marketplace.md index 28165eb2cc..7a398b3397 100644 --- a/docs/en/setup/backend/marketplace.md +++ b/docs/en/setup/backend/marketplace.md @@ -8,5 +8,5 @@ Once SkyWalking detects the services of those layers, the relative menu will sho If you prefer to have a custom dashboard to visualize your metrics, logs, and traces in your private setup, you need to 1. Follow Tracing, Logging, and Metrics documentation to set up codes. 2. Follow Customization documentation to add analysis pipeline. -3. Follow [UI Customization Setup documentation](../../ui/readme) to set up new UI dashboards. +3. Follow [UI Customization Setup documentation](../../ui/README.md) to set up new UI dashboards. diff --git a/oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/measure/BanyanDBMetricsDAO.java b/oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/measure/BanyanDBMetricsDAO.java index e971dd7032..fd519c8a1b 100644 --- a/oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/measure/BanyanDBMetricsDAO.java +++ b/oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/measure/BanyanDBMetricsDAO.java @@ -64,7 +64,6 @@ public class BanyanDBMetricsDAO extends AbstractBanyanDBDAO implements IMetricsD @Override public List<Metrics> multiGet(Model model, List<Metrics> metrics) throws IOException { - log.info("multiGet {} from BanyanDB", model.getName()); MetadataRegistry.Schema schema = MetadataRegistry.INSTANCE.findMetadata(model); if (schema == null) { throw new IOException(model.getName() + " is not registered"); @@ -148,7 +147,6 @@ public class BanyanDBMetricsDAO extends AbstractBanyanDBDAO implements IMetricsD @Override public InsertRequest prepareBatchInsert(Model model, Metrics metrics, SessionCacheCallback callback) throws IOException { - log.info("prepare to insert {}", model.getName()); MetadataRegistry.Schema schema = MetadataRegistry.INSTANCE.findMetadata(model); if (schema == null) { throw new IOException(model.getName() + " is not registered"); @@ -166,7 +164,6 @@ public class BanyanDBMetricsDAO extends AbstractBanyanDBDAO implements IMetricsD @Override public UpdateRequest prepareBatchUpdate(Model model, Metrics metrics, SessionCacheCallback callback) throws IOException { - log.info("prepare to update {}", model.getName()); MetadataRegistry.Schema schema = MetadataRegistry.INSTANCE.findMetadata(model); if (schema == null) { throw new IOException(model.getName() + " is not registered");