Skip to content

Instantly share code, notes, and snippets.

View thiagarajan-n's full-sized avatar

Thiagu Nagappan thiagarajan-n

View GitHub Profile
@thiagarajan-n
thiagarajan-n / pom.xml
Created July 30, 2019 15:14
pom file for AWSCustomEL
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed 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,
#
# Copyright 2017 StreamSets Inc.
#
# Licensed 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
FROM centos:6
RUN yum -y update && yum clean all
ARG FULLTARBALL_URL=http://archives.streamsets.com/datacollector/3.6.0/tarball/streamsets-datacollector-all-3.6.0.tgz
RUN mkdir /opt/local
RUN curl -o /tmp/sdc.tgz -L ${FULLTARBALL_URL}
RUN tar xzf /tmp/sdc.tgz --strip-components 1 -C /opt/local/
@thiagarajan-n
thiagarajan-n / docker-compose.yml
Created November 28, 2018 02:06
To Run streamiest Data Collector with elastic search cluster
version: "3"
services:
sdc:
image: streamsets/datacollector
ports:
- 18630:18630
container_name: sdc
restart: on-failure
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.5.1