Home
Softono

Running Elasticsearch Fun Profit

Open source MIT
806
Stars
222
Forks
14
Issues
47
Watchers
5 years
Last Commit

 About Running Elasticsearch Fun Profit

A book about running Elasticsearch

Platforms

Web Self-hosted

Need Help Installing Running Elasticsearch Fun Profit?

We provide expert installation service for this software. Our team will install, configure, and secure Running Elasticsearch Fun Profit on your server. plans start at just $30.

Running Elasticsearch Fun Profit

View on GitHub
WIP, COVERS ELASTICSEARCH 5.5.x, UPDATING TO ES 6.5.x

Operating Elasticsearch

for Fun and Profit


Fred de Villamil


Read online


Code of Conduct

  • Behave like normal, friendly, welcoming human beings or get the hell out.
  • Any reference to a non scientific, verifiable element is irrelevant.

TOC


Styling

This is the Markdown styling used in this book. If you plan to contribute, please use it.

Chapter title

# This is a chapter title

Chapter part

---

## A chapter part title is preceded by an horizontal line

Chapter subpart

### A level 1 subpart
#### A level 2 subpart

Images

![An image should have an alt text](use/a/relative.link)

Code:

An `inline code block` goes like this

API calls go the Curl way

curl -X POST "localhost:9200/_search" -H 'Content-Type: application/json' -d'
{
    "query" : {
        "match_all" : {}
    },
    "stats" : ["group1", "group2"]
}
'

Yaml code is expanded for more readability

---
some:
  value:
    goes: "like this"

Links

[An internal link](has/a/relative.path)
[An external link](https://has.an.absolute/path)

Lists

Urdered lists:

Only one line break between a paragraph and

* An
* unordered
* list
	* with
	* subitems

Ordered lists:

1. An
2. Ordered
3. List
	1. With
	2. subitems