elasticsearch(三)----索引建立與刪除
1.建立非結構化索引
- 在Lucene中,建立索引是需要定義欄位名稱以及欄位的型別的,在Elasticsearch中提供了非結構化的索引,就是不需要建立索引結構,即可寫入資料到索引中,實際上在Elasticsearch底層會進行結構化操作,此操作對使用者是透明的。
1.1建立空索引(相當於建立表)
- 方法一 : 開啟postman --> 設定為 put請求 --> http://es所在伺服器的ip:9200/索引名稱
PUT http://localhost:9200/haoke
{
"settings": {
"index": {
"number_of_shards": "2", #分片數
"number_of_replicas": "0" #副本數
}
}
}
- 方法二 : 直接使用head外掛建立
2.刪除索引
- 方法一 : postman --> 使用delete請求 --> http://es所在伺服器的ip:9200/索引名稱
相關文章
- ElasticSearch分片互動過程(建立索引、刪除索引、查詢索引)Elasticsearch索引
- Mysql索引的建立與刪除MySql索引
- 資料庫 - 索引、基本表建立與刪除資料庫索引
- elasticsearch按照日期定時批量刪除索引Elasticsearch索引
- mongodb建立索引和刪除索引和背景索引backgroundMongoDB索引
- ElasticSearch建立索引Elasticsearch索引
- MySQL建立索引、修改索引、刪除索引的命令語句MySql索引
- mysql 建立和刪除聯合索引MySql索引
- 【Mongo】MongoDB索引管理-索引的建立、檢視、刪除MongoDB索引
- Elasticsearch 刪除文件Elasticsearch
- Lucene中建立索引的效率和刪除索引的實現索引
- oracle資料庫建立、刪除索引等操作Oracle資料庫索引
- mysql刪除主鍵索引,刪除索引語法MySql索引
- 刪除elasticsearch資料Elasticsearch
- 《Elasticsearch技術解析與實戰》Chapter 2.1 Elasticsearch索引增刪改查ElasticsearchAPT索引
- Elasticsearch(三):索引查詢Elasticsearch索引
- [MYSQL] 資料庫建立與刪除MySql資料庫
- elasticsearch日誌刪除命令Elasticsearch
- Elasticsearch5.x建立索引(Java)ElasticsearchH5索引Java
- Elasticsearch增刪改查 之 —— Delete刪除Elasticsearchdelete
- PostgreSQL:資料庫的建立與刪除SQL資料庫
- MySQ索引操作命令總結(建立、重建、查詢和刪除索引命令詳解)索引
- SQL Server實戰三:資料庫表完整性約束及索引、檢視的建立、編輯與刪除SQLServer資料庫索引
- python建立elasticsearch索引的探討PythonElasticsearch索引
- DataFrame刪除複合索引索引
- 61_索引管理_快速上機動手實戰建立、修改以及刪除索引索引
- Oracle 12c 建立與刪除CDB、PDBsOracle
- ElasticSearch5.x 刪除資料ElasticsearchH5
- MongoDB 資料庫建立刪除、表(集合)建立刪除、資料增刪改查MongoDB資料庫
- MySQL 5.5 刪除索引的方法MySql索引
- oracle db link的檢視建立與刪除Oracle
- 建立元素和刪除元素
- Git分支建立和刪除Git
- JavaScript 建立和刪除元素JavaScript
- Oracle序列使用:建立、刪除Oracle
- openGauss 建立-刪除MOT
- 【Elasticsearch】Elasticsearch 索引模板Elasticsearch索引
- Elasticsearch6.2.4-利用head外掛建立索引Elasticsearch索引