Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Rob Swain <[email protected]>
  • Loading branch information
frant-hartm and Rob-Hazelcast authored Nov 28, 2024
1 parent 5991a9b commit 83235e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can implement HazelcastInstanceAware in listeners, entry processors, tasks e
to the `HazelcastInstance`.

In the pipeline API you can use
https://docs.hazelcast.org/docs/{full-version}/javadoc/com/hazelcast/jet/core/ProcessorMetaSupplier.Context.html#dataConnectionService()[ProcessorMetaSupplier.Context#dataConnectionService()]
https://docs.hazelcast.org/docs/{full-version}/javadoc/com/hazelcast/jet/core/ProcessorMetaSupplier.Context.html#dataConnectionService()[ProcessorMetaSupplier.Context#dataConnectionService()].

NOTE: The Data Connection Service is only available on the member side. Calling `getDataConnectionService()` on client will result in `UnsupportedOperationException`.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Map Loader using Data Connection

:description: In this tutorial you build a custom map loader that uses a configured data connection to load the data not present in an IMap.
:description: In this tutorial you build a custom map loader that uses a configured data connection to load data not present in an IMap.

{description}

Expand Down Expand Up @@ -106,7 +106,7 @@ Create a blank Java project named pipeline-service-data-connection-example and c
</project>
----

== Step 2. MapLoader
== Step 3. MapLoader

The following map loader implements the `com.hazelcast.map.MapLoader` and `com.hazelcast.map.MapLoaderLifecycleSupport`
interfaces.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Pipeline Service using Data Connection

:description: In this tutorial you build a service that transforms a stream of items. The service uses a data connection to retrieve a connection to a relational database, uses a table in the database to enrich a stream of numbers with a textual representation of the last digit.
:description: This tutorial builds a service that transforms a stream of items. The service uses a data connection to retrieve a connection to a relational database, uses a table in the database to enrich a stream of numbers with a textual representation of the last digit.

{description}

Expand All @@ -21,7 +21,7 @@ To complete this tutorial, you need the following:

|===

=== Step 1. Create and Populate the Database
== Step 1. Create and Populate the Database

This tutorial uses Docker to run the Postgres database.

Expand Down Expand Up @@ -104,7 +104,7 @@ Create a blank Java project named pipeline-service-data-connection-example and c
</project>
----

== Step 3. the Pipeline and the Job
== Step 3. Create the Pipeline and the Job

Create a class `EnrichUsingDataConnection` with `main` method that will be the main job class. The `main` method will do the following steps:

Expand Down

0 comments on commit 83235e7

Please sign in to comment.