Elasticsearch

一、Elasticsearch是什么

  Elasticsearch 是一个分布式的免费开源搜索和分析引擎,适用于包括文本、数字、地理空间、结构化和非结构化数据等在内的所有类型的数据。Elasticsearch 在 Apache Lucene 的基础上开发而成,由 Elasticsearch N.V.(即现在的 Elastic)于 2010 年首次发布。Elasticsearch 以其简单的 REST 风格 API、分布式特性、速度和可扩展性而闻名,是 Elastic Stack 的核心组件;Elastic Stack 是一套适用于数据采集、扩充、存储、分析和可视化的免费开源工具。人们通常将 Elastic Stack 称为 ELK Stack(代指 Elasticsearch、Logstash 和 Kibana),目前 Elastic Stack 包括一系列丰富的轻量型数据采集代理,这些代理统称为 Beats,可用来向 Elasticsearch 发送数据。

Elasticsearch的底层是Lucene,但是无法直接使用,要写代码调用它的接口。Elastic封装了Lucene,提供了REST API的操作接口,开箱即用。 

官方文档:https://www.elastic.co/guide/index.html

安装:以Elasticsearch 7.9.3为例

  1. Download the Elasticsearch 7.9.3 Windows zip file from the Elasticsearch download page.
  2. Extract the contents of the zip file to a directory on your computer, for example, C:Program Files.
  3. Open a command prompt as an Administrator and navigate to the directory that contains the extracted files, for example: cd C:Program Fileselasticsearch-7.9.3  
  4. Start Elasticsearch:binelasticsearch.bat 

  通过访问http://127.0.0.1:9200,测试Elasticsearch服务是否正常启动。

  注:9200为浏览器访问http RESTful端口,9300为Elasticsearch集群间组件的通信接口。

  浏览器返回以下结果表示正常启动。

{
  "name" : "QtI5dUu",
  "cluster_name" : "elasticsearch",
  "cluster_uuid" : "DMXhqzzjTGqEtDlkaMOzlA",
  "version" : {
    "number" : "7.9.3",
    "build_flavor" : "default",
    "build_type" : "tar",
    "build_hash" : "00d8bc1",
    "build_date" : "2018-06-06T16:48:02.249996Z",
    "build_snapshot" : false,
    "lucene_version" : "7.3.1",
    "minimum_wire_compatibility_version" : "5.6.0",
    "minimum_index_compatibility_version" : "5.0.0"
  },
  "tagline" : "You Know, for Search"
}
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » Elasticsearch