hazelcast-gcp

Hazelcast GCP Plugin

License

License

Categories

Categories

Hazelcast Application Layer Libs Distributed Applications
GroupId

GroupId

com.hazelcast
ArtifactId

ArtifactId

hazelcast-gcp
Last Version

Last Version

2.1
Release Date

Release Date

Type

Type

jar
Description

Description

hazelcast-gcp
Hazelcast GCP Plugin
Project URL

Project URL

http://www.hazelcast.com/
Source Code Management

Source Code Management

https://github.com/hazelcast/hazelcast-gcp/

Download hazelcast-gcp

How to add to project

<!-- https://jarcasting.com/artifacts/com.hazelcast/hazelcast-gcp/ -->
<dependency>
    <groupId>com.hazelcast</groupId>
    <artifactId>hazelcast-gcp</artifactId>
    <version>2.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.hazelcast/hazelcast-gcp/
implementation 'com.hazelcast:hazelcast-gcp:2.1'
// https://jarcasting.com/artifacts/com.hazelcast/hazelcast-gcp/
implementation ("com.hazelcast:hazelcast-gcp:2.1")
'com.hazelcast:hazelcast-gcp:jar:2.1'
<dependency org="com.hazelcast" name="hazelcast-gcp" rev="2.1">
  <artifact name="hazelcast-gcp" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.hazelcast', module='hazelcast-gcp', version='2.1')
)
libraryDependencies += "com.hazelcast" % "hazelcast-gcp" % "2.1"
[com.hazelcast/hazelcast-gcp "2.1"]

Dependencies

provided (1)

Group / Artifact Type Version
com.hazelcast : hazelcast jar 4.1-SNAPSHOT

test (4)

Group / Artifact Type Version
junit : junit jar 4.13
org.mockito : mockito-all jar 1.10.19
com.github.tomakehurst : wiremock jar 2.27.1
log4j : log4j Optional jar 1.2.17

Project Modules

There are no modules declared in this project.

Hazelcast Discovery Plugin for GCP

This repository contains a plugin which provides the automatic Hazelcast member discovery in the Google Cloud Platform (Compute Engine) environment.

Requirements

  • Hazelcast 3.10+
  • GCP VM instances must have access to Cloud API (at minimum "Read Only" Access Scope to "Compute Engine" API)
  • Versions compatibility:
    • hazelcast-gcp 2+ is compatible with hazelcast 4+
    • hazelcast-gcp 1.1.x is compatible with hazelcast 3.11.x, 3.12.x
    • hazelcast-gcp 1.0 is compatible with older hazelcast versions

Embedded Mode

To use Hazelcast GCP embedded in your application, you need to add the plugin dependency into your Maven/Gradle file. Then, when you provide hazelcast.xml (or Java-based configuration) as presented above, your Hazelcast instances discover themselves automatically.

Maven

<dependency>
  <groupId>com.hazelcast</groupId>
  <artifactId>hazelcast-gcp</artifactId>
  <version>${hazelcast-gcp-version}</version>
</dependency>

Gradle

compile group: "com.hazelcast", name: "hazelcast-gcp", version: "${hazelcast-gcp-version}"

Understanding GCP Discovery Strategy

Hazelcast member starts by fetching a list of all instances filtered by projects, zones, and label. Then, each instance is checked one-by-one with its IP and each of the ports defined in the hz-port property. When a member is discovered under IP:PORT, then it joins the cluster.

If users want to create multiple Hazelcast clusters in one project/zone, then they need to manually label the instances.

Configuration

The plugin supports Members Discovery SPI and Zone Aware features.

Hazelcast Members Discovery SPI

Make sure you have the hazelcast-gcp.jar dependency in your classpath. Then, you can configure Hazelcast in one of the following manners.

XML Configuration

<hazelcast>
  <network>
    <join>
      <multicast enabled="false"/>
      <gcp enabled="true">
        <label>application=hazelcast</label>
        <hz-port>5701-5708</hz-port>
      </gcp>
    </join>
  </network>
</hazelcast>

YAML Configuration

hazelcast:
  network:
    join:
      multicast:
        enabled: false
      gcp:
        enabled: true
        label: application=hazelcast
        hz-port: 5701-5708

Java-based Configuration

config.getNetworkConfig().getJoin().getMulticastConfig().setEnabled(false);
config.getNetworkConfig().getJoin().getGcpConfig().setEnabled(true)
      .setProperty("label", "application=hazelcast")
      .setProperty("hz-port", "5701-5708");

The following properties can be configured:

  • private-key-path: a filesystem path to the private key for GCP service account in the JSON format; if not set, the access token is fetched from the GCP VM instance
  • projects: a list of projects where the plugin looks for instances; if not set, the current project is used
  • region: a region where the plugin looks for instances; if not set, the zones property is used; if it and zones property not set, all zones of the current region are used
  • zones: a list of zones where the plugin looks for instances; if not set, all zones of the current region are used
  • label: a filter to look only for instances labeled as specified; property format: key=value
  • hz-port: a range of ports where the plugin looks for Hazelcast members; if not set, the default value 5701-5708 is used

Note that:

  • Your GCP Service Account must have permissions to query for all the projects/zones specified in the configuration
  • If you don't specify any of the properties, then the plugin forms a cluster from all Hazelcast members running in the current project, in the current region
  • If you use the plugin in the Hazelcast Client running outside of the GCP network, then the following parameters are mandatory: private-key-path, projects, and zones or region

Zone Aware

When using ZONE_AWARE configuration, backups are created in the other availability zone.

XML Configuration

<partition-group enabled="true" group-type="ZONE_AWARE" />

YAML Configuration

hazelcast:
  partition-group:
    enabled: true
    group-type: ZONE-AWARE

Java-based Configuration

config.getPartitionGroupConfig()
    .setEnabled(true)
    .setGroupType(MemberGroupType.ZONE_AWARE);

NOTE: When using the ZONE_AWARE partition grouping, a cluster spanning multiple availability zones should have an equal number of members in each AZ. Otherwise, it will result in uneven partition distribution among the members.

Hazelcast Client with Discovery SPI

If Hazelcast Client is run inside GCP, then the configuration is exactly the same as for the Member.

If Hazelcast Client is run outside GCP, then you always need to specify the following parameters:

  • private-key-path - path to the private key for GCP service account
  • projects - a list of projects where the plugin looks for instances
  • region: a region where the plugin looks for instances; if not set, the zones property is used; if it and zones property not set, all zones of the current region are used
  • zones: a list of zones where the plugin looks for instances; if not set, all zones of the current region are used
  • use-public-ip - must be set to true

Following are example declarative and programmatic configuration snippets.

XML Configuration

<hazelcast-client>
  <network>
    <gcp enabled="true">
      <private-key-path>/home/name/service/account/key.json</private-key-path>
      <projects>project-1,project-2</projects>
      <region>us-east1</region>
      <label>application=hazelcast</label>
      <hz-port>5701-5708</hz-port>
      <use-public-ip>true</use-public-ip>
    </gcp>
  </network>
</hazelcast-client>

YAML Configuration

hazelcast-client:
  network:
    gcp:
      enabled: true
      private-key-path: /home/name/service/account/key.json
      projects: project-1,project-2
      region: us-east1
      label: application=hazelcast
      hz-port: 5701-5708
      use-public-ip: true

Java-based Configuration

clientConfig.getGcpConfig().setEnabled(true)
      .setProperty("private-key-path", "/home/name/service/account/key.json")
      .setProperty("projects", "project-1,project-2")
      .setProperty("region", "us-east1")
      .setProperty("label", "application=hazelcast")
      .setProperty("hz-port", "5701-5708")
      .setProperty("use-public-ip", "true");

How to find us?

In case of any question or issue, please raise a GH issue, send an email to Hazelcast Google Groups or contact as directly via Hazelcast Gitter.

com.hazelcast

hazelcast

Hazelcast, the leading in-memory computing platform

Versions

Version
2.1
2.0.1
2.0
1.1.1
1.1
1.0