Skip to content

Commit

Permalink
change groupId to registered groupId for publishing to maven central T…
Browse files Browse the repository at this point in the history
  • Loading branch information
julianev committed Feb 14, 2023
1 parent b8f57b0 commit 89ba94e
Show file tree
Hide file tree
Showing 326 changed files with 2,993 additions and 3,009 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Then you can use the library in your maven project.

```xml
<dependency>
<groupId>de.tub.dima.scotty</groupId>
<groupId>stream.scotty</groupId>
<artifactId>flink-connector</artifactId>
<version>0.4</version>
</dependency>
Expand Down
8 changes: 4 additions & 4 deletions beam-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<groupId>de.tub.dima.scotty</groupId>
<groupId>stream.scotty</groupId>
<version>0.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -36,17 +36,17 @@
<version>1.2</version>
</dependency>
<dependency>
<groupId>de.tub.dima.scotty</groupId>
<groupId>stream.scotty</groupId>
<artifactId>core</artifactId>
<version>${scotty.version}</version>
</dependency>
<dependency>
<groupId>de.tub.dima.scotty</groupId>
<groupId>stream.scotty</groupId>
<artifactId>slicing</artifactId>
<version>${scotty.version}</version>
</dependency>
<dependency>
<groupId>de.tub.dima.scotty</groupId>
<groupId>stream.scotty</groupId>
<artifactId>state</artifactId>
<version>${scotty.version}</version>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package de.tub.dima.scotty.beamconnector;
package stream.scotty.beamconnector;

import de.tub.dima.scotty.core.AggregateWindow;
import de.tub.dima.scotty.core.windowFunction.AggregateFunction;
import de.tub.dima.scotty.core.windowType.SlidingWindow;
import de.tub.dima.scotty.core.windowType.TumblingWindow;
import de.tub.dima.scotty.core.windowType.Window;
import de.tub.dima.scotty.slicing.SlicingWindowOperator;
import de.tub.dima.scotty.state.memory.MemoryStateFactory;
import stream.scotty.core.AggregateWindow;
import stream.scotty.core.windowFunction.AggregateFunction;
import stream.scotty.core.windowType.SlidingWindow;
import stream.scotty.core.windowType.TumblingWindow;
import stream.scotty.core.windowType.Window;
import stream.scotty.slicing.SlicingWindowOperator;
import stream.scotty.state.memory.MemoryStateFactory;
import org.apache.beam.sdk.transforms.DoFn;
import org.apache.beam.sdk.values.KV;
import org.joda.time.Instant;
Expand Down
6 changes: 3 additions & 3 deletions benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<groupId>de.tub.dima.scotty</groupId>
<groupId>stream.scotty</groupId>
<version>0.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand All @@ -13,12 +13,12 @@
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>de.tub.dima.scotty</groupId>
<groupId>stream.scotty</groupId>
<artifactId>slicing</artifactId>
<version>0.4</version>
</dependency>
<dependency>
<groupId>de.tub.dima.scotty</groupId>
<groupId>stream.scotty</groupId>
<artifactId>flink-connector</artifactId>
<version>0.4</version>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.flinkBenchmark;
package stream.scotty.flinkBenchmark;

import org.apache.commons.math3.stat.descriptive.SummaryStatistics;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.flinkBenchmark;
package stream.scotty.flinkBenchmark;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package de.tub.dima.scotty.flinkBenchmark;
package stream.scotty.flinkBenchmark;

import de.tub.dima.scotty.core.windowType.*;
import de.tub.dima.scotty.flinkBenchmark.aggregations.SumAggregation;
import de.tub.dima.scotty.flinkconnector.*;
import stream.scotty.core.windowType.*;
import stream.scotty.flinkBenchmark.aggregations.SumAggregation;
import stream.scotty.flinkconnector.*;
import org.apache.flink.api.java.tuple.*;
import org.apache.flink.api.java.utils.ParameterTool;
import org.apache.flink.streaming.api.TimeCharacteristic;
Expand Down Expand Up @@ -47,9 +47,9 @@ public BenchmarkJob(List<Window> assigner, StreamExecutionEnvironment env, final


DataStream<Tuple4<String, Integer, Long, Long>> messageStream = env
.addSource(new de.tub.dima.scotty.flinkBenchmark.LoadGeneratorSource(runtime, throughput, gaps));
.addSource(new stream.scotty.flinkBenchmark.LoadGeneratorSource(runtime, throughput, gaps));

messageStream.flatMap(new de.tub.dima.scotty.flinkBenchmark.ThroughputLogger<>(200, throughput));
messageStream.flatMap(new stream.scotty.flinkBenchmark.ThroughputLogger<>(200, throughput));



Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package de.tub.dima.scotty.flinkBenchmark;
package stream.scotty.flinkBenchmark;

import com.google.gson.*;
import de.tub.dima.scotty.core.*;
import de.tub.dima.scotty.core.windowType.*;
import de.tub.dima.scotty.core.*;
import stream.scotty.core.*;
import stream.scotty.core.windowType.*;
import stream.scotty.core.*;
import org.apache.flink.api.java.tuple.*;
import org.apache.flink.configuration.*;
import org.apache.flink.streaming.api.environment.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package de.tub.dima.scotty.flinkBenchmark;
package stream.scotty.flinkBenchmark;

import de.tub.dima.scotty.core.windowType.*;
import de.tub.dima.scotty.core.windowType.Window;
import stream.scotty.core.windowType.*;
import stream.scotty.core.windowType.Window;
import org.apache.flink.api.java.tuple.*;
import org.apache.flink.api.java.utils.*;
import org.apache.flink.streaming.api.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.flinkBenchmark;
package stream.scotty.flinkBenchmark;

import org.apache.flink.api.java.tuple.*;
import org.apache.flink.streaming.api.functions.source.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.flinkBenchmark;
package stream.scotty.flinkBenchmark;

import org.apache.flink.api.common.functions.FlatMapFunction;
import org.apache.flink.util.Collector;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.flinkBenchmark;
package stream.scotty.flinkBenchmark;

public class ThroughputStatistics {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package de.tub.dima.scotty.flinkBenchmark.aggregations;
package stream.scotty.flinkBenchmark.aggregations;

import de.tub.dima.scotty.core.windowFunction.*;
import stream.scotty.core.windowFunction.*;
import org.apache.flink.api.java.tuple.*;

import java.io.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package de.tub.dima.scotty.microbenchmark;
package stream.scotty.microbenchmark;

import de.tub.dima.scotty.state.StateFactory;
import de.tub.dima.scotty.state.ValueState;
import stream.scotty.state.StateFactory;
import stream.scotty.state.ValueState;

import java.util.ArrayList;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package de.tub.dima.scotty.microbenchmark;
package stream.scotty.microbenchmark;

import de.tub.dima.scotty.slicing.state.AggregateState;
import de.tub.dima.scotty.state.memory.MemoryStateFactory;
import de.tub.dima.scotty.core.windowFunction.ReduceAggregateFunction;
import stream.scotty.slicing.state.AggregateState;
import stream.scotty.state.memory.MemoryStateFactory;
import stream.scotty.core.windowFunction.ReduceAggregateFunction;
import org.openjdk.jmh.annotations.*;
import org.openjdk.jmh.runner.Runner;
import org.openjdk.jmh.runner.RunnerException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package de.tub.dima.scotty.microbenchmark;
package stream.scotty.microbenchmark;

import de.tub.dima.scotty.slicing.SlicingWindowOperator;
import de.tub.dima.scotty.state.memory.MemoryStateFactory;
import de.tub.dima.scotty.core.windowType.TumblingWindow;
import de.tub.dima.scotty.core.windowType.WindowMeasure;
import de.tub.dima.scotty.core.windowFunction.ReduceAggregateFunction;
import stream.scotty.slicing.SlicingWindowOperator;
import stream.scotty.state.memory.MemoryStateFactory;
import stream.scotty.core.windowType.TumblingWindow;
import stream.scotty.core.windowType.WindowMeasure;
import stream.scotty.core.windowFunction.ReduceAggregateFunction;
import org.openjdk.jmh.annotations.*;
import org.openjdk.jmh.runner.Runner;
import org.openjdk.jmh.runner.RunnerException;
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<groupId>de.tub.dima.scotty</groupId>
<groupId>stream.scotty</groupId>
<version>0.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package de.tub.dima.scotty.core;
package stream.scotty.core;

import de.tub.dima.scotty.core.windowType.*;
import stream.scotty.core.windowType.*;

import java.io.*;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.tub.dima.scotty.core;
package stream.scotty.core;

import java.util.concurrent.TimeUnit;
/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package de.tub.dima.scotty.core;
package stream.scotty.core;

import de.tub.dima.scotty.core.windowType.*;
import stream.scotty.core.windowType.*;

public interface WindowCollector {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package de.tub.dima.scotty.core;
package stream.scotty.core;

import de.tub.dima.scotty.core.windowType.*;
import de.tub.dima.scotty.core.windowFunction.AggregateFunction;
import stream.scotty.core.windowType.*;
import stream.scotty.core.windowFunction.AggregateFunction;

import java.io.*;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.core.windowFunction;
package stream.scotty.core.windowFunction;


import java.io.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.core.windowFunction;
package stream.scotty.core.windowFunction;

public interface CloneablePartialStateFunction<PartialAggregateType> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.core.windowFunction;
package stream.scotty.core.windowFunction;

public interface CommutativeAggregateFunction<InputType, PartialAggregateType, FinalAggregateType> extends AggregateFunction<InputType, PartialAggregateType, FinalAggregateType> {
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.core.windowFunction;
package stream.scotty.core.windowFunction;

public interface InvertibleAggregateFunction<InputType, PartialAggregateType, FinalAggregateType> extends AggregateFunction<InputType, PartialAggregateType, FinalAggregateType> {
/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.core.windowFunction;
package stream.scotty.core.windowFunction;

public interface InvertibleReduceAggregateFunction<Input> extends ReduceAggregateFunction<Input>, InvertibleAggregateFunction<Input, Input, Input> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tub.dima.scotty.core.windowFunction;
package stream.scotty.core.windowFunction;


@FunctionalInterface
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package de.tub.dima.scotty.core.windowType;
package stream.scotty.core.windowType;

import de.tub.dima.scotty.core.*;
import de.tub.dima.scotty.core.*;
import stream.scotty.core.*;
import stream.scotty.core.*;

public interface ContextFreeWindow extends Window {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package de.tub.dima.scotty.core.windowType;
package stream.scotty.core.windowType;

import de.tub.dima.scotty.core.WindowCollector;
import stream.scotty.core.WindowCollector;

public class FixedBandWindow implements ContextFreeWindow {
/**
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package stream.scotty.core.windowType;

import stream.scotty.core.windowType.windowContext.*;
import stream.scotty.core.windowType.windowContext.*;

public interface ForwardContextAware extends Window {

WindowContext createContext();
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package stream.scotty.core.windowType;

import stream.scotty.core.windowType.windowContext.*;

public interface ForwardContextFree extends Window {

WindowContext createContext();
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package de.tub.dima.scotty.core.windowType;
package stream.scotty.core.windowType;

import de.tub.dima.scotty.core.WindowCollector;
import de.tub.dima.scotty.core.windowType.windowContext.WindowContext;
import stream.scotty.core.WindowCollector;
import stream.scotty.core.windowType.windowContext.WindowContext;
import org.apache.flink.api.java.tuple.Tuple;

public class PunctuationWindow implements ForwardContextFree {
Expand All @@ -13,8 +13,8 @@ public class PunctuationWindow implements ForwardContextFree {
/**
* the measure of the Punctuation Window is time
* @param punctuation defines how the punctuation tuple looks like
* @see de.tub.dima.scotty.slicing.aggregationstore.test.windowTest.PunctuationWindowTest
* and de.tub.dima.scotty.slicing.aggregationstore.test.windowTest.PunctuationWindowTupleTest
* @see stream.scotty.slicing.aggregationstore.test.windowTest.PunctuationWindowTest
* and stream.scotty.slicing.aggregationstore.test.windowTest.PunctuationWindowTupleTest
* for examples for punctuations
*/
public PunctuationWindow(Object punctuation) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package de.tub.dima.scotty.core.windowType;
package stream.scotty.core.windowType;

import de.tub.dima.scotty.core.*;
import de.tub.dima.scotty.core.windowType.windowContext.*;
import stream.scotty.core.*;
import stream.scotty.core.windowType.windowContext.*;

public class SessionWindow implements ForwardContextAware {

Expand Down
Loading

0 comments on commit 89ba94e

Please sign in to comment.