-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FLUME-3415 - Provide Docker image for Flume #351
base: trunk
Are you sure you want to change the base?
Changes from all commits
b61c4c5
31d99d3
39042bd
fdc31cf
d749050
1f19ec5
81773b8
5e8fc3b
ac262b2
87dc92a
5f8f981
877337a
caa2745
ccbbda7
bf2b41b
d733b3f
d2bd781
fdb3a76
67664ab
28370c2
7571738
6a37230
e024d5f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# 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. | ||
# | ||
|
||
ARG IMAGE_NAME=adoptopenjdk/openjdk8 | ||
ARG IMAGE_TAG=centos-jre | ||
|
||
FROM ${IMAGE_NAME}:${IMAGE_TAG} | ||
|
||
ARG ASSEMBLY_VERSION | ||
ARG MAINTAINER="Apache Flume <[email protected]>" | ||
tmgstevens marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
LABEL org.opencontainers.image.authors="${MAINTAINER}" | ||
LABEL site="https://flume.apache.org" | ||
|
||
COPY target/apache-flume-${ASSEMBLY_VERSION}-bin/apache-flume-${ASSEMBLY_VERSION}-bin/ /etc/flume/ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we shouldn't be putting executables into |
||
|
||
RUN echo $ASSEMBLY_VERSION | ||
|
||
RUN groupadd --system flume && useradd --system --shell /bin/false -g flume flume | ||
|
||
WORKDIR /etc/flume | ||
RUN chown -R flume:flume /etc/flume | ||
USER flume | ||
ENTRYPOINT ["/etc/flume/bin/flume-ng"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,6 +91,29 @@ | |
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.spotify</groupId> | ||
<artifactId>dockerfile-maven-plugin</artifactId> | ||
<version>${dockerfile.version}</version> | ||
<!-- Wire up to the default build phases --> | ||
Comment on lines
+95
to
+98
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this plugin is in "public archived" status. we should treat it as EOL and should not rely on it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it's over here: |
||
<executions> | ||
<execution> | ||
<id>default</id> | ||
<goals> | ||
<goal>build</goal> | ||
<goal>push</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<repository>apache/flume</repository> | ||
<tag>${project.version}</tag> | ||
<buildArgs> | ||
<ASSEMBLY_VERSION>${project.version}</ASSEMBLY_VERSION> | ||
</buildArgs> | ||
<skip>${docker.skip}</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
/* | ||
* 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. | ||
*/ | ||
package org.apache.flume.test.agent; | ||
|
||
import com.google.common.base.Charsets; | ||
import com.google.common.io.Files; | ||
import org.apache.flume.test.util.DockerInstall; | ||
import org.junit.After; | ||
import org.junit.Assert; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import java.io.File; | ||
import java.util.ArrayList; | ||
|
||
import java.util.List; | ||
import java.util.Properties; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
public class TestFileChannelDocker { | ||
|
||
private static final Logger LOGGER = LoggerFactory.getLogger(TestFileChannelDocker.class); | ||
|
||
private static final List<File> tempResources = new ArrayList<File>(); | ||
|
||
private Properties agentProps; | ||
private File sinkOutputDir; | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
/* Create 3 temp dirs, each used as value within agentProps */ | ||
Comment on lines
+47
to
+49
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you should add a JUnit |
||
|
||
final File sinkOutputDir = Files.createTempDir(); | ||
sinkOutputDir.setWritable(true, false); | ||
sinkOutputDir.setReadable(true, false); | ||
tempResources.add(sinkOutputDir.getCanonicalFile()); | ||
final String sinkOutputDirPath = sinkOutputDir.getCanonicalPath(); | ||
LOGGER.info("Created rolling file sink's output dir: " + sinkOutputDirPath); | ||
|
||
final File channelCheckpointDir = Files.createTempDir(); | ||
channelCheckpointDir.setWritable(true, false); | ||
channelCheckpointDir.setReadable(true, false); | ||
tempResources.add(channelCheckpointDir.getCanonicalFile()); | ||
final String channelCheckpointDirPath = channelCheckpointDir.getCanonicalPath(); | ||
LOGGER.info("Created file channel's checkpoint dir: " + channelCheckpointDirPath); | ||
|
||
final File channelDataDir = Files.createTempDir(); | ||
channelDataDir.setWritable(true, false); | ||
channelDataDir.setReadable(true, false); | ||
tempResources.add(channelDataDir.getCanonicalFile()); | ||
final String channelDataDirPath = channelDataDir.getCanonicalPath(); | ||
LOGGER.info("Created file channel's data dir: " + channelDataDirPath); | ||
|
||
/* Build props to pass to flume agent */ | ||
|
||
Properties agentProps = new Properties(); | ||
|
||
// Active sets | ||
agentProps.put("a1.channels", "c1"); | ||
agentProps.put("a1.sources", "r1"); | ||
agentProps.put("a1.sinks", "k1"); | ||
|
||
// c1 | ||
agentProps.put("a1.channels.c1.type", "FILE"); | ||
agentProps.put("a1.channels.c1.checkpointDir", channelCheckpointDirPath); | ||
agentProps.put("a1.channels.c1.dataDirs", channelDataDirPath); | ||
|
||
// r1 | ||
agentProps.put("a1.sources.r1.channels", "c1"); | ||
agentProps.put("a1.sources.r1.type", "EXEC"); | ||
agentProps.put("a1.sources.r1.command", "seq 1 100"); | ||
|
||
// k1 | ||
agentProps.put("a1.sinks.k1.channel", "c1"); | ||
agentProps.put("a1.sinks.k1.type", "FILE_ROLL"); | ||
agentProps.put("a1.sinks.k1.sink.directory", sinkOutputDirPath); | ||
agentProps.put("a1.sinks.k1.sink.rollInterval", "0"); | ||
|
||
this.agentProps = agentProps; | ||
this.sinkOutputDir = sinkOutputDir; | ||
} | ||
|
||
@After | ||
public void tearDown() throws Exception { | ||
DockerInstall.getInstance().stopAgent(); | ||
for (File tempResource : tempResources) { | ||
tempResource.delete(); | ||
} | ||
agentProps = null; | ||
} | ||
|
||
/** | ||
* File channel in/out test. Verifies that all events inserted into the | ||
* file channel are received by the sink in order. | ||
* <p> | ||
* The EXEC source creates 100 events where the event bodies have | ||
* sequential numbers. The source puts those events into the file channel, | ||
* and the FILE_ROLL The sink is expected to take all 100 events in FIFO | ||
* order. | ||
* | ||
* @throws Exception | ||
*/ | ||
@Test | ||
public void testInOut() throws Exception { | ||
LOGGER.debug("testInOut() started."); | ||
|
||
|
||
DockerInstall.getInstance().startAgent("a1", agentProps, tempResources); | ||
Comment on lines
+100
to
+126
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there's a code smell here due to the agent start being in the test while the agent stop is in an after block. either start and stop should both be in the test, or the start should be in a before. |
||
TimeUnit.SECONDS.sleep(10); // Wait for source and sink to finish | ||
// TODO make this more deterministic | ||
|
||
/* Create expected output */ | ||
StringBuffer sb = new StringBuffer(); | ||
for (int i = 1; i <= 100; i++) { | ||
sb.append(i).append("\n"); | ||
} | ||
String expectedOutput = sb.toString(); | ||
LOGGER.info("Created expected output: " + expectedOutput); | ||
|
||
/* Create actual output file */ | ||
|
||
File[] sinkOutputDirChildren = sinkOutputDir.listFiles(); | ||
// Only 1 file should be in FILE_ROLL sink's dir (rolling is disabled) | ||
Assert.assertEquals("Expected FILE_ROLL sink's dir to have only 1 child," + | ||
" but found " + sinkOutputDirChildren.length + " children.", | ||
1, sinkOutputDirChildren.length); | ||
File actualOutput = sinkOutputDirChildren[0]; | ||
|
||
if (!Files.toString(actualOutput, Charsets.UTF_8).equals(expectedOutput)) { | ||
LOGGER.error("Actual output doesn't match expected output.\n"); | ||
throw new AssertionError("FILE_ROLL sink's actual output doesn't " + | ||
"match expected output."); | ||
} | ||
|
||
LOGGER.debug("testInOut() ended."); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We shouldn't be publishing snapshot builds of trunk to DockerHub. Can we make sure we're only publishing released artifacts?