Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the jvm plug-in of elasticsearch

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)05/31 Report--

This article introduces the knowledge of "how to use the jvm plug-in of elasticsearch". Many people will encounter such a dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

The jvm plug-in for elasticsearch implements the Plugin interface, or inherits child AbstractPlugin abstract classes. You can implement Module and Services components, which have three lifecycles of global, index, and shard.

The overall project structure is like this.

We inherit the sub-AbstractPlugin here to add our TranslogRestModule module

Package org.elasticsearch.plugin.translog;import java.util.Collection;import org.elasticsearch.common.collect.Lists;import org.elasticsearch.common.inject.Module;import org.elasticsearch.plugins.AbstractPlugin;public class TranslogRestPlugin extends AbstractPlugin {public String name () {return "translog-rest";} @ Override public String description () {return "view translog";} @ Override public Collection

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report