Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

(tick) Kyvos Azure Marketplace   (tick) Kyvos GCP Marketplace (tick) Kyvos Single Node Installation (Kyvos SNI)

...

Overview

  1. Switch between cube build semantic model instances.

    1. Set Cube Build semantic model job instances

    2. Switch between cube build semantic model job instances

Example

  • Get Cube Build semantic model job instances

    Code Block
    languagejava
    /**
    * method to launch Replace Partition build and incremental buildprocess with Replace partition:
    * @param entityID: ID of the cubesemantic model.
    * @param userInfo: Object of type UserInfo containing information about logged in user.
    */
    public String getBuildInstances(String entityID, UserInfo userInfo);
  • Switch between cube semantic model job instances

    Code Block
    languagejava
    /**
    * method to launch Replace Partition build and incremental buildprocess with Replace partition:
    * @param historyID: History idID of the cubesemantic model buildjob to which you want to switch.
    * @param action: SWITCH.
    * @param userInfo: Object of type UserInfo containing information about logged in user.
    */
    public String getExecBuildInstance(String historyID, String action, UserInfo userInfo);


...