Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
20 changed files
with
959 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
*.rst | ||
*.in | ||
LICENSE | ||
NOTICE | ||
env | ||
userale | ||
es | ||
docs | ||
doc_requirements.txt | ||
docker | ||
docker-compose.yml |
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Apache Distill Production Docker build | ||
|
||
version: "2" | ||
services: | ||
distill: | ||
build: | ||
context: . | ||
dockerfile: ./docker/distill/Dockerfile | ||
container_name: distill | ||
ports: | ||
- 8090:8090 | ||
depends_on: | ||
- elasticsearch | ||
links: | ||
- elasticsearch | ||
# Web server | ||
#webserver: | ||
# build: ./docker/webserver | ||
# container_name: webserver | ||
# links: | ||
# - distill | ||
# ELK Stack | ||
elasticsearch: | ||
build: ./docker/es | ||
container_name: elastic | ||
ports: | ||
- 9200:9200 | ||
- 9300:9300 | ||
volumes: | ||
- ./es/data:/usr/share/elasticsearch/data | ||
- ./es/logs:/usr/share/elasticsearch/logs | ||
kibana: | ||
build: ./docker/kibana | ||
container_name: kibana | ||
ports: | ||
- 5601:5601 | ||
depends_on: | ||
- elasticsearch | ||
links: | ||
- elasticsearch | ||
logstash: | ||
build: ./docker/logstash | ||
container_name: logstash | ||
command: logstash -f /etc/logstash/conf.d/logstash.conf | ||
volumes: | ||
- ./userale:/var/log/sennsoft | ||
depends_on: | ||
- elasticsearch | ||
links: | ||
- elasticsearch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
FROM python:2 | ||
|
||
# install system wide deps | ||
RUN apt-get -yqq update | ||
|
||
# Add code | ||
WORKDIR /app | ||
|
||
ADD ./requirements.txt /app | ||
|
||
# Install Distill dependencies | ||
RUN pip install -r requirements.txt | ||
|
||
# Expose Ports | ||
EXPOSE 8090 | ||
|
||
# Rest | ||
ADD . /app | ||
RUN python setup.py develop | ||
CMD python distill/server.py |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
description "Gunicorn application server running Apache Distill" | ||
|
||
# Restart process if it ever fails | ||
start on runlevel [2345] | ||
stop on runlevel [!2345] | ||
|
||
respawn | ||
#Setup user and group that Gunicorn should be run as | ||
setuid nobody | ||
setgid www-data | ||
|
||
# Path to run_server | ||
chdir /path/to/distill | ||
exec gunicorn -c "gunicorn.cfg" scripts/run_server:app |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Ubuntu Xenial 16.04 [LTS] | ||
FROM ubuntu:16.04 | ||
|
||
# install system wide deps | ||
RUN apt-get -yqq update | ||
RUN apt-get -yqq install openjdk-8-jre | ||
|
||
RUN apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys 46095ACC8548582C1A2699A9D27D666CD88E42B4 | ||
|
||
ENV ELASTICSEARCH_VERSION 2.3.5 | ||
ENV ELASTICSEARCH_REPO_BASE http://packages.elasticsearch.org/elasticsearch/2.x/debian | ||
|
||
RUN echo "deb $ELASTICSEARCH_REPO_BASE stable main" > /etc/apt/sources.list.d/elasticsearch.list | ||
|
||
# install elasticsearch | ||
RUN set -x \ | ||
&& apt-get -yqq update \ | ||
&& apt-get -yqq install --no-install-recommends elasticsearch=$ELASTICSEARCH_VERSION \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
ENV PATH /usr/share/elasticsearch/bin:$PATH | ||
|
||
WORKDIR /usr/share/elasticsearch | ||
|
||
RUN set -ex \ | ||
&& for path in \ | ||
./data \ | ||
./logs \ | ||
./config \ | ||
./config/scripts \ | ||
; do \ | ||
mkdir -p "$path"; \ | ||
chown -R elasticsearch:elasticsearch "$path"; \ | ||
done | ||
|
||
COPY elasticsearch.yml /usr/share/elasticsearch/config | ||
COPY logging.yml /usr/share/elasticsearch/config | ||
|
||
USER elasticsearch | ||
|
||
# Install Elastic-HQ | ||
RUN plugin install royrusso/elasticsearch-HQ/2.0.3 | ||
|
||
CMD ["elasticsearch"] | ||
|
||
# Run on ports 9200 & 9300 | ||
EXPOSE 9200 9300 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
# ======================== Elasticsearch Configuration ========================= | ||
# | ||
# NOTE: Elasticsearch comes with reasonable defaults for most settings. | ||
# Before you set out to tweak and tune the configuration, make sure you | ||
# understand what are you trying to accomplish and the consequences. | ||
# | ||
# The primary way of configuring a node is via this file. This template lists | ||
# the most important settings you may want to configure for a production cluster. | ||
# | ||
# Please see the documentation for further information on configuration options: | ||
# <http://www.elastic.co/guide/en/elasticsearch/reference/current/setup-configuration.html> | ||
# | ||
# ---------------------------------- Cluster ----------------------------------- | ||
# | ||
# Use a descriptive name for your cluster: | ||
# | ||
cluster.name: SensSoft | ||
# | ||
# ------------------------------------ Node ------------------------------------ | ||
# | ||
# Use a descriptive name for the node: | ||
# | ||
node.name: soft-01 | ||
# | ||
# Add custom attributes to the node: | ||
# | ||
# node.rack: r1 | ||
# | ||
# ----------------------------------- Paths ------------------------------------ | ||
# | ||
# Path to directory where to store the data (separate multiple locations by comma): | ||
# | ||
path.data: /usr/share/elasticsearch/data | ||
# | ||
# Path to log files: | ||
# | ||
path.logs: /usr/share/elasticsearch/logs | ||
# | ||
# ----------------------------------- Memory ----------------------------------- | ||
# | ||
# Lock the memory on startup: | ||
# | ||
# bootstrap.mlockall: true | ||
# | ||
# Make sure that the `ES_HEAP_SIZE` environment variable is set to about half the memory | ||
# available on the system and that the owner of the process is allowed to use this limit. | ||
# | ||
# Elasticsearch performs poorly when the system is swapping the memory. | ||
# | ||
# ---------------------------------- Network ----------------------------------- | ||
# | ||
# Set the bind address to a specific IP (IPv4 or IPv6): | ||
# | ||
network.host: 0.0.0.0 | ||
# | ||
# Set a custom port for HTTP: | ||
# | ||
# http.port: 9200 | ||
# | ||
# For more information, see the documentation at: | ||
# <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-network.html> | ||
# | ||
# --------------------------------- Discovery ---------------------------------- | ||
# | ||
# Pass an initial list of hosts to perform discovery when new node is started: | ||
# The default list of hosts is ["127.0.0.1", "[::1]"] | ||
# | ||
# discovery.zen.ping.unicast.hosts: ["host1", "host2"] | ||
# | ||
# Prevent the "split brain" by configuring the majority of nodes (total number of nodes / 2 + 1): | ||
# | ||
# discovery.zen.minimum_master_nodes: 3 | ||
# | ||
# For more information, see the documentation at: | ||
# <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-discovery.html> | ||
# | ||
# ---------------------------------- Gateway ----------------------------------- | ||
# | ||
# Block initial recovery after a full cluster restart until N nodes are started: | ||
# | ||
# gateway.recover_after_nodes: 3 | ||
# | ||
# For more information, see the documentation at: | ||
# <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-gateway.html> | ||
# | ||
# ---------------------------------- Various ----------------------------------- | ||
# | ||
# Disable starting multiple nodes on a single system: | ||
# | ||
# node.max_local_storage_nodes: 1 | ||
# | ||
# Require explicit names when deleting indices: | ||
# | ||
# action.destructive_requires_name: true |
Oops, something went wrong.