学习 Elasticsearch 敲过的指令

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

—— 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 回帖 • 209 关注

相关帖子

欢迎来到这里!

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

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

推荐标签 标签

  • 微软

    微软是一家美国跨国科技公司,也是世界 PC 软件开发的先导,由比尔·盖茨与保罗·艾伦创办于 1975 年,公司总部设立在华盛顿州的雷德蒙德(Redmond,邻近西雅图)。以研发、制造、授权和提供广泛的电脑软件服务业务为主。

    8 引用 • 44 回帖
  • LaTeX

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

    12 引用 • 54 回帖 • 49 关注
  • OkHttp

    OkHttp 是一款 HTTP & HTTP/2 客户端库,专为 Android 和 Java 应用打造。

    16 引用 • 6 回帖 • 75 关注
  • SEO

    发布对别人有帮助的原创内容是最好的 SEO 方式。

    35 引用 • 200 回帖 • 27 关注
  • 阿里云

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

    89 引用 • 345 回帖 • 1 关注
  • 周末

    星期六到星期天晚,实行五天工作制后,指每周的最后两天。再过几年可能就是三天了。

    14 引用 • 297 回帖
  • InfluxDB

    InfluxDB 是一个开源的没有外部依赖的时间序列数据库。适用于记录度量,事件及实时分析。

    2 引用 • 76 关注
  • C++

    C++ 是在 C 语言的基础上开发的一种通用编程语言,应用广泛。C++ 支持多种编程范式,面向对象编程、泛型编程和过程化编程。

    107 引用 • 153 回帖
  • Python

    Python 是一种面向对象、直译式电脑编程语言,具有近二十年的发展历史,成熟且稳定。它包含了一组完善而且容易理解的标准库,能够轻松完成很多常见的任务。它的语法简捷和清晰,尽量使用无异义的英语单词,与其它大多数程序设计语言使用大括号不一样,它使用缩进来定义语句块。

    545 引用 • 672 回帖
  • CAP

    CAP 指的是在一个分布式系统中, Consistency(一致性)、 Availability(可用性)、Partition tolerance(分区容错性),三者不可兼得。

    11 引用 • 5 回帖 • 612 关注
  • 反馈

    Communication channel for makers and users.

    123 引用 • 913 回帖 • 250 关注
  • 支付宝

    支付宝是全球领先的独立第三方支付平台,致力于为广大用户提供安全快速的电子支付/网上支付/安全支付/手机支付体验,及转账收款/水电煤缴费/信用卡还款/AA 收款等生活服务应用。

    29 引用 • 347 回帖 • 5 关注
  • 人工智能

    人工智能(Artificial Intelligence)是研究、开发用于模拟、延伸和扩展人的智能的理论、方法、技术及应用系统的一门技术科学。

    135 引用 • 190 回帖
  • Ngui

    Ngui 是一个 GUI 的排版显示引擎和跨平台的 GUI 应用程序开发框架,基于
    Node.js / OpenGL。目标是在此基础上开发 GUI 应用程序可拥有开发 WEB 应用般简单与速度同时兼顾 Native 应用程序的性能与体验。

    7 引用 • 9 回帖 • 394 关注
  • FFmpeg

    FFmpeg 是一套可以用来记录、转换数字音频、视频,并能将其转化为流的开源计算机程序。

    23 引用 • 32 回帖 • 1 关注
  • V2Ray
    1 引用 • 15 回帖 • 1 关注
  • 小说

    小说是以刻画人物形象为中心,通过完整的故事情节和环境描写来反映社会生活的文学体裁。

    28 引用 • 108 回帖
  • H2

    H2 是一个开源的嵌入式数据库引擎,采用 Java 语言编写,不受平台的限制,同时 H2 提供了一个十分方便的 web 控制台用于操作和管理数据库内容。H2 还提供兼容模式,可以兼容一些主流的数据库,因此采用 H2 作为开发期的数据库非常方便。

    11 引用 • 54 回帖 • 653 关注
  • sts
    2 引用 • 2 回帖 • 197 关注
  • jsoup

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

    6 引用 • 1 回帖 • 483 关注
  • CloudFoundry

    Cloud Foundry 是 VMware 推出的业界第一个开源 PaaS 云平台,它支持多种框架、语言、运行时环境、云平台及应用服务,使开发人员能够在几秒钟内进行应用程序的部署和扩展,无需担心任何基础架构的问题。

    5 引用 • 18 回帖 • 172 关注
  • GAE

    Google App Engine(GAE)是 Google 管理的数据中心中用于 WEB 应用程序的开发和托管的平台。2008 年 4 月 发布第一个测试版本。目前支持 Python、Java 和 Go 开发部署。全球已有数十万的开发者在其上开发了众多的应用。

    14 引用 • 42 回帖 • 779 关注
  • IDEA

    IDEA 全称 IntelliJ IDEA,是一款 Java 语言开发的集成环境,在业界被公认为最好的 Java 开发工具之一。IDEA 是 JetBrains 公司的产品,这家公司总部位于捷克共和国的首都布拉格,开发人员以严谨著称的东欧程序员为主。

    181 引用 • 400 回帖
  • 互联网

    互联网(Internet),又称网际网络,或音译因特网、英特网。互联网始于 1969 年美国的阿帕网,是网络与网络之间所串连成的庞大网络,这些网络以一组通用的协议相连,形成逻辑上的单一巨大国际网络。

    98 引用 • 344 回帖
  • abitmean

    有点意思就行了

    27 关注
  • 智能合约

    智能合约(Smart contract)是一种旨在以信息化方式传播、验证或执行合同的计算机协议。智能合约允许在没有第三方的情况下进行可信交易,这些交易可追踪且不可逆转。智能合约概念于 1994 年由 Nick Szabo 首次提出。

    1 引用 • 11 回帖 • 2 关注
  • Hadoop

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

    86 引用 • 122 回帖 • 626 关注