Installing a Cluster for Context Graph - spectrum_platform - 23.1

Spectrum Installation Guide for Windows

Product type
Software
Portfolio
Integrate
Locate
Verify
Product family
Spectrum
Product
Spectrum > Spectrum Platform
Version
23.1
Language
English
Product name
Spectrum Technology Platform
Title
Spectrum Installation Guide for Windows
Copyright
2024
First publish date
2007
Last updated
2024-12-10
Published on
2024-12-10T17:43:49.851537

This task describes how to configure Neo4j Graph Database Server to store Context Graph models in a cluster configuration.

A Neo4j Graph Database Server cluster should be configured with at least three core instances.
  1. While adding modules to Spectrum Technology Platform 2023.1, select to install the Context Graph module.
  2. Install Neo4j Graph Database Server and configure the neo4j.conf file cluster settings for each node in a cluster configuration.
    Follow instructions in the Neo4j Operations Manual to create a cluster. For more information, see Neo4j Clustering (Neo4j Operations Manual)
  3. On each node in the Neo4j Graph Database Server cluster, complete these steps to configure each instance to work with Context Graph.
    1. Copy the apoc jar file from Neo4jDirectory\labs\ to Neo4jDirectory\plugins\.
    2. Open the Neo4jDirectory\conf\neo4j.conf file in a code editor.
    3. Uncomment and configure the Bolt and HTTP connector port numbers as shown here:
      # Bolt connector
      server.bolt.enabled=true
      #server.bolt.tls_level=DISABLED
      server.bolt.listen_address=:7700
      server.bolt.advertised_address=:7700
                      
      # HTTP Connector. There can be zero or one HTTP connectors.
      server.http.enabled=true
      server.http.listen_address=:7474
      server.http.advertised_address=:7474
    4. Uncomment and configure these two property settings as shown here:
      dbms.security.procedures.unrestricted=apoc.*
      dbms.security.procedures.allowlist=apoc.*
    5. Uncomment and configure the routing port number as shown here:
      server.routing.listen_address=:7788
      server.routing.advertised_address=:7788
    6. Add this setting (you can insert it in the # Miscellaneous configuration section):
      dbms.cypher.forbid_shortestpath_common_nodes=false
    7. Optional: Add this setting:
      dbms.db.timezone=SYSTEM
      By default, the Neo4j Graph Database Server logs and monitoring use UTC time. This configuration specifies the local system time zone, which you may find easier to use.
    8. Optional: Uncomment and configure these lines depending on available memory:
      server.memory.heap.initial_size=512m
      server.memory.heap.max_size=8192m
      #server.memory.pagecache.size=10g
      Increasing these values (for example, to 2048M and 4096M respectively) can enhance performance. For more information, see Memory recommendations (Neo4j Operations Manual).
    You may choose to configure additional properties depending on your system architecture.
  4. Start the Neo4j Database Server cluster.
  5. Configure Context Graph to connect to Neo4j Graph Database Server instances in the cluster.
    1. Confirm that Neo4j Graph Database Server instances are running in the clustered configuration.
    2. Sign into the Spectrum Management Console and click Resources > Context Graph Repository Configuration.
    3. If a username and password are required to connect to the Neo4j Graph Database Server, choose Basic for Authentication type, then enter the User name and Password.
    4. Optional: You would select Secured connection if the Neo4j Graph Database Server is configured to use HTTPS.
    5. For each Neo4j Graph Database Server instance in the cluster, click the Add address button + and specify the IP address or host name and Bolt connector port for the instance.
    6. Click the Test button to test the connection settings.
    7. Click Save to save the configuration settings.