Skip to content

Commit 426eaa1

Browse files
authored
Merge pull request #4 from viveknaskar/develop
Updated the package name
2 parents 2a86df8 + 9fe2964 commit 426eaa1

22 files changed

+48
-55
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
A custom implementation of HSET for storing data Memorystore in a cloud dataflow project.
33

44
## What does it do here?
5-
This is a cloud dataflow pipline code that processes data from a cloud storage bucket, transform it and stores in Google's highly scalable, reduced latency in-memory database called memorystore which is an implementation of Redis (5.0 version)
5+
This is a cloud dataflow pipeline code that processes data from a cloud storage bucket, transform it and stores in Google's highly scalable, reduced latency in-memory database called Memorystore which is an implementation of Redis (5.0 version)
66

77
## What the heck is cloud dataflow?
8-
Well, its a pipeline provided by Google to process data to a form we need and it just takes seconds to transform bulk of data. Companies like Spotify and Dailymotion uses this service.
8+
Well, it's a pipeline provided by Google to process data to a form we need and it just takes seconds to transform bulk of data. Companies like Spotify and Dailymotion uses this service.
99

1010
## Command to execute the pipeline:
1111
```
1212
mvn compile exec:java \
13-
-Dexec.mainClass=com.click.example.StarterPipeline \
13+
-Dexec.mainClass=com.viveknaskar.StarterPipeline \
1414
-Dexec.args="--project=your-project-id \
1515
--jobName=dataflow-custom-redis-job \
1616
--redisHost=127.0.0.1 \

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
66
<modelVersion>4.0.0</modelVersion>
77

8-
<groupId>com.click.example</groupId>
8+
<groupId>com.viveknaskar</groupId>
99
<artifactId>dataflow-redis-example</artifactId>
10-
<version>1.0.0</version>
10+
<version>1.0.1</version>
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

src/main/java/com/click/example/StarterPipeline.java renamed to src/main/java/com/viveknaskar/StarterPipeline.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.click.example;
1+
package com.viveknaskar;
22

3-
import com.click.example.functions.*;
3+
import com.viveknaskar.functions.*;
44
import org.apache.beam.sdk.Pipeline;
55
import org.apache.beam.sdk.io.FileIO;
66
import org.apache.beam.sdk.io.TextIO;

src/main/java/com/click/example/StorageToRedisOptions.java renamed to src/main/java/com/viveknaskar/StorageToRedisOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.click.example;
1+
package com.viveknaskar;
22

33
import org.apache.beam.sdk.options.Default;
44
import org.apache.beam.sdk.options.Description;

src/main/java/com/click/example/constants/KeyPrefix.java renamed to src/main/java/com/viveknaskar/constants/KeyPrefix.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.click.example.constants;
1+
package com.viveknaskar.constants;
22

33
/**
44
* Enum to store the key prefixes in the Redis instance

src/main/java/com/click/example/constants/PipelineConstants.java renamed to src/main/java/com/viveknaskar/constants/PipelineConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.click.example.constants;
1+
package com.viveknaskar.constants;
22

33
public class PipelineConstants {
44

src/main/java/com/click/example/constants/RedisFieldIndex.java renamed to src/main/java/com/viveknaskar/constants/RedisFieldIndex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.click.example.constants;
1+
package com.viveknaskar.constants;
22

33
/**
44
* Enum for the Field indexes

src/main/java/com/click/example/functions/CombiningTransforms.java renamed to src/main/java/com/viveknaskar/functions/CombiningTransforms.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.click.example.functions;
1+
package com.viveknaskar.functions;
22

33
import org.apache.beam.sdk.transforms.SerializableFunction;
44

src/main/java/com/click/example/functions/FlushingMemorystore.java renamed to src/main/java/com/viveknaskar/functions/FlushingMemorystore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.click.example.functions;
1+
package com.viveknaskar.functions;
22

33
import org.checkerframework.checker.nullness.qual.Nullable;
44
import com.google.auto.value.AutoValue;

src/main/java/com/click/example/functions/LogInvalidRecords.java renamed to src/main/java/com/viveknaskar/functions/LogInvalidRecords.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.click.example.functions;
1+
package com.viveknaskar.functions;
22

33
import org.apache.beam.sdk.transforms.DoFn;
44
import org.slf4j.Logger;

0 commit comments

Comments
 (0)