学习 Elasticsearch 敲过的指令

本贴最后更新于 2932 天前,其中的信息可能已经时过境迁

—— from《Elasticsearch: The Definitive Guide》

curl -XGET http://localhost:9200/_count?pretty -d '
{
    "query":{
        "match_all":{}
    }
}'

curl -i -XGET http://localhost:9200/

curl -XPUT http://localhost:9200/megacorp/employee/1?pretty -d '
{
    "first_name":"John",
    "last_name":"Smith",
    "age":25,
    "about":"I love to go rock climbing",
    "interests":["sports","music"]
}'

curl -XPUT http://localhost:9200/megacorp/employee/2?pretty -d '
{
    "first_name":"Jane",
    "last_name":"Smith",
    "age":32,
    "about":"I like to collect rock albums",
    "interests":["music"]
}'

curl -XPUT http://localhost:9200/megacorp/employee/3?pretty -d '
{
    "first_name":"Douglas",
    "last_name":"Fir",
    "age":35,
    "about":"I like to build cabinets",
    "interests":["forestry"]
}'

curl -XGET http://localhost:9200/megacorp/employee/1?pretty

curl -XGET http://localhost:9200/megacorp/employee/_search?pretty

curl -XGET http://localhost:9200/megacorp/employee/_search?q=last_name:Smith&pretty

curl -XGET http://localhost:9200/megacorp/employee/_search?pretty -d '
{
    "query":{
        "match":{
            "last_name":"Smith"
        }
    }
}'

curl -XGET http://localhost:9200/megacorp/employee/_search?pretty -d '
{
    "query":{
        "filtered":{
            "filter":{
                "range":{
                    "age":{
                        "gt":30
                    }
                }
            },
            "query":{
                "match":{
                    "last_name":"smith"
                }
            }
        }
    }
}'

curl -XGET http://localhost:9200/megacorp/employee/_search?pretty -d '
{
    "query":{
        "match":{
            "about":"rock climbing"
        }
    }
}'

curl -XGET http://localhost:9200/megacorp/employee/_search?pretty -d '
{
    "query":{
        "match_phrase":{
            "about":"rock climbing"
        }
    }
}'

curl -XGET http://localhost:9200/megacorp/employee/_search?pretty -d '
{
    "query":{
        "match_phrase":{
            "about":"rock climbing"
        }
    },
    "highlight":{
        "fields":{
            "about":{}
        }
    }
}'

curl -XGET http://localhost:9200/megacorp/employee/_search?pretty -d '
{
    "aggs":{
        "all_interests":{
            "terms":{
                "field":"interests"
            }
        }
    }
}'

curl -XGET http://localhost:9200/megacorp/employee/_search?pretty -d '
{
    "query":{
        "match":{
            "last_name":"smith"
        }
    },
    "aggs":{
        "all_interests":{
            "terms":{
                "field":"interests"
            }
        }
    }
}'

curl -XGET http://localhost:9200/megacorp/employee/_search?pretty -d '
{
    "aggs":{
        "all_interests":{
            "terms":{
                "field":"interests"
            },
            "aggs":{
                "avg_age":{
                    "avg":{
                        "field":"age"
                    }
                }
            }
        }
    }
}'

curl -XGET http://localhost:9200/_cluster/health?pretty

curl -XPUT http://localhost:9200/blogs?pretty -d '
{
    "number_of_shards":3,
    "number_of_replicas":1
}'

curl -XPUT http://localhost:9200/blogs/_settings?pretty -d '
{
    "number_of_replicas":2
}'

curl -XPUT http://localhost:9200/website/blog/123?pretty -d '
{
    "title":"My first blog entry",
    "text":"Just trying this out...",
    "date":"2014/01/01"
}'

curl -XPOST http://localhost:9200/website/blog/?pretty -d '
{
    "title":"My second blog entry",
    "text":"Still trying this out...",
    "date":"2014/01/01"
}'

curl -XGET http://localhost:9200/website/blog/123?pretty

curl -i -XGET http://localhost:9200/website/blog/124?pretty

curl -XGET http://localhost:9200/website/blog/123?pretty&_source=title,text

curl -XGET http://localhost:9200/website/blog/123/_source

curl -i -XHEAD http://localhost:9200/website/blog/123

curl -i -XHEAD http://localhost:9200/website/blog/124

curl -XPUT http://localhost:9200/website/blog/123?pretty -d '
{
    "title":"My first blog entry",
    "text":"I am starting to get the hang of this...",
    "date":"2014/01/02"
}'

curl -XDELETE http://localhost:9200/website/blog/123?pretty

curl -XPUT http://localhost:9200/website/blog/1/_create?pretty -d '
{
    "title":"My first blog entry",
    "text":"Just trying this out..."
}'

curl -XGET http://localhost:9200/website/blog/1?pretty

curl -XPUT http://localhost:9200/website/blog/1?version=1&pretty -d '
{
    "title":"My first blog entry",
    "text":"starting to get the hang of this..."
}'

curl -XPUT http://localhost:9200/website/blog/2?version=5&version_type=external&pretty -d '
{
    "title":"My first external blog entry",
    "text":"Starting to get the hang of this..."
}'

curl -XPUT http://localhost:9200/website/blog/2?version=10&version_type=external&pretty -d '
{
    "title":"My first external blog entry",
    "text":"This is a piece of cake..."
}'

curl -XPOST http://localhost:9200/website/blog/1/_update?pretty -d '
{
    "doc":{
        "tags":["testing"],
        "views":0
    }
}'

curl -XPOST http://localhost:9200/website/blog/1/_update?pretty -d '
{
    "script":"ctx._source.views+=1"
}'

curl -XPOST http://localhost:9200/website/blog/1/_update?pretty -d '
{
	"script":"ctx._source.tags+=new_tag",
	"params":{
		"new_tag":"search"
	}
}'

curl -XPOST http://localhost:9200/website/blog/1/_update?pretty -d '
{
	"script":"ctx.op = ctx._source.views == count ? '"'"'delete'"'"' : '"'"'none'"'",
	"params":{
		"count":1
	}
}'

curl -XPOST http://localhost:9200/website/pageviews/1/_update?pretty -d '
{
	"script":"ctx._source.views+=1",
	"upsert":{
		"views":1
	}
}'

curl -XPOST http://localhost:9200/website/pageviews/1/_update?pretty&retry_on_conflict=5 -d '
{
	"script":"ctx._source.views+=1",
	"upsert":{
		"views":0
	}
}'

curl -XGET http://localhost:9200/_mget?pretty -d '
{
	"docs":[
		{
			"_index":"website",
			"_type":"blog",
			"_id":2
		},
		{
			"_index":"website",
			"_type":"pageviews",
			"_id":1,
			"_source":"views"
		}
	]
}'

curl -XGET http://localhost:9200/website/blog/_mget?pretty -d '
{
	"docs":[
		{
			"_id":2
		},
		{
			"_type":"pageviews",
			"_id":1
		}
	]
}'

curl -XGET http://localhost:9200/website/blog/_mget?pretty -d '
{
	"ids":["2","1"]
}'

curl -XPOST http://localhost:9200/_bulk?pretty -d '
{"delete":{"_index":"website","_type":"blog","_id":"123"}}
{"create":{"_index":"website","_type":"blog","_id":"123"}}
{"title":"My first blog post"}
{"index":{"_index":"website","_type":"blog"}}
{"title":"My second blog post"}
{"update":{"_index":"website","_type":"blog","_id":"123","_retry_on_conflict":3}}
{"doc":{"title":"My updated blog post"}}
'

curl -XPOST http://localhost:9200/_bulk?pretty -d '
{"create":{"_index":"website","_type":"blog","_id":"123"}}
{"title":"Cannot create - it already exists"}
{"index":{"_index":"website","_type":"blog","_id":"123"}}
{"title":"But we can update it"}
'

curl -XPOST http://localhost:9200/website/_bulk?pretty -d '
{"index":{"_type":"log"}}
{"event":"User logged in"}
'

curl -XPOST http://localhost:9200/website/log/_bulk?pretty -d '
{"index":{}}
{"event":"User logged in"}
{"index":{"_type":"blog"}}
{"title":"Overriding the default type"}
'

curl -XGET http://localhost:9200/_search\?pretty

curl -XGET http://localhost:9200/_search?pretty&size=10&from=10

curl -XGET http://localhost:9200/gb/_mapping/tweet

curl -XGET http://lcoalhost:9200/ikyxxs/_mapping/faq?pretty

curl -XFELETE http://localhost:9200/gb

curl -XPUT http://localhost:9200/gb?pretty -d '
{
	"mappings":{
		"tweet":{
			"properties":{
				"tweet":{
					"type":"string",
					"analyzer":"english"
				},
				"date":{
					"type":"date"
				},
				"name":{
					"type":"string"
				},
				"user_id":{
					"type":"long"
				}
			}
		}
	}
}'

curl -XPUT http://localhost:9200/gb_mapping/tweeet -d '
{
	"properties":{
		"tag":{
			"type":"string",
			"index":"not_analyzed"
		}
	}
}'

curl -XGET http://localhost:9200/gb/_analyze?field=tweet&pretty -d '
Black-cats'

curl -XGET http://localhost:9200/gb/_analyze?field=tag?pretty -d '
Black-cats'

curl -XGET http://localhost:9200/_search?pretty -d '
{
	"query":{
		"match_all":{}
	}
}'

curl -XGET http://localhost:9200/_search?pretty -d '
{
	"query":{
		"match":{
			"tweet":"elasticsearch"
		}
	}
}'

curl -XGET http://localhost:9200/_search?pretty -d '
{
	"query":{
		"filtered":{
			"query":{
				"match_all":{}
			},
			"filter":{
				"term":{
					"folder":"inbox"
				}
			}
		}
	}
}'

curl -XGET http://localhost:9200/_search?pretty -d '
{
	"query":{
		"filtered":{
			"filter":{
				"bool":{
					"must":{
						"term":{
							"folder":"inbox"
						}
					},
					"must_not":{
						"query":{
							"match":{
								"email":"urgent business proposal"
							}
						}
					}
				}
			}
		}
	}
}'

curl -XGET http://localhost:9200/gb/tweet/_validate/query?pretty -d '
{
	"query":{
		"tweet":{
			"match":"really powerful"
		}
	}
}'

curl -XGET http://localhost:9200/gb/tweet/_validate/query?explain&pretty -d '
{
	"query":{
		"tweet":{
			"match":"really powerful"
		}
	}
}'

curl -XGET http://localhost:9200/_validate/query?explain&pretty -d '
{
	"query":{
		"match":{
			"tweet":"really powerful"
		}
	}
}'

curl -XGET http://localhost:9200/_search?pretty -d '
{
	"query":{
		"filtered":{
			"filter":{
				"term":{
					"user_id":1
				}
			}
		}
	}
}'

curl -XGET http://localhost:9200/_search?pretty -d '
{
	"query":{
		"filtered":{
			"filter":{
				"term":{
					"user_id":1
				}
			}
		}
	},
	"sort":{
		"date":{
			"order":"desc"
		}
	}
}'

curl -XGET http://localhost:9200/_search?pretty -d '
{
	"query":{
		"filtered":{
			"query":{
				"match":{
					"tweet":"manage text search"
				}
			},
			"filter":{
				"term":{
					"user_id":2
				}
			}
		}
	},
	"sort":[
		{
			"date":{
				"order":"desc"
			}
		},
		{
			"_score":{
				"order":desc
			}
		}
	]
}'

curl -XGET http://localhost:9200/_search?pretty&sort=date:desc&sort=_score&q=search 

curl -XGET http://localhost:9200/_search?pretty -d '
{
	"query":{
		"match":{
			"tweet":"elasticsearch"
		}
	},
	"sort":"tweet.raw"
}'

curl -XGET http://localhost:9200/_search?pretty&explain -d '
{
	"query":{
		"match":{
			"tweet":"honeymoon"
		}
	}
}'

curl -XGET http://localhost:9200/us/tweet/12/_explain -d '
{
	"query":{
		"filtered":{
			"filter":{
				"term":{
					"user_id":2
				}
			},
			"query":{
				"match":{
					"tweet":"honeymoon"
				}
			}
		}
	}
}'

curl -XGET http://localhost:9200/_search?pretty -d '
{
	"from":90,
	"size":10
}'

curl -XGET http://localhost:9200/_search?pretty&routing=user_1,user2

curl -XGET http://localhost:9200/_search?pretty&search_type=count

curl -XGET http://localhost:9200/old_index/_search?search_type=scan&scroll=1m -d '
{
	"query":{
		"match_all":{}
	},
	"size":1000
}'

curl -XDELETE http://localhost:9200/my_index

curl -XDELETE http://localhost:9200/index_one,index_two

curl -XDELETE http://localhost:9200/index_*

curl -XDELETE http://localhost:9200/_all

curl -XPUT http://localhost:9200/my_temp_index?pretty -d '
{
	"settings":{
		"number_of_shards": 1,
		"number_of_replicas": 0
	}
}'

curl -XPUT http://localhost:9200/my_temp_index/_settings?pretty -d '
{
	"number_of_replicas": 1
}'

curl -XPUT http://localhost:9200/spanish_docs?pretty -d '
{
	"settings":{
		"analysis":{
			"anlayzer":{
				"es_std":{
					"type":"standard",
					"stopwords":"_spanish_"
				}
			}
		}
	}
}'

curl -XGET http://localhost:9200/spanish_docs/_analyze?pretty&analyzer=es_std -d '
El veloz zorro marron'

curl -XPUT http://localhost:9200/my_index?pretty -d '
{
	"settings":{
		"analysis":{
			"char_filter":{
				"&_to_and":{
					"type":"mapping",
					"mappings":["&=> and"]
				}
			},
			"filter":{
				"my_stopwords":{
					"type":"stop",
					"stopwords":["the","a"]
				}
			},
			"analyzer":{
				"my_analyzer":{
					"type":"custom",
					"char_filter":["html_strip", "&_to_end"],
					"tokenizer":"standard",
					"filter":["lowercase", "my_stopwords"]
				}
			}
		}
	}
}'

curl -XGET http://localhost:9200/my_index/_analyze?analyzer=my_analyzer?pretty -d '
The quick & brown fox'

curl -XPUT http://localhost:9200/my_index/_mapping/my_type?pretty -d '
{
	"properties":{
		"title":{
			"type":"string",
			"analyzer":"my_analyzer"
		}
	}
}'

curl -XGET http://localhost:9200/_seach?pretty -d '
{
	"query":{
		"match":{
			"title":"The quick brown fox"
		}
	}
}'


curl -XGET http://localhost:9200/_search?pretty -d '
{
	"query":{
		"multi_match":{
			"query":"The quick brown fox",
			"fields":["blog_en.title", "blog_es.title"]
		}
	}
}'

curl -XPUT http://localhost:9200/my_index?prertty -d '
{
	"mappings":{
		"my_type":{
			"_source":{
				"ebable":false
			}
		}
	}
}'


curl -XGET http://localhost:9200/_search?pretty -d '
{
	"query":{
		"match_all":{}
	},
	"_source":["title", "created"]
}'

curl -XGET http://localhost:9200/_search?pretty -d '
{
	"match":{
		"_all": "john smith marketing"
	}
}'

curl -XPUT http://localhost:9200/my_index/_mapping/my_type?pretty -d '
{
	"my_type":{
		"_all": {
			"enabled":false
		}
	}
}'

curl -XPUT http://localhost:9200/my_index/my_type/_mapping?pretty -d '
{
	"my_type":{
		"_all": {
			"analyzer":"whitespace"
		}
	}
}'

curl -XPUT http://localhost:9200/my_index?pretty -d '
{
	"mapping":{
		"my_type":{
			"_id":{
				"path":"doc_id"
			},
			"properties":{
				"doc_id":{
					"type":"string",
					"index":"not_analyzed"
				}
			}
		}
	}
}'

curl -XPOST http://localhost:9200/my_index/my_type?pretty -d '
{
	"doc_id":"123"
}'

  • Elasticsearch

    Elasticsearch 是一个基于 Lucene 的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于 RESTful 接口。Elasticsearch 是用 Java 开发的,并作为 Apache 许可条款下的开放源码发布,是当前流行的企业级搜索引擎。设计用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便。

    117 引用 • 99 回帖 • 212 关注

相关帖子

欢迎来到这里!

我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。

注册 关于
请输入回帖内容 ...
mubai
洛阳亲友如相问,就说我在写代码 杭州

推荐标签 标签

  • jsoup

    jsoup 是一款 Java 的 HTML 解析器,可直接解析某个 URL 地址、HTML 文本内容。它提供了一套非常省力的 API,可通过 DOM,CSS 以及类似于 jQuery 的操作方法来取出和操作数据。

    6 引用 • 1 回帖 • 477 关注
  • Electron

    Electron 基于 Chromium 和 Node.js,让你可以使用 HTML、CSS 和 JavaScript 构建应用。它是一个由 GitHub 及众多贡献者组成的活跃社区共同维护的开源项目,兼容 Mac、Windows 和 Linux,它构建的应用可在这三个操作系统上面运行。

    15 引用 • 136 回帖 • 1 关注
  • 分享

    有什么新发现就分享给大家吧!

    248 引用 • 1792 回帖
  • Kubernetes

    Kubernetes 是 Google 开源的一个容器编排引擎,它支持自动化部署、大规模可伸缩、应用容器化管理。

    110 引用 • 54 回帖
  • 安装

    你若安好,便是晴天。

    132 引用 • 1184 回帖
  • Linux

    Linux 是一套免费使用和自由传播的类 Unix 操作系统,是一个基于 POSIX 和 Unix 的多用户、多任务、支持多线程和多 CPU 的操作系统。它能运行主要的 Unix 工具软件、应用程序和网络协议,并支持 32 位和 64 位硬件。Linux 继承了 Unix 以网络为核心的设计思想,是一个性能稳定的多用户网络操作系统。

    943 引用 • 943 回帖
  • 知乎

    知乎是网络问答社区,连接各行各业的用户。用户分享着彼此的知识、经验和见解,为中文互联网源源不断地提供多种多样的信息。

    10 引用 • 66 回帖
  • RabbitMQ

    RabbitMQ 是一个开源的 AMQP 实现,服务器端用 Erlang 语言编写,支持多种语言客户端,如:Python、Ruby、.NET、Java、C、PHP、ActionScript 等。用于在分布式系统中存储转发消息,在易用性、扩展性、高可用性等方面表现不俗。

    49 引用 • 60 回帖 • 362 关注
  • LaTeX

    LaTeX(音译“拉泰赫”)是一种基于 ΤΕΧ 的排版系统,由美国计算机学家莱斯利·兰伯特(Leslie Lamport)在 20 世纪 80 年代初期开发,利用这种格式,即使使用者没有排版和程序设计的知识也可以充分发挥由 TeX 所提供的强大功能,能在几天,甚至几小时内生成很多具有书籍质量的印刷品。对于生成复杂表格和数学公式,这一点表现得尤为突出。因此它非常适用于生成高印刷质量的科技和数学类文档。

    12 引用 • 54 回帖 • 65 关注
  • 工具

    子曰:“工欲善其事,必先利其器。”

    286 引用 • 729 回帖
  • 阿里云

    阿里云是阿里巴巴集团旗下公司,是全球领先的云计算及人工智能科技公司。提供云服务器、云数据库、云安全等云计算服务,以及大数据、人工智能服务、精准定制基于场景的行业解决方案。

    89 引用 • 345 回帖
  • 倾城之链
    23 引用 • 66 回帖 • 136 关注
  • 宕机

    宕机,多指一些网站、游戏、网络应用等服务器一种区别于正常运行的状态,也叫“Down 机”、“当机”或“死机”。宕机状态不仅仅是指服务器“挂掉了”、“死机了”状态,也包括服务器假死、停用、关闭等一些原因而导致出现的不能够正常运行的状态。

    13 引用 • 82 回帖 • 51 关注
  • Caddy

    Caddy 是一款默认自动启用 HTTPS 的 HTTP/2 Web 服务器。

    12 引用 • 54 回帖 • 165 关注
  • Vue.js

    Vue.js(读音 /vju ː/,类似于 view)是一个构建数据驱动的 Web 界面库。Vue.js 的目标是通过尽可能简单的 API 实现响应的数据绑定和组合的视图组件。

    266 引用 • 665 回帖
  • SOHO

    为成为自由职业者在家办公而努力吧!

    7 引用 • 55 回帖 • 19 关注
  • 服务器

    服务器,也称伺服器,是提供计算服务的设备。由于服务器需要响应服务请求,并进行处理,因此一般来说服务器应具备承担服务并且保障服务的能力。

    125 引用 • 588 回帖
  • Angular

    AngularAngularJS 的新版本。

    26 引用 • 66 回帖 • 537 关注
  • Wide

    Wide 是一款基于 Web 的 Go 语言 IDE。通过浏览器就可以进行 Go 开发,并有代码自动完成、查看表达式、编译反馈、Lint、实时结果输出等功能。

    欢迎访问我们运维的实例: https://wide.b3log.org

    30 引用 • 218 回帖 • 628 关注
  • ActiveMQ

    ActiveMQ 是 Apache 旗下的一款开源消息总线系统,它完整实现了 JMS 规范,是一个企业级的消息中间件。

    19 引用 • 13 回帖 • 671 关注
  • etcd

    etcd 是一个分布式、高可用的 key-value 数据存储,专门用于在分布式系统中保存关键数据。

    5 引用 • 26 回帖 • 528 关注
  • DevOps

    DevOps(Development 和 Operations 的组合词)是一组过程、方法与系统的统称,用于促进开发(应用程序/软件工程)、技术运营和质量保障(QA)部门之间的沟通、协作与整合。

    47 引用 • 25 回帖
  • Sillot

    Insights(注意当前设置 master 为默认分支)

    汐洛彖夲肜矩阵(Sillot T☳Converbenk Matrix),致力于服务智慧新彖乄,具有彖乄驱动、极致优雅、开发者友好的特点。其中汐洛绞架(Sillot-Gibbet)基于自思源笔记(siyuan-note),前身是思源笔记汐洛版(更早是思源笔记汐洛分支),是智慧新录乄终端(多端融合,移动端优先)。

    主仓库地址:Hi-Windom/Sillot

    文档地址:sillot.db.sc.cn

    注意事项:

    1. ⚠️ 汐洛仍在早期开发阶段,尚不稳定
    2. ⚠️ 汐洛并非面向普通用户设计,使用前请了解风险
    3. ⚠️ 汐洛绞架基于思源笔记,开发者尽最大努力与思源笔记保持兼容,但无法实现 100% 兼容
    29 引用 • 25 回帖 • 85 关注
  • iOS

    iOS 是由苹果公司开发的移动操作系统,最早于 2007 年 1 月 9 日的 Macworld 大会上公布这个系统,最初是设计给 iPhone 使用的,后来陆续套用到 iPod touch、iPad 以及 Apple TV 等产品上。iOS 与苹果的 Mac OS X 操作系统一样,属于类 Unix 的商业操作系统。

    85 引用 • 139 回帖 • 1 关注
  • Eclipse

    Eclipse 是一个开放源代码的、基于 Java 的可扩展开发平台。就其本身而言,它只是一个框架和一组服务,用于通过插件组件构建开发环境。

    75 引用 • 258 回帖 • 617 关注
  • 新人

    让我们欢迎这对新人。哦,不好意思说错了,让我们欢迎这位新人!
    新手上路,请谨慎驾驶!

    52 引用 • 228 回帖
  • Hadoop

    Hadoop 是由 Apache 基金会所开发的一个分布式系统基础架构。用户可以在不了解分布式底层细节的情况下,开发分布式程序。充分利用集群的威力进行高速运算和存储。

    86 引用 • 122 回帖 • 625 关注