Elasticsearch in Action (second edition) Book
The book's accompanying wiki pages explains the code examples
Here's the TOC
- Overview
- Getting Started
- Architecture
- Mapping
- Working with Documents
- Indexing Operations
- Text Analysis
- Search Basics
- Term Level Queries
- Full Text Queries
- Compound Queries
- Advanced Queries
- Aggregations
- Administration
- Performance and Troubleshooting
- Appendix A: Installing and configuring Elasticsearch and Kibana
- Appendix B: Ingest Pipelines
By default, 8.x version of Elasticsearch comes with security enabled. For simplicity and not getting the security in our way, we can disable the feature
⚠️ PLEASE DO NOT disable security in PRODUCTION
Edit config/elasticsearch.yml to add the following property at the end of the file:
xpack.security.enabled: false