Skip to content

Commit 7b6f49e

Browse files
authored
Merge pull request #45 from RADAR-base/release-0.5.6
Release 0.5.6
2 parents cdeffd2 + 3e3936a commit 7b6f49e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,14 @@ RUN ./gradlew jar
3131

3232
FROM smizy/hadoop-base:3.0.3-alpine
3333

34-
MAINTAINER Joris Borgdorff <[email protected]>
34+
MAINTAINER Joris Borgdorff <[email protected]>, Yatharth Ranjan<[email protected]>
3535

3636
LABEL description="RADAR-base HDFS data restructuring"
3737

3838
ENV JAVA_OPTS -Djava.library.path=${HADOOP_HOME}/lib/native
3939

40+
RUN apk add --no-cache libc6-compat
41+
4042
COPY --from=builder /code/build/third-party/* /usr/lib/
4143
COPY --from=builder /code/build/scripts/* /usr/bin/
4244
COPY --from=builder /code/build/libs/* /usr/lib/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Data streamed to HDFS using the [RADAR HDFS sink connector](https://github.com/R
88

99
This package is available as docker image [`radarbase/radar-hdfs-restructure`](https://hub.docker.com/r/radarbase/radar-hdfs-restructure). The entrypoint of the image is the current application. So in all of the commands listed in usage, replace `radar-hdfs-restructure` with for example:
1010
```shell
11-
docker run --rm -t --network hadoop -v "$PWD/output:/output" radarbase/radar-hdfs-restructure:0.5.5 -n hdfs-namenode -o /output /myTopic
11+
docker run --rm -t --network hadoop -v "$PWD/output:/output" radarbase/radar-hdfs-restructure:0.5.6 -n hdfs-namenode -o /output /myTopic
1212
```
1313
if your docker cluster is running in the `hadoop` network and your output directory should be `./output`.
1414

@@ -23,7 +23,7 @@ This package requires at least Java JDK 8. Build the distribution with
2323
and install the package into `/usr/local` with for example
2424
```shell
2525
sudo mkdir -p /usr/local
26-
sudo tar -xzf build/distributions/radar-hdfs-restructure-0.5.5.tar.gz -C /usr/local --strip-components=1
26+
sudo tar -xzf build/distributions/radar-hdfs-restructure-0.5.6.tar.gz -C /usr/local --strip-components=1
2727
```
2828

2929
Now the `radar-hdfs-restructure` command should be available.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group 'org.radarcns'
10-
version '0.5.5'
10+
version '0.5.6'
1111
mainClassName = 'org.radarcns.hdfs.Application'
1212

1313
sourceCompatibility = '1.8'

0 commit comments

Comments
 (0)