Skip to content

Commit f46623b

Browse files
heremaps-botheremaps-bot
heremaps-bot
authored and
heremaps-bot
committed
HERE Data SDK for Java & Scala Release 2.17.0
1 parent 947551d commit f46623b

File tree

92 files changed

+2712
-1651
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+2712
-1651
lines changed

data-archive/java/avro-example/README.md

+111-78
Large diffs are not rendered by default.

data-archive/java/avro-example/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.here.platform.data.archive</groupId>
55
<artifactId>data-archive-avro-example</artifactId>
6-
<version>0.0.512</version>
6+
<version>0.0.528</version>
77
<packaging>jar</packaging>
88

99
<!-- Meta information section start -->
@@ -23,7 +23,7 @@
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424
<java.version>1.8</java.version>
2525

26-
<sdk-bom.version>2.16.8</sdk-bom.version>
26+
<sdk-bom.version>2.17.9</sdk-bom.version>
2727
<scala.compat.version>2.11</scala.compat.version>
2828

2929
<avro.version>1.8.2</avro.version>

data-archive/java/avro-example/src/main/resources/application.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ aggregation {
7777
# In each aggregation window, all elements referring to the same key will be sent to the same parallel task.
7878
# Assuming there is no hotspot problem (most if not all elements have the same key), having higher parallelism will improve the data archiving pipeline performance.
7979
# Required parallelism can be determined by different parameters like indexing attributes cardinality, uniqueness, etc. Please refer Best Practices section in the developer guide for details.
80-
# It is highly recommended to override this property. Note that the value of this property should be less than or equal to number of workers selected when creating OLP Pipeline.
80+
# It is highly recommended to override this property. Note that the value of this property should be less than or equal to number of workers selected when creating a pipeline.
8181
parallelism = <UPDATE_ME> # Eg:- parallelism = 10
8282
}
8383

data-archive/java/parquet-example/README.md

+101-71
Large diffs are not rendered by default.

data-archive/java/parquet-example/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.here.platform.data.archive</groupId>
55
<artifactId>data-archive-parquet-example</artifactId>
6-
<version>0.0.512</version>
6+
<version>0.0.528</version>
77
<packaging>jar</packaging>
88

99
<!-- Meta information section start -->
@@ -23,7 +23,7 @@
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424
<java.version>1.8</java.version>
2525

26-
<sdk-bom.version>2.16.8</sdk-bom.version>
26+
<sdk-bom.version>2.17.9</sdk-bom.version>
2727
<scala.compat.version>2.11</scala.compat.version>
2828

2929
<hadoop-client.version>2.7.3</hadoop-client.version>

data-archive/java/parquet-example/src/main/resources/application.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ aggregation {
7777
# In each aggregation window, all elements referring to the same key will be sent to the same parallel task.
7878
# Assuming there is no hotspot problem (most if not all elements have the same key), having higher parallelism will improve the data archiving pipeline performance.
7979
# Required parallelism can be determined by different parameters like indexing attributes cardinality, uniqueness, etc. Please refer Best Practices section in the developer guide for details.
80-
# It is highly recommended to override this property. Note that the value of this property should be less than or equal to number of workers selected when creating OLP Pipeline.
80+
# It is highly recommended to override this property. Note that the value of this property should be less than or equal to number of workers selected when creating a pipeline.
8181
parallelism = <UPDATE_ME> # Eg:- parallelism = 10
8282
}
8383

@@ -108,7 +108,7 @@ error {
108108
# - A `string` type attribute with name "layerId". This attribute stores the `layerId` of the index layer where messages that were successfully processed are indexed.
109109
# - You can select any TTL setting.
110110
# Add following two commented parameters in your application.conf (uncomment and update with correct values).
111-
# deadletter.hrn = "<CATALOG_HRN_WHERE_YOU_WANT_TO_STORE_MESSAGES_IN_CASE_OF_ERRORS>" # Eg:- deadletter.hrn = "hrn:here:data::olp-here:sensor-data-deadletter-avro" or deadletter.hrn = "hrn:here-cn:data::olp-cn-here:sensor-data-deadletter-avro" (for China)
111+
# deadletter.hrn = "<CATALOG_HRN_WHERE_YOU_WANT_TO_STORE_MESSAGES_IN_CASE_OF_ERRORS>" # Eg:- deadletter.hrn = "hrn:here:data::olp-here:sensor-data-deadletter-avro" or deadletter.hrn = "hrn:here-cn:data::olp-cn-here:sensor-data-deadletter-avro" (for China)
112112
# deadletter.layer = "<INDEX_LAYER_NAME_WHERE_YOU_WANT_TO_STORE_MESSAGES_IN_CASE_OF_ERRORS>" # Eg:- deadletter.layer = "index-layer"
113113
}
114114

data-archive/java/protobuf-example/README.md

+100-70
Large diffs are not rendered by default.

data-archive/java/protobuf-example/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.here.platform.data.archive</groupId>
55
<artifactId>data-archive-protobuf-example</artifactId>
6-
<version>0.0.512</version>
6+
<version>0.0.528</version>
77
<packaging>jar</packaging>
88

99
<!-- Meta information section start -->
@@ -23,7 +23,7 @@
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424
<java.version>1.8</java.version>
2525

26-
<sdk-bom.version>2.16.8</sdk-bom.version>
26+
<sdk-bom.version>2.17.9</sdk-bom.version>
2727
<scala.compat.version>2.11</scala.compat.version>
2828

2929
<commons-logging.version>1.2</commons-logging.version>

data-archive/java/protobuf-example/src/main/resources/application.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ aggregation {
7777
# In each aggregation window, all elements referring to the same key will be sent to the same parallel task.
7878
# Assuming there is no hotspot problem (most if not all elements have the same key), having higher parallelism will improve the data archiving pipeline performance.
7979
# Required parallelism can be determined by different parameters like indexing attributes cardinality, uniqueness, etc. Please refer Best Practices section in the developer guide for details.
80-
# It is highly recommended to override this property. Note that the value of this property should be less than or equal to number of workers selected when creating OLP Pipeline.
80+
# It is highly recommended to override this property. Note that the value of this property should be less than or equal to number of workers selected when creating a pipeline.
8181
parallelism = <UPDATE_ME> # Eg:- parallelism = 10
8282
}
8383

0 commit comments

Comments
 (0)