This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This code is released into the public domain under the Creative Commons Zero (CC0) license. | |
# You can copy, modify, distribute, and perform the work, even for commercial purposes, all without asking permission. | |
# For more information, see https://creativecommons.org/publicdomain/zero/1.0/ | |
import re | |
from collections import defaultdict | |
def normalise_column_name(x): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:5.2.0 | |
container_name: elasticsearch | |
environment: | |
- cluster.name=elasticsearch | |
- bootstrap.memory_lock=true | |
- "ES_JAVA_OPTS=-Xms512m -Xmx512m" | |
ulimits: |