All Projects → fdv → Running Elasticsearch Fun Profit

fdv / Running Elasticsearch Fun Profit

Licence: mit
A book about running Elasticsearch

Projects that are alternatives of or similar to Running Elasticsearch Fun Profit

Laravel Book
Up to date Epub, Mobi and PDF versions from the official Laravel Docs
Stars: ✭ 221 (-66.72%)
Mutual labels:  documentation, ebook
Elasticsearch Full
full-scale introduce for elasticsearch
Stars: ✭ 182 (-72.59%)
Mutual labels:  documentation, elasticsearch
Wazuh Documentation
Wazuh - Project documentation
Stars: ✭ 82 (-87.65%)
Mutual labels:  documentation, elasticsearch
Api.rss
RSS as RESTful. This service allows you to transform RSS feed into an awesome API.
Stars: ✭ 340 (-48.8%)
Mutual labels:  bigdata, elasticsearch
Elasticsuite
Smile ElasticSuite - Magento 2 merchandising and search engine built on ElasticSearch
Stars: ✭ 647 (-2.56%)
Mutual labels:  elasticsearch
Semantic logger
Semantic Logger is a feature rich logging framework, and replacement for existing Ruby & Rails loggers.
Stars: ✭ 611 (-7.98%)
Mutual labels:  elasticsearch
Pyes
Python connector for ElasticSearch - the pythonic way to use ElasticSearch
Stars: ✭ 606 (-8.73%)
Mutual labels:  elasticsearch
Docs
LeanCloud Documentation
Stars: ✭ 585 (-11.9%)
Mutual labels:  documentation
Elasticsearch Operator
manages elasticsearch clusters
Stars: ✭ 660 (-0.6%)
Mutual labels:  elasticsearch
Gem
💎 GUI for Data Modeling with Elasticsearch
Stars: ✭ 654 (-1.51%)
Mutual labels:  elasticsearch
Familybucket
集合.net core、ocelot、consul、netty、rpc、eventbus、configserver、tracing、sqlsugar、vue-admin、基础管理平台等构建的微服务一条龙应用
Stars: ✭ 629 (-5.27%)
Mutual labels:  elasticsearch
Documentation
📖 documentation for modern JavaScript
Stars: ✭ 5,443 (+719.73%)
Mutual labels:  documentation
Netaddr
A network address manipulation library for Python
Stars: ✭ 648 (-2.41%)
Mutual labels:  sysadmin
Vulcanizer
GitHub's ops focused Elasticsearch library
Stars: ✭ 608 (-8.43%)
Mutual labels:  elasticsearch
Epr
CLI Epub Reader
Stars: ✭ 657 (-1.05%)
Mutual labels:  ebook
Pdoc
🐍 ➡️ 📜 Auto-generate API documentation for Python projects
Stars: ✭ 604 (-9.04%)
Mutual labels:  documentation
Reactjs.org
The React documentation website
Stars: ✭ 6,697 (+908.58%)
Mutual labels:  documentation
Bootstrap4 Offline Docs
Bootstrap 4.4 offline documentation
Stars: ✭ 655 (-1.36%)
Mutual labels:  documentation
Elasticsearch Dump
Import and export tools for elasticsearch
Stars: ✭ 5,977 (+800.15%)
Mutual labels:  elasticsearch
Dev Setup
macOS development environment setup: Easy-to-understand instructions with automated setup scripts for developer tools like Vim, Sublime Text, Bash, iTerm, Python data analysis, Spark, Hadoop MapReduce, AWS, Heroku, JavaScript web development, Android development, common data stores, and dev-based OS X defaults.
Stars: ✭ 5,590 (+741.87%)
Mutual labels:  elasticsearch
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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].