Support for Spine-based Java apps running at Google Cloud.
Starting version 2.0.0-SNAPSHOT.180, the artifacts of this library are being built with a Java 17
compilation target. Therefore, consumer applications have to use Java 17 or higher.
Versions starting from 2.0.0-SNAPSHOT.63 were built with Java 11, and earlier versions with Java 8.
Gradle:
dependencies {
// Datastore Storage support library.
implementation("io.spine.gcloud:spine-datastore:$version")
// Pub/Sub messaging support library.
implementation("io.spine.gcloud:spine-pubsub:$version")
// Datastore-related test utilities (if needed).
testImplementation("io.spine.tools:gcloud-testlib:$version")
}These artifacts should be used as a part of the Spine server application.
For the details on setting up the server environment please refer to
Spine core modules documentation.
Distributed tracing is provided through OpenTelemetry. See Enabling OpenTelemetry tracing on Google Cloud for setup.
To run the application built on top of gcloud-jvm, Datastore instance requires some
preliminary configuration. In particular, the indexes for the Spine internal record types should
be set. Please notice a special index configuration for your custom Aggregate types.
Please see the datastore/config folder the configuration files.
The configuration file for tests is located at ./datastore/src/test/config/index.yaml.
Please see the Google Cloud Platform documentation for the details.
It is possible to store some of the Spine Entity fields in separate Datastore kind fields.
Such an approach is useful to optimize read-side querying. In this case more Datastore indexes may
be created.
Example:
Assuming you have a Projection type called CustomerProjection. Its state is declared in
the Protobuf type my.company.Customer. It has Entity Columns country and companySize.
Once you try to make a query in those Columns, the Datastore will fail with
an internal Exception. To prevent this, you should create an index for your CustomerProjection:
- kind: my.company.Customer
ancestor: no
properties:
- name: country
- name: companySizeThis section describes testing the gcloud-jvm library itself.
The library utilizes Testcontainers in order to run a local Datastore emulator.
Therefore, a local Docker is required up and running to launch tests.
To start a local Docker-based emulator and run test against it, run ./gradlew check.
The emulator container is reused across tests and shuts down automatically after the test run completes.
Some tests also verify a connection to a remote Datastore instance. In order to run those,
the corresponding credential file called spine-dev.json should be placed under
<project root>/datastore/src/test/resources/ and <project root>/testlib/src/test/resources/.
Gradle build script is arranged to do that automatically upon running on CI.