Skip to content

Commit

Permalink
Renaming part 9 (first part of distribution project)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanEwen committed Jul 9, 2014
1 parent 76273ec commit e762152
Show file tree
Hide file tree
Showing 33 changed files with 56 additions and 59 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Contributers to the Stratosphere project
# Contributers to the Flink project
#

Alexander Alexandrov
Expand Down
4 changes: 2 additions & 2 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2010-2014 Stratosphere
Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@ limitations under the License.

=======================================================================

Stratosphere contains subcomponents with separate copyright notices and
Flink contains subcomponents with separate copyright notices and
license terms. Your use of the source code for the these subcomponents
is subject to the terms and conditions of their respective licenses.

Expand Down
2 changes: 1 addition & 1 deletion deploysettings.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
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
Expand Down
2 changes: 1 addition & 1 deletion stratosphere-dist/src/deb/bin/jobmanager
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
########################################################################################################################
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
2 changes: 1 addition & 1 deletion stratosphere-dist/src/deb/bin/taskmanager
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
########################################################################################################################
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
2 changes: 1 addition & 1 deletion stratosphere-dist/src/deb/bin/webclient
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
########################################################################################################################
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
6 changes: 3 additions & 3 deletions stratosphere-dist/src/deb/control/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
########################################################################################################################
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand All @@ -17,5 +17,5 @@ Section: misc
Depends: default-jre
Priority: low
Architecture: all
Description: Stratosphere is a distributed parallel data processing system
Maintainer: Stratosphere team <contact@getstratosphere.org>
Description: Flink is a distributed parallel data processing system
Maintainer: Flink team <[email protected].org>
22 changes: 11 additions & 11 deletions stratosphere-dist/src/deb/control/postinst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
########################################################################################################################
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down Expand Up @@ -30,29 +30,29 @@ set -e

case "$1" in
configure)
if ! getent group stratosphere >/dev/null; then
addgroup --system stratosphere
if ! getent group flink >/dev/null; then
addgroup --system flink
fi

if ! getent passwd stratosphere >/dev/null; then
if ! getent passwd flink >/dev/null; then
adduser --quiet \
--system \
--ingroup stratosphere \
--ingroup flink \
--quiet \
--disabled-login \
--disabled-password \
--home /usr/share/stratosphere-dist \
--home /usr/share/flink-dist \
--no-create-home \
-gecos "Stratosphere User" \
stratosphere
-gecos "Flink User" \
flink
fi

if [ -z "$2" ]; then
chown -R stratosphere:stratosphere /var/log/stratosphere-dist
chown -R flink:flink /var/log/flink-dist
fi
sed -i s'#./resources/web-docs#/usr/share/stratosphere-dist/resources/web-docs#' /usr/share/stratosphere-dist/conf/stratosphere-conf.yaml
sed -i s'#./resources/web-docs#/usr/share/flink-dist/resources/web-docs#' /usr/share/flink-dist/conf/flink-conf.yaml
# append infoserver configuration
echo "jobmanager.web.rootpath: /usr/share/stratosphere-dist/resources/web-docs-infoserver" >> /usr/share/stratosphere-dist/conf/stratosphere-conf.yaml
echo "jobmanager.web.rootpath: /usr/share/flink-dist/resources/web-docs-infoserver" >> /usr/share/flink-dist/conf/flink-conf.yaml
;;

abort-upgrade|abort-remove|abort-deconfigure)
Expand Down
5 changes: 1 addition & 4 deletions stratosphere-dist/src/main/assemblies/bin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
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
Expand Down Expand Up @@ -43,9 +43,6 @@
<exclude>**/*javadoc*</exclude>
<exclude>**/*sources*</exclude>
-->
<!--
<exclude>eu.stratosphere:pact-clients:**</exclude>
-->
<!--
This is a hardcoded exclude-list containing all libraries that are exclusively used in pact-clients.
The previous command did not work because it also excludes libraries that should be in lib, such as commons-io.
Expand Down
2 changes: 1 addition & 1 deletion stratosphere-dist/src/main/assemblies/yarn-uberjar.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
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
Expand Down
2 changes: 1 addition & 1 deletion stratosphere-dist/src/main/assemblies/yarn.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
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
Expand Down
2 changes: 1 addition & 1 deletion stratosphere-dist/src/main/stratosphere-bin/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@

=======================================================================

Stratosphere contains subcomponents with separate copyright notices and
Flink contains subcomponents with separate copyright notices and
license terms. Your use of the source code for the these subcomponents
is subject to the terms and conditions of their respective licenses.

Expand Down
2 changes: 1 addition & 1 deletion stratosphere-dist/src/main/stratosphere-bin/NOTICE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2010-2014 Stratosphere
Copyright 2010-2014 Apache Flink Project

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
8 changes: 4 additions & 4 deletions stratosphere-dist/src/main/stratosphere-bin/README.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
For the latest information about Stratosphere, please visit our website at:
For the latest information about Flink, please visit our website at:

https://www.stratosphere.eu/
https://flink.incubator.apache.org

and our GitHub Account

https://github.com/stratosphere/stratosphere
https://github.com/apache/incubator-flink

If you have any questions, ask on our Mailing list

https://groups.google.com/forum/#!forum/stratosphere-dev
[email protected]

This distribution includes cryptographic software. The country in
which you currently reside may have restrictions on the import,
Expand Down
2 changes: 1 addition & 1 deletion stratosphere-dist/src/main/stratosphere-bin/bin/config.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
4 changes: 2 additions & 2 deletions stratosphere-dist/src/main/stratosphere-bin/bin/jobmanager.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down Expand Up @@ -72,7 +72,7 @@ case $STARTSTOP in
rotateLogFile $out

echo Starting job manager
$JAVA_RUN $JVM_ARGS ${STRATOSPHERE_ENV_JAVA_OPTS} "${log_setting[@]}" -classpath "$STRATOSPHERE_JM_CLASSPATH" eu.stratosphere.nephele.jobmanager.JobManager -executionMode $EXECUTIONMODE -configDir "$STRATOSPHERE_CONF_DIR" > "$out" 2>&1 < /dev/null &
$JAVA_RUN $JVM_ARGS ${STRATOSPHERE_ENV_JAVA_OPTS} "${log_setting[@]}" -classpath "$STRATOSPHERE_JM_CLASSPATH" org.apache.flink.runtime.jobmanager.JobManager -executionMode $EXECUTIONMODE -configDir "$STRATOSPHERE_CONF_DIR" > "$out" 2>&1 < /dev/null &
echo $! > $pid
;;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down Expand Up @@ -69,7 +69,7 @@ case $STARTSTOP in
rotateLogFile $out

echo Starting task manager on host $HOSTNAME
$JAVA_RUN $JVM_ARGS ${STRATOSPHERE_ENV_JAVA_OPTS} "${log_setting[@]}" -classpath "$STRATOSPHERE_TM_CLASSPATH" eu.stratosphere.nephele.taskmanager.TaskManager -configDir "$STRATOSPHERE_CONF_DIR" > "$out" 2>&1 < /dev/null &
$JAVA_RUN $JVM_ARGS ${STRATOSPHERE_ENV_JAVA_OPTS} "${log_setting[@]}" -classpath "$STRATOSPHERE_TM_CLASSPATH" org.apache.flink.runtime.taskmanager.TaskManager -configDir "$STRATOSPHERE_CONF_DIR" > "$out" 2>&1 < /dev/null &
echo $! > $pid
;;

Expand Down
4 changes: 2 additions & 2 deletions stratosphere-dist/src/main/stratosphere-bin/bin/webclient.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down Expand Up @@ -66,7 +66,7 @@ case $STARTSTOP in
fi
fi
echo Starting Stratosphere webclient
$JAVA_RUN $JVM_ARGS "${log_setting[@]}" -classpath "$STRATOSPHERE_WEBCLIENT_CLASSPATH" eu.stratosphere.client.WebFrontend -configDir "$STRATOSPHERE_CONF_DIR" > "$out" 2>&1 < /dev/null &
$JAVA_RUN $JVM_ARGS "${log_setting[@]}" -classpath "$STRATOSPHERE_WEBCLIENT_CLASSPATH" org.apache.flink.client.WebFrontend -configDir "$STRATOSPHERE_CONF_DIR" > "$out" 2>&1 < /dev/null &
echo $! > $pid
;;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
########################################################################################################################
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)

# Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
########################################################################################################################
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)

# Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
########################################################################################################################
#
# Copyright (C) 2010-2014 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
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
Expand All @@ -14,7 +14,7 @@
-->
<html>
<head>
<title>Stratosphere Plan Visualizer</title>
<title>Flink Plan Visualizer</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="../resources/web-docs/css/nephelefrontend.css" />
<link rel="stylesheet" type="text/css" href="../resources/web-docs/css/pactgraphs.css" />
Expand All @@ -30,7 +30,7 @@

<body>
<div class="mainHeading">
<h1 style="margin-top:0"><img src="../resources/web-docs/img/StratosphereLogo.png" width="326" height="100" alt="Stratosphere Logo" align="middle"/>Stratosphere Plan Visualizer</h1>
<h1 style="margin-top:0"><img src="../resources/web-docs/img/FlinkLogo.png" width="326" height="100" alt="Flink Logo" align="middle"/>Flink Plan Visualizer</h1>
</div>
<div>
<div id="mainCanvas" class="canvas boxed">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
########################################################################################################################
#
# Copyright (C) 2014 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2014 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
2 changes: 1 addition & 1 deletion tools/change-version
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
########################################################################################################################
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
2 changes: 1 addition & 1 deletion tools/deploy_to_maven.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
########################################################################################################################
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
2 changes: 1 addition & 1 deletion tools/generate_specific_pom.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
########################################################################################################################
# Copyright (C) 2010-2013 by the Stratosphere project (https://stratosphere.eu)
# Copyright (C) 2010-2013 by the Apache Flink project (https://flink.incubator.apache.org)
#
# 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
Expand Down
Loading

0 comments on commit e762152

Please sign in to comment.