Skip to content

Support for Spine-based Java apps running under Google Cloud

License

Apache-2.0, Unknown licenses found

Licenses found

Apache-2.0
LICENSE
Unknown
license-report.md
Notifications You must be signed in to change notification settings

SpineEventEngine/gcloud-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1,645 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gcloud-java

codecov Build Status

Support for Spine-based Java apps running at Google Cloud.

Artifacts

Gradle:

dependencies {
    implementation (
    
        // Datastore Storage support library.
        "io.spine.gcloud:spine-datastore:1.2.0",
        
        // Stackdriver Trace support library.
        "io.spine.gcloud:spine-stackdriver-trace:1.2.0",

        // Datastore-related test utilities (if needed).
        "io.spine.gcloud:testutil-gcloud:1.2.0"
    )
}

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 Bootstrap Gradle plugin and Spine core modules documentation.

Configuring Datastore

Datastore indexes

In order to run the application built on top of gcloud-java, 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.

The configuration file is located at ./datastore/config/index.yaml.

Please see the Google Cloud Platform documentation for the details.

Custom indexes

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: companySize

Testing

This section describes testing the gcloud-java library itself.

Preconditions

To run the task successfully, you must have gcloud tool properly installed and configured:

  • install gcloud of the last version;
  • login under a Google account when initializing the gcloud;
  • to run tests you should select spine-dev Google Cloud Console project;
  • skip Google App Engine setup if not required.
Running the tests

Datastore

To start a local emulator and run test against it, run ./gradlew check.

To start an emulator without running tests ./gradlew startDatastore.

To stop the Datastore emulator, just terminate the emulator process (e.g. kill -9 $(lsof -i:8080) or just close the terminal window on Windows).

The launched emulator will run at localhost:8080 and will not have any persistence. To change the configuration see ./scripts/start-datastore.* scripts.

The datastore is cleaned up after each test. See test classes under ./datastore/src/test/java/... and io.spine.server.storage.datastore.TestDatastoreStorageFactory#clear.

Stackdriver-Trace

The test are launched in a scope of Gradle test phase. However, they rely upon an Google Cloud credentials file located at <project root>/stackdriver-trace/src/test/resources/spine-dev.json.

To run the tests, obtain the service account file for your environment and make it available to the test code in the specified location.

About

Support for Spine-based Java apps running under Google Cloud

Topics

Resources

License

Apache-2.0, Unknown licenses found

Licenses found

Apache-2.0
LICENSE
Unknown
license-report.md

Code of conduct

Contributing

Stars

Watchers

Forks

Contributors 11

Languages