Catatan Seekor Elasticsearch
Fundamental
Basic Concepts
Index Management
// Create Index
PUT /my_index
{
"settings": {
"number_of_shards": 3,
"number_of_replicas": 1
},
"mappings": {
"properties": {
"title": {
"type": "text",
"analyzer": "standard"
},
"content": {
"type": "text",
"analyzer": "standard"
},
"created_at": {
"type": "date"
}
}
}
}
// Get Index Info
GET /my_index
// Delete Index
DELETE /my_indexDocument Operations
Search Queries
Basic Search
Advanced Queries
Aggregations
Mapping & Analysis
Field Types
Analyzers
Performance & Optimization
Index Settings
Query Optimization
Monitoring & Management
Cluster Health
Reindex API
Best Practices
Index Design
Query Optimization
Monitoring
Tools & Integrations
Kibana
Logstash
Beats
Last updated