Custom Discoveries

Cheetah

At Custom Discoveries, we’re thrilled to introduce Cheetah, a free command-line Rapid Application Deployment (RAD) tool created specifically for TigerGraph developers, enabling fast development of proof-of-concept (POC) graph solutions.

Cheetah simplifies administrative functions for the TigerGraph ‘Classic’ Database and enables effortless deployment of TigerGraph Database Data Definition Language (DDL) scripts with minimal effort.

Cheetah main features include being able to create a graph, define a schema, creates and installs queries, and load data for both Vertices and Edge’s. If the data file is greater than 100MB, Cheetah will split the file into smaller files to assure that all of the data will be loaded into the cloud. It streamlines the handling of secrets, tokens, and security authentication, offering smooth access to a TigerGraph database, whether hosted in the cloud or running in a Docker container.

Cheetah is a (compiled) Python3 tool that is supported on Linux (Ubuntu) and macOS (Intel & Apple Silicon) platforms. One of its key features is the ability to “Flip” between local and remote Servers, allowing a developer to develop locally and deploy in their TigerGraph database schema in the cloud.

Cheetah is built on the principle of “Separation of Concerns,” utilizing a folder structure to organize different DDL scripts for building and loading a Graph instance.  Each TigerGraph “Graph Instance” is contained into its own folder, known as a project folder.

Each project folder has a set of subfolders for DDL statements. One subfolder is for schema, another, for query definitions, and finally a subfolder for data loading process for the vertices and edges.

Another one of Cheetah’s key features is its ability to load files in sequence. Simply append the file name with a number in brackets before the extension (e.g., mySubQuery[1].gsql, myQuery[2].gsql). This is particularly useful for loading sub-query routines that need to be prioritized.

Alongside the DDL folder is a GraphData folder, which holds all the data files that will be used by the DDL scripts in the Data folder.

Not to worry, you do not need to create this folder structure. Cheetah will create this file structure for you when you’re setting up a new Project Folder, populating the folders with a template DDL scripts.

Please Note: It is important that you follow the DDL template patterns for Schema definition and Data loading. Some functions like ‘Create Graph’ and ‘Drop Graph’ are handled by Cheetah and isn’t necessary that you add those commands to the DDL files.

Finally, as part of the project folder setup, Cheetah will create a configuration file, depending on if you’re trying to connect ‘remote’ (remoteAdminConfig.txt) to a TigerGraph iCloud instance or if your running locally (localAdminConfig.txt) under a Docker image. These files will capture your dba username and password, with the secret and token information all encrypted to keep your sensitive information private.a

  • Main Menu
    • [-0] Admin Menu…
    • [-f] Flip from Local to Remote Server1
    • [-a] Install All (Schema, Data, Queries)
    • [-b] Install Both Schema & Data
    • [-c] Clear Graph Store Data
    • [-d] Load Data
    • [-s] Install Schema
    • [-q] Query Menu…
    • [-h] This Help Menu
  • Admin Menu
    • [-1] Setup Configuration
    • [-d] Display Status of TigerGraph Server
    • [-r] Retrieve Exp-UDF’s
    • [-s] Secrets Menu…
    • [-i] Install Exp-UDF’s1
    • [-e] Perform Export Graph1
    • [-o] Display Log List1
    • [-l] Show TigerGraph license1
    • [-L] Load TigerGraph license1
    • [-t] Show Defined Tags
    • [-v] Version of TigerGraph
    • [–deleteJob] Delete All Jobs
    • [–deleteQuery] Delete All Queries
    • [–deleteGraph] Delete <GraphName>
    • [–start] Startup TigerGraph Server1
    • [–restart] Restartup TigerGraph Server1
    • [–stop] Stop TigerGraph Server1
    • [-h] This Help Menu
  • Query Menu
    • [-a] Delete, Create and Install All Queries
    • [-b] Create and Install All Queries
    • [-c] Create Queries
    • [-d] Delete Queries
    • [-i] Install Queries
    • [-s] Show Installed Queries
    • [-q] Create & Install Query by Name
    • [-h] This Help Menu
  • Secrets Menu
    • [-c] Create Secret & Token
    • [-d] Delete Secrets
    • [-s] Show Secrets & Tokens
    • [-r] Refresh Token
    • [-h] This Help Menu

Disclaimer

Disclaimer for Cheetah

Cheetah is provided as a free command-line tool for simplifying administrative functions in the TigerGraph “Classic” Database. While we strive to ensure that Cheetah is reliable and performs as intended, Custom Discoveries makes no warranties, express or implied, regarding its accuracy, performance, or fitness for any particular purpose.

Users are solely responsible for any consequences, direct or indirect, that arise from the use of Cheetah, including but not limited to data loss, system downtime, or security vulnerabilities. We recommend only using Cheetah in a non-production environment for development purposes only.

Custom Discoveries is not liable for any damages or issues resulting from the use of this tool. By downloading and using Cheetah, you agree to assume all risks and hold Custom Discoveries harmless from any claims arising from your use of the tool.

Install and Run

    1. Install

Note: Only the Linux version is provided in zip file format. To run either of the Mac versions, you must ‘clone‘ the Cheetah repository to operate it in a macOS environment.

You will need to download Cheetah from Custom Discoveries GitHub Repository. Unzip the file in your ‘Project Root’ directory.

  1. Initialize Cheetah
    • cd Cheetah/bin
    • Cheetah/bin> . ./initCheetah.sh
    • Cheetah will open with a welcome banner in the terminal, this will confirm that you have properly installed and initialized it. Now close Cheetah.
    • Note: You will need to run the initCheetah.sh script each time you open a new terminal window. To make it permanent, you will need to add the Cheetah Path to your shell startup script (i.e. .bashrc file)

Using Cheetah with Custom Discoveries TigerGraph Examples:

It is highly encouraged that you download one of the below Custom Discoveries examples for your first time using Cheetah.

Support

This is a Free product. Custom Discoveries makes no warranties, express or implied, regarding its accuracy, performance, or fitness for any particular purpose. Given that, Custom Discoveries is open to improving the product at a negotiated maintenance rate.

Contact Cheetah Product Support at: cheetah.support@customdiscoveries.com

Footnotes

[1] Refers to functions that only available in “Local” Mode