Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Initial Draft

...

Syndeia Cloud 3.5 SP1 is a full build of Syndeia Cloud and not a patch/incremental build. It is an in-place upgrade of the Syndeia Cloud services and does NOT require any data migration. Follow the steps below to deploy Syndeia Cloud 3.5 SP1.

  1. Download & extract the three .zip files to your home dir, i.e. syndeia-cloud-3.5

...

  1. -SP1.zip, syndeia-cloud-3.5

...

  1. -SP1_

...

  1. janusgraph.zip, syndeia-cloud-3.5

...

  1. -SP1_cassandra_zookeeper_kafka_setup.zip

  2. Identify your current Syndeia Cloud version and platform (Windows, Linux). Version can be identified by the filename of the .zip you originally downloaded, e.g. syndeia-cloud-3.5.2021-06-03.

  3. Start following the instructions below for the scenario and platform relevant to your environment. If a platform is not listed, no specific actions are needed for that platform.

Scenario 1: If you are deploying SC 3.5 for the first time with this service pack (or starting from scratch)

4. Gather the three .zip files you downloaded for Syndeia Cloud 3.5 SP1 and follow the instructions here: https: //intercax.atlassian.net/wiki/spaces/SYN34/pages/2409187145/ Deployment

Scenario 2: If you are already running SC 3.5 and upgrading to this 3.5 SP1 release

Linux

4. To upgrade the Janusgraph (JG) SC DB to 3.5 SP1: run /opt/janusgraph-current/bin/gremlin.sh and the following Groovy code below ( (info) this will check & set query.smart-limit to false):

Code Block
languagegroovy
:remote connect tinkerpop.server conf/remote.yaml session
:remote console
graph = ConfiguredGraphFactory.open('syndeia_cloud_graph')
graph.tx().rollback()
mgmt = graph.openManagement()
// below checks query.smart-limit
mgmt.get('query.smart-limit')
mgmt.set('query.smart-limit', false)
// above sets query.smart-limit to "false"
mgmt.get('query.smart-limit')
// you should get ==>false above
mgmt.commit()
:quit

The output as you execute each line should look similar to this:

...

languagegroovy

...

.

...

5. To upgrade Syndeia Cloud (SC) to 3.5 SP1: in your bash shell, run:  ~/syndeia-cloud-3.5.SP1_2021-10-14-SP1/bin/syndeia-cloud-3.5_install.bash --upgrade --SC_v 3.5.SP1_2021-10-14-SP1 and follow the prompts. (

(warning) Note, if you are running a multi-node configuration you will also need to pass in --multi_node (or -m), ie: ~/syndeia-cloud-3.5

...

-SP1/bin/syndeia-cloud-3.5_install.bash --upgrade --multi_node --SC_version=3.5

...

-SP1

Windows

4. Stop all existing SC services via services.msc (SCM)
5. To upgrade the Janusgraph (JG) SC DB to 3.5 SP1: In a Cygwin/WSL terminal, run /opt/janusgraph-current/bin/gremlin.bat and the following Groovy code below ( (info) this will check & set query.smart-limit to false):

Code Block
languagegroovy
:remote connect tinkerpop.server conf/remote.yaml session
:remote console
graph = ConfiguredGraphFactory.open('syndeia_cloud_graph')
graph.tx().rollback()
mgmt = graph.openManagement()
// below checks query.smart-limit
mgmt.get('query.smart-limit')
mgmt.set('query.smart-limit', false)
// above sets query.smart-limit to "false"
mgmt.get('query.smart-limit')
// you should get ==>false above
mgmt.commit()
:quit

The output as you execute each line should look similar to this:

...

languagegroovy

...

.

...

6. To upgrade Syndeia Cloud (SC) to 3.5 SP1: in a Cygwin/WSL terminal, run:  ~/syndeia-cloud-3.5.SP1_2021-10-14-SP1/bin/syndeia-cloud-3.5_install_windows.bash --upgrade --SC_v 3.5.SP1_2021-10-14-SP1 and follow the prompts (

(warning) Note, If you are running a multi-node configuration you will also need to pass in --multi_node (or -m), ie: ~/syndeia-cloud-3.5

...

-SP1/bin/syndeia-cloud-3.5_install.bash --upgrade --multi_node --SC_version=3.5

...

-SP1

Scenario 3: If you are already running SC 3.4 SP3 and upgrading to this 3.5 SP1 release

...

4. Please follow the instructions on the Migration page but use SC 3.5 SP1 everywhere where it references SC 3.5.

Verification

  1. Follow the steps in the section Validating Syndeia Cloud Installation & Configuration on the following page to verify your installation:

...

...

...

...

...

...

...

...

...

...

...