nox
nox copied to clipboard
Elasticsearch ops management tooling
https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-settings.html https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-mapping.html
For context: 
I think a screenshot is probably the lowest-effort way to demonstrate this:  For context, this came about during the screenshot above when I tried to do this: ```sh until...
https://www.elastic.co/guide/en/elasticsearch/reference/5.6/indices-aliases.html should map roughly to the index alias ES api. e.g. ``` $ nox alias create ... $ nox alias delete ... $ nox alias show ...
GitHub Action? Do we use those here?
Currently what we do is something like ```sh nox cat indices | grep -e 'my_cool_index' -e 'status' ``` and if you don't remember to add the `-e 'status'` bit, you...
Tried running `nox kibana` in tugboat, having gone into the Elasticsearch stateful set for a deployment, and got this: ``` root@pz01-procore-elasticsearch-0:/usr/share/elasticsearch# nox kibana panic: runtime error: slice bounds out of...
curl approach to see the fields: ``` curl localhost:9200/_mappings | jq '.drawing_revisions_1_2_1.mappings.drawing_revisions.properties | keys' ``` Input: name of index Output: names of attributes - Is displaying the "type" of the...
the ETL command should be able to 1) use any function defined in `cmd/nox/internal/algorithms` and 2) be able to use any function defined by the user at runtime.