Skip to content

Instantly share code, notes, and snippets.

@Luckodjo
Luckodjo / bash_strict_mode.md
Created February 13, 2023 15:45 — forked from lktslionel/bash_strict_mode.md
set -e, -u, -o pipefail explanation

set -e, -u, -o pipefail

The "set" lines These lines deliberately cause your script to fail. Wait, what? Believe me, this is a good thing. With these settings, certain common errors will cause the script to immediately fail, explicitly and loudly. Otherwise, you can get hidden bugs that are discovered only when they blow up in production.

set -euo pipefail is short for:

set -e
set -u
@Luckodjo
Luckodjo / json-to-ndjson.md
Created November 18, 2022 04:30 — forked from bzerangue/json-to-ndjson.md
JSON to NDJSON

NDJSON is a convenient format for storing or streaming structured data that may be processed one record at a time.

  • Each line is a valid JSON value
  • Line separator is ‘\n’

1. Convert JSON to NDJSON?

cat test.json | jq -c '.[]' > testNDJSON.json
@Luckodjo
Luckodjo / es_reindexer.py
Created November 16, 2022 14:40 — forked from evantha/es_reindexer.py
A python script that can copy data from an index or daily indexes from one elasticsearch cluster to another.
#!/usr/bin/env python
__author__ = "Evantha Manikpura"
import datetime
import argparse
from elasticsearch import Elasticsearch
ES_WRITER = None
@Luckodjo
Luckodjo / es_backup.sh
Created November 14, 2022 05:33 — forked from ctgswallow/es_backup.sh
Elasticsearch backup script
#!/bin/bash
################################################################
##### script to backup lucene index from elastic search ####
################################################################
# Shamelessly copied from https://gist.github.com/nherment/1939828
NOW=`date +%Y%m%d%H%M%S`