diff --git a/.gitignore b/.gitignore index 525d2801..75438657 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .idea/ .DS_Store - +node_modules +build diff --git a/README.adoc b/README.adoc index 445d039b..e86803dd 100644 --- a/README.adoc +++ b/README.adoc @@ -6,4 +6,56 @@ This repository only contains the source files for the published documentation. To view the published version, see link:https://docs.tigergraph.com/cloud[TigerGraph Cloud Documentation]. == Contribution -For instructions on how to contribute to this repository, see link:https://github.com/tigergraph/doc-site/blob/main/contribution.adoc[Contribution guidelines]. \ No newline at end of file +For instructions on how to contribute to this repository, see link:https://github.com/tigergraph/doc-site/blob/main/contribution.adoc[Contribution guidelines]. + +== Install dependencies +To install dependencies, navigate to this repository and run: +[,console] +---- +npm install +---- + +== Build site locally +To build the site locally, run: +[,console] +---- +npm run build +---- +The build will be available in the `build/` folder in the root directory. + +IMPORTANT: Though the files are all in the `/build` folder, you won't be able to access other pages through the links if the files are not served by a server. +To preview locally, you can <>. If you really don't want to use a local server, edit the `antora-playbook.yml` file in your local environment, and change the `html_extension_style` under `urls` to `default`. This allows you to open the static files and have the links work. + +=== Build from your local content source repository +To have Antora build the site from your local content source repository, change the corresponding content source in the file `antora-playbook.yml` to point to your local git repository. + +See https://docs.antora.org/antora/2.3/playbook/content-source-url/#local-urls[Use local content repositories] on Antora's documentation. + +== Watch Mode + +Watch Mode launches a local web server for preview. It will continue watching your local content source repository changes and rebuild the site. + +[,console] +---- +npm run dev +---- + +You can access the web server at http://localhost:5000[http://localhost:5000]. + +== Run a local server to view the build + +To open the build, run: +[,console] +---- +$ npm i -g http-server +$ http-server build/site -c-1 +---- +Upon launching the command, the local address of the web server will be displayed in your terminal. You should see the following output in your terminal: + +---- +Starting up http-server, serving build/site +Available on: + http://127.0.0.1:8080 + http://192.168.1.8:8080 +Hit CTRL-C to stop the server +---- \ No newline at end of file diff --git a/antora-playbook.yml b/antora-playbook.yml new file mode 100644 index 00000000..b021658c --- /dev/null +++ b/antora-playbook.yml @@ -0,0 +1,17 @@ +site: + title: "Cloud Doc Test" + start_page: "savanna:overview:index.adoc" + +content: + sources: + - url: . + branches: HEAD + start_paths: [modules/savanna, modules/cloud] + +output: + dir: ./build/site + +ui: + bundle: + url: https://github.com/tigergraph/antora-ui/blob/main/build/ui-bundle.zip?raw=true + snapshot: true \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 00000000..a6b0fbfb --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,38 @@ +'use strict' + +const connect = require('gulp-connect') +const fs = require('fs') +const generator = require('@antora/site-generator-default') +const { reload: livereload } = process.env.LIVERELOAD === 'true' ? require('gulp-connect') : {} +const { series, src, watch } = require('gulp') +const yaml = require('js-yaml') + +const playbookFilename = 'antora-playbook.yml' +const playbook = yaml.load(fs.readFileSync(playbookFilename, 'utf8')) +const outputDir = (playbook.output || {}).dir || './build/site' +const serverConfig = { name: 'Preview Site', livereload, port: 5000, root: outputDir } +const antoraArgs = ['--playbook', playbookFilename] +const watchPatterns = playbook.content.sources.filter((source) => !source.url.includes(':')).reduce((accum, source) => { + accum.push(`${source.url}/${source.start_path ? source.start_path + '/' : ''}antora.yml`) + accum.push(`${source.url}/${source.start_path ? source.start_path + '/' : ''}**/*.adoc`) + return accum +}, []) + +function generate (done) { + generator(antoraArgs, process.env) + .then(() => done()) + .catch((err) => { + console.log(err) + done() + }) +} + +function serve (done) { + connect.server(serverConfig, function () { + this.server.on('close', done) + watch(watchPatterns, generate) + if (livereload) watch(this.root).on('change', (filepath) => src(filepath, { read: false }).pipe(livereload())) + }) +} + +module.exports = { serve, generate, default: series(generate, serve) } diff --git a/modules/cloud/modules/billing/pages/index.adoc b/modules/cloud/modules/billing/pages/index.adoc index ca52fbef..2879007f 100644 --- a/modules/cloud/modules/billing/pages/index.adoc +++ b/modules/cloud/modules/billing/pages/index.adoc @@ -15,7 +15,7 @@ Data transfer costs from the cloud platforms are calculated according to the clo [NOTE] ==== -This section only applies to the standard hourly service of TigerGraph Cloud. If you have a committed long-term contract with TigerGraph, please contact link:mailto:sales@tigergraph.com[sales@tigergraph.com] for questions. +This section only applies to the standard hourly service of TigerGraph Cloud Classic. If you have a committed long-term contract with TigerGraph, please contact link:mailto:sales@tigergraph.com[sales@tigergraph.com] for questions. ==== == Pricing Information @@ -27,7 +27,7 @@ View our https://www.tigergraph.com/tigergraph-cloud-pricing/[pricing table] for image::payment-methods.png[] -For standard hourly use of TigerGraph Cloud clusters, we currently support payment through cards. +For standard hourly use of TigerGraph Cloud Classic clusters, we currently support payment through cards. To connect a credit card to your account, click the btn:[Add Credit Card] button in the center of the page. You can add multiple cards and set one as the default payment method. @@ -38,11 +38,11 @@ If you need to use ACH payment or purchase bulk cloud credits, please contact sa === Subscriptions -You can also pay for TigerGraph Cloud via marketplace subscriptions through a cloud provider: +You can also pay for TigerGraph Cloud Classic via marketplace subscriptions through a cloud provider: -* https://aws.amazon.com/marketplace/pp/prodview-5rpjtqdqixmds[AWS Marketplace]: Pay for TigerGraph Cloud via AWS -* https://azuremarketplace.microsoft.com/en-us/marketplace/apps/tigergraph.tigergraph-cloud?tab=Overview[Azure Marketplace]: Pay for TigerGraph Cloud via Azure -* https://console.cloud.google.com/marketplace/product/tigergraph-public/tigergraph-cloud[GCP Marketplace]: Pay for TigerGraph Cloud via GCP +* https://aws.amazon.com/marketplace/pp/prodview-5rpjtqdqixmds[AWS Marketplace]: Pay for TigerGraph Cloud Classic via AWS +* https://azuremarketplace.microsoft.com/en-us/marketplace/apps/tigergraph.tigergraph-cloud?tab=Overview[Azure Marketplace]: Pay for TigerGraph Cloud Classic via Azure +* https://console.cloud.google.com/marketplace/product/tigergraph-public/tigergraph-cloud[GCP Marketplace]: Pay for TigerGraph Cloud Classic via GCP == Invoices diff --git a/modules/cloud/modules/reference/pages/aws.adoc b/modules/cloud/modules/reference/pages/aws.adoc index 25aa08fb..f993c2cc 100644 --- a/modules/cloud/modules/reference/pages/aws.adoc +++ b/modules/cloud/modules/reference/pages/aws.adoc @@ -72,7 +72,7 @@ The table below shows the instance types available on AWS. == Disk storage -On AWS, disk storage refers to the https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volumes.html[EBS volume] attached to your TigerGraph Cloud instance. By default, data in disk storage is encrypted-at-rest with platform-managed keys. +On AWS, disk storage refers to the https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volumes.html[EBS volume] attached to your TigerGraph Cloud Classic instance. By default, data in disk storage is encrypted-at-rest with platform-managed keys. Disk storage is charged per GB per hour. diff --git a/modules/cloud/modules/reference/pages/glossary.adoc b/modules/cloud/modules/reference/pages/glossary.adoc index 779a00df..f5ceb3e0 100644 --- a/modules/cloud/modules/reference/pages/glossary.adoc +++ b/modules/cloud/modules/reference/pages/glossary.adoc @@ -61,7 +61,7 @@ A database user with its own roles and privileges for different graphs stored on == vCPU -A virtual central processing unit. A vCPU is a core within a virtual machine inside TigerGraph Cloud. +A virtual central processing unit. A vCPU is a core within a virtual machine inside TigerGraph Cloud Classic. == VPC @@ -73,4 +73,4 @@ A network between two VPCs allowing instances to communicate as if they are on t == web shell -A browser-accessible command line for running GSQL commands on a TigerGraph Cloud cluster. +A browser-accessible command line for running GSQL commands on a TigerGraph Cloud Classic cluster. diff --git a/modules/cloud/modules/reference/pages/index.adoc b/modules/cloud/modules/reference/pages/index.adoc index bdfbac33..33c96ca9 100644 --- a/modules/cloud/modules/reference/pages/index.adoc +++ b/modules/cloud/modules/reference/pages/index.adoc @@ -1,5 +1,5 @@ = Reference -:description: References for TigerGraph Cloud documentation. +:description: References for TigerGraph Cloud Classic documentation. :page-aliases: readme.adoc, README.adoc This section contains the following references: diff --git a/modules/cloud/modules/reference/pages/service-limits.adoc b/modules/cloud/modules/reference/pages/service-limits.adoc index 8c84907a..6c29f83b 100644 --- a/modules/cloud/modules/reference/pages/service-limits.adoc +++ b/modules/cloud/modules/reference/pages/service-limits.adoc @@ -1,6 +1,6 @@ = Service Limits -By default, TigerGraph Cloud limits how many instances and how many vCPUs a single account can provision. These limits can be waived by request if you have a valid credit card on your account. To waive a service limit, please contact link:mailto:sales@tigergraph.com[sales@tigergraph.com]. +By default, TigerGraph Cloud Classic limits how many instances and how many vCPUs a single account can provision. These limits can be waived by request if you have a valid credit card on your account. To waive a service limit, please contact link:mailto:sales@tigergraph.com[sales@tigergraph.com]. The table below outlines the service limits for accounts with and without a valid credit card. diff --git a/modules/cloud/modules/release-notes/pages/index.adoc b/modules/cloud/modules/release-notes/pages/index.adoc index cc1445cc..b5318e7e 100644 --- a/modules/cloud/modules/release-notes/pages/index.adoc +++ b/modules/cloud/modules/release-notes/pages/index.adoc @@ -2,10 +2,10 @@ :page-toclevels: 1 :page-aliases: release-notes.adoc -New updates to TigerGraph Cloud, both to the user experience and the backend capability, are regularly released. +New updates to TigerGraph Cloud Classic, both to the user experience and the backend capability, are regularly released. This page provides a summary of each update upon release. -These TigerGraph Cloud updates are separate from updates to the core TigerGraph architecture. For release notes about new TigerGraph versions, see xref:tigergraph-server:release-notes:index.adoc[TigerGraph Server Release Notes]. +These TigerGraph Cloud Classic updates are separate from updates to the core TigerGraph architecture. For release notes about new TigerGraph versions, see xref:tigergraph-server:release-notes:index.adoc[TigerGraph Server Release Notes]. Cloud clusters are not automatically upgraded to a new TigerGraph version when a new version is released. For version upgrades for existing clusters, please contact TigerGraph Support. @@ -142,7 +142,7 @@ Release date: January 18th, 2023 * Disk resize limits now match the limits from each cloud service provider. === Known issues -* Subscriptions to TigerGraph Cloud from cloud service provider marketplaces occasionally encounter issues during setup. +* Subscriptions to TigerGraph Cloud Classic from cloud service provider marketplaces occasionally encounter issues during setup. Please contact TigerGraph Support for assistance if your account is affected. == November 2022 Updates @@ -151,9 +151,9 @@ Release date: November 15th, 2022 === Feature updates -* xref:insights:intro:index.adoc[TigerGraph Insights,] an all-new data visualization platform, is now available in TigerGraph Cloud -* xref:ml-workbench:on-cloud:on-tgcloud.adoc[Machine Learning Workbench] is now integrated seamlessly into TigerGraph Cloud -* Added a dedicated starter kit for Machine Learning Workbench on TigerGraph Cloud +* xref:insights:intro:index.adoc[TigerGraph Insights,] an all-new data visualization platform, is now available in TigerGraph Cloud Classic +* Machine Learning Workbench is now integrated seamlessly into TigerGraph Cloud Classic +* Added a dedicated starter kit for Machine Learning Workbench on TigerGraph Cloud Classic * Reworked Billing and Analytics pages for improved ease of use * TigerGraph 3.8.0 is now available when creating new clusters @@ -219,8 +219,8 @@ Log out and log in again to fix this error. Release date: August 18th, 2022 === New Features -* Users with an invitation can provision xref:ml-workbench:on-cloud:mlwb-service.adoc[ML Workbench (preview version)] instances on top of TigerGraph Cloud clusters. -** If you are interested in experimenting with ML Workbench on TigerGraph Cloud, please contact sales@tigergraph.com +* Users with an invitation can provision *ML Workbench (preview version)* instances on top of TigerGraph Cloud Classic clusters. +** If you are interested in experimenting with ML Workbench on TigerGraph Cloud Classic, please contact sales@tigergraph.com * TigerGraph 3.6.2 is available when creating new clusters. === Feature updates @@ -235,12 +235,12 @@ Release date: July 6, 2022 * Multiple users can now share access to the same organization account. * Role based access control (RBAC) to control and manage access to specific clusters and capabilities. -* TigerGraph Cloud Console and GraphStudio user authentication are now integrated to eliminate repeated logins. +* TigerGraph Cloud Classic Console and GraphStudio user authentication are now integrated to eliminate repeated logins. * All-new clean and unified user interface. === Feature Updates -* Username/password authentication has changed for connectors to TigerGraph Cloud instances. +* Username/password authentication has changed for connectors to TigerGraph Cloud Classic instances. ** Users need to create a secret in the Admin Portal UI. ** Secrets can only be created through the GUI after a graph has been created. ** When entering the credentials, the username needs to be `\__GSQL__secret`, and the password needs to be the secret. @@ -257,7 +257,7 @@ Release date: June 20, 2022 === Feature updates -* TigerGraph Cloud clusters created on or after June 20, 2022 no longer expose ports 14240 or 9000. +* TigerGraph Cloud Classic clusters created on or after June 20, 2022 no longer expose ports 14240 or 9000. This also applies to previously created clusters that are resized on or after June 20, 2022. Use port 443 instead for API endpoint connectivity: ** Use API endpoint `443/restpp/` for RESTPP endpoints that were on port 9000 ** Use API endpoint `443/` for endpoints that were on port 14240 @@ -266,9 +266,9 @@ Always back up a cluster before performing a resize operation. === Known issues -* The GSQL Web Shell is temporarily disabled for new clusters due to recent networking improvements on the TigerGraph Cloud backend. Clusters created before June 20, 2022 are unaffected and still have access to the Web Shell. +* The GSQL Web Shell is temporarily disabled for new clusters due to recent networking improvements on the TigerGraph Cloud Classic backend. Clusters created before June 20, 2022 are unaffected and still have access to the Web Shell. -** Use the xref:tigergraph-server:gsql-shell:using-a-remote-gsql-client.adoc[Remote GSQL client] to access GSQL on new TigerGraph Cloud clusters until access is restored. +** Use the xref:tigergraph-server:gsql-shell:using-a-remote-gsql-client.adoc[Remote GSQL client] to access GSQL on new TigerGraph Cloud Classic clusters until access is restored. == May 2022 Updates @@ -296,7 +296,7 @@ Release date: Feb 8th, 2022 === New features * TigerGraph Version 3.5 is now available for selection when creating new clusters. -* Added the framework to render TigerGraph Cloud UIs in other languages besides English. +* Added the framework to render TigerGraph Cloud Classic UIs in other languages besides English. * Improvements on secure access and auditability. * Improvements on operational SLAs and faster resolution of issues. @@ -307,8 +307,8 @@ Release date: Sep 22, 2021 === New features * **TigerGraph V3.1.5 is now available for selection when creating new clusters**. Users can create clusters that include both single server and cluster deployment when they choose TigerGraph V3.1.5. -* *VPC Peering*. Users can now create a VPC peering connection between their TigerGraph Cloud VPC and another VPC on all supported cloud providers. -* *Automatic load balancing for HA clusters*. When users provision a cluster with replicas in TigerGraph Cloud, a load balancer will be automatically attached to the cluster. +* *VPC Peering*. Users can now create a VPC peering connection between their TigerGraph Cloud Classic VPC and another VPC on all supported cloud providers. +* *Automatic load balancing for HA clusters*. When users provision a cluster with replicas in TigerGraph Cloud Classic, a load balancer will be automatically attached to the cluster. * *Multi-AZ deployment*. When a user provisions an HA cluster, the replicas of the cluster will automatically be provisioned on different availability zones. This feature is supported on AWS and GCP. * *Free-tier clusters on GCP*. We now offer the option to create a free-tier cluster on GCP in addition to AWS. @@ -359,7 +359,7 @@ Release Date: December 16, 2020 * ​✅Support TigerGraph V3.0.6 for New Clusters * ​​✅Support TigerGraph v2.6.4 for New Clusters * ✅Support replication factor of 3 for TigerGraph V3.0.6 clusters -* ✅New TigerGraph Cloud Instance Type TG.C4.M16 available from AWS +* ✅New TigerGraph Cloud Classic Instance Type TG.C4.M16 available from AWS * ✅SOC2 Type 2 report available to request * ✅5 New TigerGraph Starter Kits ** Graph Convolutional Networks (V3.0.6) @@ -412,7 +412,7 @@ Release Date: April 27, 2020 *** Centrality *** Community Detection -== TigerGraph Cloud V2.0 +== TigerGraph Cloud Classic V2.0 Release Date: January 08, 2020 @@ -425,7 +425,7 @@ Release Date: January 08, 2020 * ✅Added Steps in Cloud Portal Provision Workflow * ✅New TigerGraph Starter Kits -== TigerGraph Cloud V1.0 +== TigerGraph Cloud Classic V1.0 Release Date: September 25, 2019 @@ -438,7 +438,7 @@ Sunset Date: March 31, 2020 * ✅Free Credits for 1st Time Sign Up * ✅Available in 8 Tiers of Instances (Free Tier Included) and 6 Global Regions * ✅Flexible Billing and Pay As You Go Pricing -* ✅Secure and Isolated Network (VPC) for Each TigerGraph Cloud Account +* ✅Secure and Isolated Network (VPC) for Each TigerGraph Cloud Classic Account * ✅Fast Data Loading through S3 and Local Files * ✅13 TigerGraph Starter Kits with Sample Datasets and Queries * ✅Start/Stop/Terminate TigerGraph Clusters On Demand through Cloud Portal diff --git a/modules/cloud/modules/security/pages/idp.adoc b/modules/cloud/modules/security/pages/idp.adoc index af1d6c1e..21ad284a 100644 --- a/modules/cloud/modules/security/pages/idp.adoc +++ b/modules/cloud/modules/security/pages/idp.adoc @@ -1,17 +1,17 @@ = IDP integration with SSO -By default, user management in a TigerGraph Cloud organization happens in the xref:manage-org-users.adoc[] section of the TigerGraph Cloud interface. +By default, user management in a TigerGraph Cloud Classic organization happens in the xref:manage-org-users.adoc[] section of the TigerGraph Cloud Classic interface. -If you have another preferred identity provider (IDP), you can integrate with it instead using SAML 2.0 to handle your user management needs outside of TigerGraph Cloud. +If you have another preferred identity provider (IDP), you can integrate with it instead using SAML 2.0 to handle your user management needs outside of TigerGraph Cloud Classic. IDP integration is currently available at the Organization level, so one IDP will handle user management for all clusters in that organization. Only one IDP can be connected to a single Organization. == Process Outline -. Have IDP enabled on your TigerGraph Cloud Organization account. -. Create an app integration on the IDP side to configure it to link with TigerGraph Cloud. -. Users log in to the TigerGraph Cloud portal using credentials from your IDP. +. Have IDP enabled on your TigerGraph Cloud Classic Organization account. +. Create an app integration on the IDP side to configure it to link with TigerGraph Cloud Classic. +. Users log in to the TigerGraph Cloud Classic portal using credentials from your IDP. . Organization Admins assign roles to the users being created in the cloud organization via successful login from the IDP. == Setup diff --git a/modules/cloud/modules/security/pages/index.adoc b/modules/cloud/modules/security/pages/index.adoc index 23d0dc63..60d78d28 100644 --- a/modules/cloud/modules/security/pages/index.adoc +++ b/modules/cloud/modules/security/pages/index.adoc @@ -1,8 +1,8 @@ = Security :page-aliases: readme.adoc, README.adoc -TigerGraph Cloud leverages the secured infrastructure of our cloud service providers and provides additional security features to ensure the security of your data and network. -This page provides an overview of the security features available on TigerGraph Cloud. +TigerGraph Cloud Classic leverages the secured infrastructure of our cloud service providers and provides additional security features to ensure the security of your data and network. +This page provides an overview of the security features available on TigerGraph Cloud Classic. == Network access diff --git a/modules/cloud/modules/security/pages/manage-cloud-account.adoc b/modules/cloud/modules/security/pages/manage-cloud-account.adoc index d9d9cabb..92418ec2 100644 --- a/modules/cloud/modules/security/pages/manage-cloud-account.adoc +++ b/modules/cloud/modules/security/pages/manage-cloud-account.adoc @@ -1,4 +1,4 @@ -= Manage your TigerGraph Cloud User Account += Manage your TigerGraph Cloud Classic User Account :experimental: == Creating an account @@ -11,7 +11,7 @@ See xref:manage-org-users.adoc#_invite_new_users[Invite new users] for more deta Your user account is displayed in the order [First Name] [Last Name] in the list of users in the organization account. -Changing your display name is not currently supported by TigerGraph Cloud. +Changing your display name is not currently supported by TigerGraph Cloud Classic. To change your name, an Organization Admin needs to remove your account and send a new invitation for you to make a new account. == Account permissions @@ -21,9 +21,9 @@ If you believe you have been given the wrong organization role in error, contact See xref:manage-org-users.adoc#_organization_roles_and_privileges[Organization roles and privileges] for detailed information on the privileges available to each organization role. -== Reset your TigerGraph Cloud user account password +== Reset your TigerGraph Cloud Classic user account password -. Go to the https://tgcloud.io[TigerGraph Cloud main page]. +. Go to the https://classic.tgcloud.io[TigerGraph Cloud Classic main page]. . Click the *Login* link next to "Have an account?" . Enter your organization name. If you don't remember your organization name, contact your administrator. . Click *Forgot password?* diff --git a/modules/cloud/modules/security/pages/manage-db-users.adoc b/modules/cloud/modules/security/pages/manage-db-users.adoc index b765c68c..44e3a0b5 100644 --- a/modules/cloud/modules/security/pages/manage-db-users.adoc +++ b/modules/cloud/modules/security/pages/manage-db-users.adoc @@ -2,7 +2,7 @@ :experimental: :page-aliases: manage-database-users.adoc -When you connect to a TigerGraph Cloud instance programmatically, such as from connectors like pyTigerGraph or the remote GSQL client, you often need to provide credentials that are created in the database of your cluster. +When you connect to a TigerGraph Cloud Classic instance programmatically, such as from connectors like pyTigerGraph or the remote GSQL client, you often need to provide credentials that are created in the database of your cluster. This is different from your TigerGraph Organization account which allows you to log in to clusters in your organization to which you have access. NOTE: You can only create database users for clusters created after August 18th, 2022. @@ -12,7 +12,7 @@ image::database-access.png[] == Create a database user === Prerequisite -* Your TigerGraph Cloud account has role Organization Admin +* Your TigerGraph Cloud Classic account has role Organization Admin === Procedure @@ -28,7 +28,7 @@ For details on TigerGraph's role-based access control model, see xref:tigergraph == Delete a database user === Prerequisite -* Your TigerGraph Cloud account has role Organization Admin +* Your TigerGraph Cloud Classic account has role Organization Admin === Procedure diff --git a/modules/cloud/modules/security/pages/manage-org-users.adoc b/modules/cloud/modules/security/pages/manage-org-users.adoc index 1e2b3713..de7ead1e 100644 --- a/modules/cloud/modules/security/pages/manage-org-users.adoc +++ b/modules/cloud/modules/security/pages/manage-org-users.adoc @@ -2,9 +2,9 @@ :page-aliases: :experimental: -When you set up a TigerGraph Cloud account, you are granted the privileges of an Organization Admin for your company. +When you set up a TigerGraph Cloud Classic account, you are granted the privileges of an Organization Admin for your company. -TigerGraph Cloud allows an Organization Admin to manage multiple users in your organization and control their access to various clusters. +TigerGraph Cloud Classic allows an Organization Admin to manage multiple users in your organization and control their access to various clusters. This page explains the user access controls. For help with setting up clusters, visit xref:solutions:create-a-solution.adoc[]. @@ -14,7 +14,7 @@ The first time you log in to a new organization account, you have the opportunit image:invite-more-users.png[] -You can also add users later by going to the Access Management page under the sidebar button btn:[Users] in the TigerGraph Cloud interface. +You can also add users later by going to the Access Management page under the sidebar button btn:[Users] in the TigerGraph Cloud Classic interface. image:access-management.png[] @@ -22,7 +22,7 @@ Invitations will expire after seven days. If an invitation expires, resend the i === Organization roles and privileges -The privileges granted to the various roles in a TigerGraph Cloud organization are as follows: +The privileges granted to the various roles in a TigerGraph Cloud Classic organization are as follows: |==== |Action | Organization Member | Organization Cluster Admin |Organization Admin @@ -42,14 +42,14 @@ These legacy clusters exist entirely outside of the User Management system and c === TigerGraph solution roles -A user in an organization on TigerGraph Cloud is separate from a user on a TigerGraph cluster. -On TigerGraph Cloud, a single user in an organization may be assigned to several clusters and have various roles on those clusters. +A user in an organization on TigerGraph Cloud Classic is separate from a user on a TigerGraph cluster. +On TigerGraph Cloud Classic, a single user in an organization may be assigned to several clusters and have various roles on those clusters. In this documentation, for consistency, we will refer to these using the terms "organization role" and "cluster role." For information about the TigerGraph cluster roles, see the page xref:tigergraph-server:user-access:access-control-model.adoc[]. -When a TigerGraph Cloud user is added to a cluster as an Organization Cluster Admin or Organization Admin, they are granted the `superuser` role on that cluster. +When a TigerGraph Cloud Classic user is added to a cluster as an Organization Cluster Admin or Organization Admin, they are granted the `superuser` role on that cluster. A user added to a cluster as an Organization Member has no role on the cluster by default, but can be assigned a cluster role by anyone with the `superuser` cluster role. === Access Management diff --git a/modules/cloud/modules/security/pages/password-policy.adoc b/modules/cloud/modules/security/pages/password-policy.adoc index 8a822e7b..c4447e50 100644 --- a/modules/cloud/modules/security/pages/password-policy.adoc +++ b/modules/cloud/modules/security/pages/password-policy.adoc @@ -1,7 +1,7 @@ = Password Policy :experimental: -TigerGraph Cloud user accounts have their own password requirements separate from the xref:tigergraph-server:security:password-policy.adoc[TigerGraph Server password policy]. +TigerGraph Cloud Classic user accounts have their own password requirements separate from the xref:tigergraph-server:security:password-policy.adoc[TigerGraph Server password policy]. No empty passwords are permitted. Each password must be at least 12 characters long and include at least one of the following: @@ -11,7 +11,7 @@ No empty passwords are permitted. Each password must be at least 12 characters l * A digit `0-9` [NOTE] -This TigerGraph Cloud password policy cannot be changed by users. +This TigerGraph Cloud Classic password policy cannot be changed by users. Organization Admins do not have access to change or reset user passwords in an Organization account. If you forget your password, click the btn:[Forgot Password?] button during login, or contact support@tigergraph.com for assistance. \ No newline at end of file diff --git a/modules/cloud/modules/security/pages/private-access/azure.adoc b/modules/cloud/modules/security/pages/private-access/azure.adoc index ee9f53e7..19942875 100644 --- a/modules/cloud/modules/security/pages/private-access/azure.adoc +++ b/modules/cloud/modules/security/pages/private-access/azure.adoc @@ -11,7 +11,7 @@ link:https://youtu.be/Sv20Ugt_REk[Azure Private Link on TigerGraph - Video Tutor == Azure General Workflow -. Begin creating a paid-tier TigerGraph Cloud cluster in a region that supports private access. +. Begin creating a paid-tier TigerGraph Cloud Classic cluster in a region that supports private access. . Select “Private“ for the TigerGraph Endpoint Type. diff --git a/modules/cloud/modules/security/pages/private-access/gcp.adoc b/modules/cloud/modules/security/pages/private-access/gcp.adoc index 6b64f2df..f39d12da 100644 --- a/modules/cloud/modules/security/pages/private-access/gcp.adoc +++ b/modules/cloud/modules/security/pages/private-access/gcp.adoc @@ -37,7 +37,7 @@ Google has a detailed page about using Private Service Connect at this link: lin . For *Target*, select *Published service*. -. For *Target service*, enter the service attachment URI from the TigerGraph Cloud Portal. +. For *Target service*, enter the service attachment URI from the TigerGraph Cloud Classic Portal. .. The service attachment URI is in this format: `projects/SERVICE_PROJECT/regions/REGION/serviceAttachments/SERVICE_NAME` . Enter a name to use for the endpoint under *Endpoint name* @@ -61,7 +61,7 @@ Google has a detailed page about using Private Service Connect at this link: lin === Private DNS via GCP console Create a Private DNS Zone named `privatelink.i.tgcloud.io` on the *Cloud DNS* page. -In the new DNS zone, add a DNS *A* record with the same name as the cluster domain from the TigerGraph Cloud Portal. +In the new DNS zone, add a DNS *A* record with the same name as the cluster domain from the TigerGraph Cloud Classic Portal. The value is the private static IP address for Private Service Connect. [WARNING] @@ -72,7 +72,7 @@ Do not add `privatelink.tgcloud.io` to the DNS *A* record. Make sure you have the latest GCP CLI tools from this link: link:https://cloud.google.com/sdk/docs/install[Install the gcloud CLI] -Verify that a subnet with *Purpose* set to *None* exists to contain the Private Service Connect endpoint. The subnet region must be the same as TigerGraph Cloud. +Verify that a subnet with *Purpose* set to *None* exists to contain the Private Service Connect endpoint. The subnet region must be the same as TigerGraph Cloud Classic. You can reuse an existing subnet that you have already created using the GUI or create a new subnetwork using this command: @@ -106,7 +106,7 @@ Run this command to create private DNS zone: gcloud dns managed-zones create --dns-name=privatelink.tgcloud.io --networks="" --visibility=private ---- -Next run this command to add a DNS *A* record to the DNS zone. Replace `` with the domain name in the TigerGraph Cloud portal. +Next run this command to add a DNS *A* record to the DNS zone. Replace `` with the domain name in the TigerGraph Cloud Classic portal. [source] ---- diff --git a/modules/cloud/modules/security/pages/private-access/index.adoc b/modules/cloud/modules/security/pages/private-access/index.adoc index 2473bf34..ce05f4b1 100644 --- a/modules/cloud/modules/security/pages/private-access/index.adoc +++ b/modules/cloud/modules/security/pages/private-access/index.adoc @@ -2,7 +2,7 @@ TigerGraph offers private access services through AWS (AWS PrivateLink), Azure (Azure Private Link), and GCP (Private Service Connect). -This section includes instructions on setting up private access through TigerGraph Cloud. +This section includes instructions on setting up private access through TigerGraph Cloud Classic. This feature is only available to new clusters on regions that support private endpoints, not clusters existing before the feature release. If your cluster was active before this feature was released in June 2022, you cannot create a private link in that region. Please contact TigerGraph support for information about upgrading to be able to create private links. @@ -11,7 +11,7 @@ Private access services are only available for paid clusters. == Setup overview -. Create a new cluster on TigerGraph Cloud. +. Create a new cluster on TigerGraph Cloud Classic. . Choose "Private" or "Public" for the "TigerGraph Endpoint Type". diff --git a/modules/cloud/modules/security/pages/user-management.adoc b/modules/cloud/modules/security/pages/user-management.adoc index 64ccde03..5b1c78a1 100644 --- a/modules/cloud/modules/security/pages/user-management.adoc +++ b/modules/cloud/modules/security/pages/user-management.adoc @@ -1,26 +1,26 @@ = User Management :description: -This section describes the way user accounts work at different access levels in TigerGraph Cloud. +This section describes the way user accounts work at different access levels in TigerGraph Cloud Classic. -== TigerGraph Cloud user account +== TigerGraph Cloud Classic user account -Your TigerGraph Cloud user account serves as your credential on the platform level. +Your TigerGraph Cloud Classic user account serves as your credential on the platform level. Depending on your role, you have various levels of access to clusters, billing information and organization user information. See xref:manage-cloud-account.adoc[] for more information about making changes to your account. == Single Sign-On (SSO) -Organization admins can link a TigerGraph Cloud Organization with an IDP such as Okta and Azure Active Directory (AAD). -This allows for user management to be done entirely outside TigerGraph Cloud inside a preferred IDP. +Organization admins can link a TigerGraph Cloud Classic Organization with an IDP such as Okta and Azure Active Directory (AAD). +This allows for user management to be done entirely outside TigerGraph Cloud Classic inside a preferred IDP. See xref:idp.adoc[] for more information. == TigerGraph user access levels -On the individual cluster level, the same xref:gui:admin-portal:management/user-management.adoc[role-based access control] used by the on-premises version of TigerGraph also applies to TigerGraph Cloud. -Each cluster can have many TigerGraph Cloud users and each user can have different roles for each graph with different privileges. +On the individual cluster level, the same xref:gui:admin-portal:management/user-management.adoc[role-based access control] used by the on-premises version of TigerGraph also applies to TigerGraph Cloud Classic. +Each cluster can have many TigerGraph Cloud Classic users and each user can have different roles for each graph with different privileges. For more information on how to manage users and roles in Admin Portal, see xref:gui:admin-portal:management/user-management.adoc[]. diff --git a/modules/cloud/modules/security/pages/vpc-peering/aws.adoc b/modules/cloud/modules/security/pages/vpc-peering/aws.adoc index 7cfa4fad..ede0cd12 100644 --- a/modules/cloud/modules/security/pages/vpc-peering/aws.adoc +++ b/modules/cloud/modules/security/pages/vpc-peering/aws.adoc @@ -6,11 +6,11 @@ This is a guide for setting up a VPC peering connection between your -TigerGraph Cloud VPC and another AWS VPC. +TigerGraph Cloud Classic VPC and another AWS VPC. == Prerequisites -* Unterminated TigerGraph Cloud clusters on AWS +* Unterminated TigerGraph Cloud Classic clusters on AWS == Procedure diff --git a/modules/cloud/modules/security/pages/vpc-peering/azure.adoc b/modules/cloud/modules/security/pages/vpc-peering/azure.adoc index 829edda6..a0226610 100644 --- a/modules/cloud/modules/security/pages/vpc-peering/azure.adoc +++ b/modules/cloud/modules/security/pages/vpc-peering/azure.adoc @@ -1,14 +1,14 @@ = Set up VN Peering on Azure -:description: The steps to set up VPC peering between the TigerGraph Cloud Azure VN and another Azure VN. +:description: The steps to set up VPC peering between the TigerGraph Cloud Classic Azure VN and another Azure VN. :experimental: :sectnums: :page-aliases: cloud:vpc-peering/azure.adoc -This is a guide for setting up a Virtual Network (VN) peering connection between the TigerGraph Cloud VN and another Azure VN. +This is a guide for setting up a Virtual Network (VN) peering connection between the TigerGraph Cloud Classic VN and another Azure VN. == Prerequisite -* At least one unterminated TigerGraph Cloud cluster on Azure +* At least one unterminated TigerGraph Cloud Classic cluster on Azure == Procedure @@ -23,18 +23,18 @@ Choose Azure as your network platform. Then choose the region of the platform you want to initiate the peering connection from. Click btn:[Next]. -=== Add TigerGraph Cloud to your Azure tenant +=== Add TigerGraph Cloud Classic to your Azure tenant image::azure-peering.png[] In the Peer VPC tab, fill in your link:https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-how-to-find-tenant[Azure tenant ID], your VN name, your resource group ID, and your Subscription ID as well. Click btn:[Next]. -Click on the link in the instructions to add TigerGraph Cloud to your tenant. +Click on the link in the instructions to add TigerGraph Cloud Classic to your tenant. Doing so opens a new tab, and if authorization is successful, it will redirect you back to the cloud portal. You can now safely close this tab. -=== Assign Network Contributor role to TigerGraph Cloud VN Peerer +=== Assign Network Contributor role to TigerGraph Cloud Classic VN Peerer From the Azure portal, navigate to btn:[Virtual Networks] and choose the network you are peering with. Then navigate to menu:Access Control[Add > Add role assignment]. diff --git a/modules/cloud/modules/security/pages/vpc-peering/gcp.adoc b/modules/cloud/modules/security/pages/vpc-peering/gcp.adoc index 2d4c7f77..38976491 100644 --- a/modules/cloud/modules/security/pages/vpc-peering/gcp.adoc +++ b/modules/cloud/modules/security/pages/vpc-peering/gcp.adoc @@ -5,11 +5,11 @@ :page-aliases: cloud:vpc-peering/gcp.adoc This is a guide for setting up a VPC peering connection between your -TigerGraph Cloud VPC and another GCP VPC. +TigerGraph Cloud Classic VPC and another GCP VPC. == Prerequisite -* At least one unterminated TigerGraph Cloud cluster on GCP +* At least one unterminated TigerGraph Cloud Classic cluster on GCP == Procedure @@ -55,8 +55,8 @@ Network Peering] that includes the network you want to peer with and the name of the VPC network: ** Project ID:`+tgcloud-prod+` -** VPC network name: Name of your TigerGraph Cloud VPC. You can find it -in the menu:TigerGraph Cloud portal[Network tab > VPC Peering] page. +** VPC network name: Name of your TigerGraph Cloud Classic VPC. You can find it +in the menu:TigerGraph Cloud Classic portal[Network tab > VPC Peering] page. Choose `+GCP+` as the platform, and in the VPC column is the VPC name. . You can leave the other fields as they are (with only btn:[Export subnet routes with public IP] selected) unless you need special configurations. diff --git a/modules/cloud/modules/security/pages/vpc-peering/readme.adoc b/modules/cloud/modules/security/pages/vpc-peering/readme.adoc index 874558ae..ae08455e 100644 --- a/modules/cloud/modules/security/pages/vpc-peering/readme.adoc +++ b/modules/cloud/modules/security/pages/vpc-peering/readme.adoc @@ -1,7 +1,7 @@ = VPC Peering :description: Instructions for VPC peering. -TigerGraph Cloud supports xref:reference:glossary.adoc#_vpc_peering[VPC Peering] connections for Virtual Private Clouds (VPCs) and Virtual Networks (VNs) on AWS, GCP and Azure. +TigerGraph Cloud Classic supports xref:reference:glossary.adoc#_vpc_peering[VPC Peering] connections for Virtual Private Clouds (VPCs) and Virtual Networks (VNs) on AWS, GCP and Azure. * xref:vpc-peering/aws.adoc[] * xref:vpc-peering/gcp.adoc[] diff --git a/modules/cloud/modules/solutions/images/enterprise-tier-clusters.png b/modules/cloud/modules/solutions/images/enterprise-tier-clusters.png index f3449241..cc16a665 100644 Binary files a/modules/cloud/modules/solutions/images/enterprise-tier-clusters.png and b/modules/cloud/modules/solutions/images/enterprise-tier-clusters.png differ diff --git a/modules/cloud/modules/solutions/pages/README.adoc b/modules/cloud/modules/solutions/pages/README.adoc index f54213ba..ba3b3b16 100644 --- a/modules/cloud/modules/solutions/pages/README.adoc +++ b/modules/cloud/modules/solutions/pages/README.adoc @@ -9,6 +9,6 @@ Clusters are fully-managed TigerGraph deployments. Here are some resources you c * xref:stop-restart-and-terminate.adoc[Stop, Restart and Terminate a Cluster] ** A step-by-step guide on how to stop, restart, and terminate a cluster * xref:monitor-cluster-activity.adoc[] -** Information on the activity monitoring available on TigerGraph Cloud +** Information on the activity monitoring available on TigerGraph Cloud Classic * xref:billing:index.adoc[] ** Add a payment method and keep track of invoices \ No newline at end of file diff --git a/modules/cloud/modules/solutions/pages/access-solution/graphstudio.adoc b/modules/cloud/modules/solutions/pages/access-solution/graphstudio.adoc index 75de14f4..54904627 100644 --- a/modules/cloud/modules/solutions/pages/access-solution/graphstudio.adoc +++ b/modules/cloud/modules/solutions/pages/access-solution/graphstudio.adoc @@ -4,11 +4,11 @@ The TigerGraph GraphStudio™ UI (User Interface) provides an intuitive, browser-based interface that helps users get started quickly with graph-based application development tasks: designing a graph schema, creating a schema mapping, loading data, exploring the graph, and writing GSQL queries. -GraphStudio is supported in the same way on TigerGraph Cloud as on the on-prem version of TigerGraph. +GraphStudio is supported in the same way on TigerGraph Cloud Classic as on the on-prem version of TigerGraph. == Open GraphStudio -After link:https://tgcloud.io/[logging into TigerGraph Cloud], go to the home page or the Clusters page in the left-hand menu. +After link:https://classic.tgcloud.io/[logging into TigerGraph Cloud Classic], go to the home page or the Clusters page in the left-hand menu. Find your cluster in the list and click the Tools button in the same row, then choose btn:[GraphStudio] from the dropdown list. diff --git a/modules/cloud/modules/solutions/pages/access-solution/gsql-web-shell.adoc b/modules/cloud/modules/solutions/pages/access-solution/gsql-web-shell.adoc index e29b4661..858913ff 100644 --- a/modules/cloud/modules/solutions/pages/access-solution/gsql-web-shell.adoc +++ b/modules/cloud/modules/solutions/pages/access-solution/gsql-web-shell.adoc @@ -6,7 +6,7 @@ The GSQL Shell is a newly redesigned browser-based interface for running GSQL commands on a cluster. It includes useful developer tools such as keyboard shortcuts and customized autocomplete for commands. -Most TigerGraph Cloud solutions, free and paid, have access to the GSQL Shell in the TigerGraph suite. +Most TigerGraph Cloud Classic solutions, free and paid, have access to the GSQL Shell in the TigerGraph suite. Please see the main xref:tigergraph-server:gsql-shell:web.adoc[GSQL Shell documentation page] for complete information. diff --git a/modules/cloud/modules/solutions/pages/access-solution/jdbc.adoc b/modules/cloud/modules/solutions/pages/access-solution/jdbc.adoc index 9fdeed7c..a4939b64 100644 --- a/modules/cloud/modules/solutions/pages/access-solution/jdbc.adoc +++ b/modules/cloud/modules/solutions/pages/access-solution/jdbc.adoc @@ -43,14 +43,14 @@ $ spark-submit --class org.apache.spark.examples.SparkPi spark/examples/jars/spa == Set up SSL connection -TigerGraph Cloud uses SSL connections, so we need to create the certificate for Spark to use. +TigerGraph Cloud Classic uses SSL connections, so we need to create the certificate for Spark to use. -For this step and other steps, you need your TigerGraph Cloud cluster URL, which can be found on the Clusters page. +For this step and other steps, you need your TigerGraph Cloud Classic cluster URL, which can be found on the Clusters page. A typical cluster URL looks like `7c141e8c7669404f923623083ba01da9.i.tgcloud.io`. [source, console] ---- -$ echo | openssl s_client -host -port 443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/tgcloud.crt +$ echo | openssl s_client -host -port 443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/tgcloud.crt ---- This SSL certificate, a `.crt` file, cannot be used directly with the JDBC driver. @@ -59,7 +59,7 @@ Create a password and use it where the sample command below has the placeholder [source, console] ---- -$ keytool -import -alias -file ~/tgcloud.crt -keystore ~/trust.jks -storepass +$ keytool -import -alias -file ~/tgcloud.crt -keystore ~/trust.jks -storepass ---- == Create the secret key on your TigerGraph instance @@ -83,7 +83,7 @@ For more details on how to use the TigerGraph JDBC Connector, see the documentat The last section of the file, the Loading to TigerGraph section, requires several parameters. Some are filled in already in the example, but others require your input. -* `url`: Your TigerGraph Cloud URL +* `url`: Your TigerGraph Cloud Classic URL * `password`: Your secret key created with Admin Portal * `graph`: The graph for which you created the secret key * `truststore`: The JKS file you created previously diff --git a/modules/cloud/modules/solutions/pages/access-solution/rest-requests.adoc b/modules/cloud/modules/solutions/pages/access-solution/rest-requests.adoc index 38818d06..62113d16 100644 --- a/modules/cloud/modules/solutions/pages/access-solution/rest-requests.adoc +++ b/modules/cloud/modules/solutions/pages/access-solution/rest-requests.adoc @@ -5,7 +5,7 @@ Besides GraphStudio, another way to interact with your TigerGraph database is through the REST API, also known as RESTPP. -On TigerGraph Cloud, RESTPP authentication is enabled by default, and only the requests made with a valid authorization token in the request header are accepted. +On TigerGraph Cloud Classic, RESTPP authentication is enabled by default, and only the requests made with a valid authorization token in the request header are accepted. == Generate an authorization token @@ -60,7 +60,7 @@ $ curl -X POST https://example.i.tgcloud.io:443/restpp/requesttoken -d '{"secret ---- [NOTE] -For TigerGraph Cloud clusters created before June 20, 2022, replace "443/restpp" with "9000". See the xref:release-notes:index.adoc[] for details. +For TigerGraph Cloud Classic clusters created before June 20, 2022, replace "443/restpp" with "9000". See the xref:release-notes:index.adoc[] for details. -- Response:: @@ -104,7 +104,7 @@ $ curl -H "Authorization: Bearer fc6p0i2ijjt031n0sja6m9ci70p232h7" \ ---- [NOTE] -For TigerGraph Cloud clusters created before June 20, 2022, replace "443/restpp" with "9000". See the xref:release-notes:index.adoc[] for details. +For TigerGraph Cloud Classic clusters created before June 20, 2022, replace "443/restpp" with "9000". See the xref:release-notes:index.adoc[] for details. -- Response:: + diff --git a/modules/cloud/modules/solutions/pages/backup-and-restore.adoc b/modules/cloud/modules/solutions/pages/backup-and-restore.adoc index 1fd7306b..5fc09f3f 100644 --- a/modules/cloud/modules/solutions/pages/backup-and-restore.adoc +++ b/modules/cloud/modules/solutions/pages/backup-and-restore.adoc @@ -1,5 +1,5 @@ = Backup and Restore -:description: The procedure to perform backup and restore on TigerGraph Cloud. +:description: The procedure to perform backup and restore on TigerGraph Cloud Classic. //:page-aliases: backup-and-restore/index.adoc :experimental: diff --git a/modules/cloud/modules/solutions/pages/cluster-access.adoc b/modules/cloud/modules/solutions/pages/cluster-access.adoc index 962b6606..c9818457 100644 --- a/modules/cloud/modules/solutions/pages/cluster-access.adoc +++ b/modules/cloud/modules/solutions/pages/cluster-access.adoc @@ -1,5 +1,5 @@ = Access a Cluster -:description: Methods to access a TigerGraph Cloud cluster. +:description: Methods to access a TigerGraph Cloud Classic cluster. :page-aliases: access-solution/index.adoc Once a cluster has been provisioned, you can access it and interact with the database in any of the following ways: diff --git a/modules/cloud/modules/solutions/pages/create-a-solution.adoc b/modules/cloud/modules/solutions/pages/create-a-solution.adoc index d1553421..28a8a5b9 100644 --- a/modules/cloud/modules/solutions/pages/create-a-solution.adoc +++ b/modules/cloud/modules/solutions/pages/create-a-solution.adoc @@ -2,7 +2,7 @@ :page-aliases: create.adoc :experimental: -TigerGraph Cloud clusters offer a full-scale analytics platform to store and query your graph data. +TigerGraph Cloud Classic clusters offer a full-scale analytics platform to store and query your graph data. This page guides you through the process of creating a *free-tier* cluster (subject to xref:reference:service-limits.adoc[limits]). @@ -46,7 +46,7 @@ The default options are chosen for you automatically in the Free tier. [NOTE] The xref:tigergraph-server:gsql-shell:web.adoc[GSQL Web Shell] is currently not supported on Azure-hosted clusters due to a limitation with Azure Application Gateway. -Not all TigerGraph versions that are offered on-premises are offered on TigerGraph Cloud. +Not all TigerGraph versions that are offered on-premises are offered on TigerGraph Cloud Classic. In the dropdown list, choose the version of TigerGraph you want to run. image:cluster-name-and-version.png[] @@ -61,19 +61,9 @@ If you don't add a custom subdomain, a random alphanumeric subdomain will be aut image::enterprise-tier-clusters.png[] -TigerGraph Cloud offers enterprise-level hardware and support solutions for graph databases. +TigerGraph Cloud Classic offers enterprise-level hardware and support solutions for graph databases. Click btn:[Contact us] or send an email to sales@tigergraph.com for more information. -=== ML Workbench - -IMPORTANT: ML Workbench is disabled by default for Free, Professional, and Enterprise instances. To get started with the ML Bundle, please contact support@tigergraph.com. - -TigerGraph Cloud supports integration with xref:ml-workbench:intro:index.adoc[Machine Learning Workbench] and also provides a custom-built use case starter kit. -Machine Learning Workbench is not available with other use case starter kits or on TigerGraph Cloud solutions older than version 3.8.0. - -[NOTE] -Machine Learning Workbench is only available on single-machine clusters. - == Access your cluster After you have created your cluster, it may take a few minutes for it to be ready. diff --git a/modules/cloud/modules/solutions/pages/monitor-cluster-activity.adoc b/modules/cloud/modules/solutions/pages/monitor-cluster-activity.adoc index e0c0eee2..f1e97cf2 100644 --- a/modules/cloud/modules/solutions/pages/monitor-cluster-activity.adoc +++ b/modules/cloud/modules/solutions/pages/monitor-cluster-activity.adoc @@ -2,11 +2,11 @@ :page-aliases: view-activity-log.adoc, monitor-solution/index.adoc :experimental: -TigerGraph Cloud allows users to monitor activity at the organization and cluster level. +TigerGraph Cloud Classic allows users to monitor activity at the organization and cluster level. == Organization Activity Log -Click btn:[Activities] on the left-side menu in TigerGraph Cloud to see a log of all actions performed on all clusters in the organization. +Click btn:[Activities] on the left-side menu in TigerGraph Cloud Classic to see a log of all actions performed on all clusters in the organization. image::org-activities-page.png["Activities page shown filtered by search term 'controller', showing all actions performed by the controller"] diff --git a/modules/cloud/modules/solutions/pages/resize-cluster.adoc b/modules/cloud/modules/solutions/pages/resize-cluster.adoc index 695d5034..a2b0b1b8 100644 --- a/modules/cloud/modules/solutions/pages/resize-cluster.adoc +++ b/modules/cloud/modules/solutions/pages/resize-cluster.adoc @@ -2,7 +2,7 @@ :experimental: :page-aliases: resize-solution/index.adoc solutions/sizing-and-scaling.adoc -As your workload changes, you can resize your TigerGraph Cloud cluster to maximize the efficiency of your resources. +As your workload changes, you can resize your TigerGraph Cloud Classic cluster to maximize the efficiency of your resources. You can resize the instance type (the CPU and RAM allocated to your instance) or upgrade the storage volume. == Choose the right instance type @@ -28,7 +28,7 @@ Disk storage refers to the root disk attached to your instance that holds the fo When you choose the size of the disk, consider the size of the data for all the above installations and files. -To ensure adequate disk storage, TigerGraph Cloud mandates that any disk size of a cluster must be *at least 3 times* the size of its instance's RAM. For example, if your cluster instance has 64 GB of RAM, then the disk size must be higher than 192 GB. +To ensure adequate disk storage, TigerGraph Cloud Classic mandates that any disk size of a cluster must be *at least 3 times* the size of its instance's RAM. For example, if your cluster instance has 64 GB of RAM, then the disk size must be higher than 192 GB. [NOTE] Resizing instance types will result in a short period of downtime. @@ -50,7 +50,7 @@ Click btn:[Resize Instance] and choose the new instance type that you'd like to === Resize disk size -If you decide that your cluster needs more disk storage space, TigerGraph Cloud allows you to upgrade your disk volume. +If you decide that your cluster needs more disk storage space, TigerGraph Cloud Classic allows you to upgrade your disk volume. image::screen-shot-2021-07-27-at-10.58.44-am.png[] diff --git a/modules/cloud/modules/start/pages/get_started.adoc b/modules/cloud/modules/start/pages/get_started.adoc index 4179fda2..bac94e98 100644 --- a/modules/cloud/modules/start/pages/get_started.adoc +++ b/modules/cloud/modules/start/pages/get_started.adoc @@ -1,24 +1,18 @@ -= Get started with TigerGraph Cloud += Get started with TigerGraph Cloud Classic :experimental: :page-aliases: get-started.adoc -[IMPORTANT] -==== -TigerGraph Cloud 4 beta is for personal or R&D use and not for production use. -Please see xref:cloud4:resources:terms_conditions.adoc[]. -==== - == Sign up -Click btn:[Sign Up] on the https://tgcloud.io/[TigerGraph Cloud landing page]. +Click btn:[Sign Up] on the https://classic.tgcloud.io/[TigerGraph Cloud Classic landing page]. -When you register for a new TigerGraph Cloud account, you create an Organization Account to which you can later invite other users. +When you register for a new TigerGraph Cloud Classic account, you create an Organization Account to which you can later invite other users. -image::create-organization.png[TigerGraph Cloud Create Organization page] +image::create-organization.png[TigerGraph Cloud Classic Create Organization page] Create a new account with a company name, personal name, and email address. If you are signing up for the first time, you will be prompted to enter a password. -Please note the xref:security:password-policy.adoc[] that applies to TigerGraph Cloud. +Please note the xref:security:password-policy.adoc[] that applies to TigerGraph Cloud Classic. After completing the signup page, you will get a link to verify your email address. Click the link in your email to verify, then log in using your username and password. @@ -29,7 +23,7 @@ The system recognizes a verified email address on the registration page and allo [NOTE] ==== TigerGraph recommends enterprise customers use a shared mailbox to set up an organization account. -TigerGraph Cloud sends important email notifications to this address, including for: +TigerGraph Cloud Classic sends important email notifications to this address, including for: * Billing and credits * Cluster behavior @@ -38,7 +32,7 @@ TigerGraph Cloud sends important email notifications to this address, including == Log in -Click btn:[Log In] on the https://tgcloud.io/[TigerGraph Cloud landing page]. +Click btn:[Log In] on the https://classic.tgcloud.io/[TigerGraph Cloud Classic landing page]. When you log in, you must first provide an organization name before entering your username and password. If you were invited by a member of your organization and you do not know the name used for the organization account, contact your organization's administrator. @@ -51,24 +45,24 @@ Once logged in, you can create clusters and add more users to your organization. == Comparison with TigerGraph Enterprise Server -Most of the documentation for TigerGraph Enterprise Server also applies to TigerGraph Cloud. -However, since TigerGraph Cloud does not have a command-line interface on the OS level, command-line features are not supported in the same way. +Most of the documentation for TigerGraph Enterprise Server also applies to TigerGraph Cloud Classic. +However, since TigerGraph Cloud Classic does not have a command-line interface on the OS level, command-line features are not supported in the same way. In many cases, there is a GUI-based method for the same feature. For advanced OS-level commands, submit a support ticket for more information. |=== -| Topic | TigerGraph Enterprise Server | TigerGraph Cloud +| Topic | TigerGraph Enterprise Server | TigerGraph Cloud Classic | GSQL Graph Algorithm Library | Yes | Yes -| Release Notes | Yes | TigerGraph Cloud keeps its database instances up to date with the latest TigerGraph Server releases. +| Release Notes | Yes | TigerGraph Cloud Classic keeps its database instances up to date with the latest TigerGraph Server releases. | GSQL 101 | Yes | Basic concepts still apply. Most CREATE, INSTALL, LOAD, and RUN commands are replaced with the GraphStudio GUI-based approach. | GSQL 102 Pattern Matching | Yes | The same patterns can be used in queries. | MultiGraph Overview | Yes | Yes | Hardware and Software Requirements | Yes | N/A -| Installation and Configuration | Yes | N/A. There are a few simple steps to install a Starter Kit. See the TigerGraph Cloud FAQs. +| Installation and Configuration | Yes | N/A. There are a few simple steps to install a Starter Kit. See the TigerGraph Cloud Classic FAQs. | User Access Management | Yes | Yes -| Data Encryption | Yes | N/A. TigerGraph Cloud is setup already for encrypted data at rest and at motion. +| Data Encryption | Yes | N/A. TigerGraph Cloud Classic is setup already for encrypted data at rest and at motion. | System Management | Yes | The Cloud Admin Portal is enhanced over the TigerGraph Server Admin Portal. Backup and Restore is done through the Cloud Admin Portal. | GraphStudio UI Guide | Yes | Yes | GSQL Demo Examples | Yes | Yes diff --git a/modules/cloud/modules/start/pages/overview.adoc b/modules/cloud/modules/start/pages/overview.adoc index b363e424..a8b3fd2e 100644 --- a/modules/cloud/modules/start/pages/overview.adoc +++ b/modules/cloud/modules/start/pages/overview.adoc @@ -2,31 +2,24 @@ :experimental: :page-aliases: cloud-overview.adoc - -TigerGraph Cloud is a fully-managed cloud database built on the Enterprise Server engine and completely integrated with the full TigerGraph Suite. - -Everything including xref:3.9@gui:admin-portal:overview.adoc[Admin Portal], xref:3.9@gui:graphstudio:overview.adoc[GraphStudio], xref:3.9@insights:intro:index.adoc[Insights], xref:1.4@ml-workbench:intro:index.adoc[ML Workbench], as well as, -handling all the complexity of deploying and managing your deployments on the cloud service provider of your choice ( xref:cloud:reference:aws.adoc[], xref:cloud:reference:azure.adoc[], and xref:cloud:reference:gcp.adoc[] ). - [NOTE] ==== -TigerGraph Cloud 4 Beta was released on Apr. 29, 2024. +TigerGraph Cloud Classic is no longer available for new users. -Check out the new Cloud 4 at https://portal.tgcloud.io or have a look at the xref:cloud4:overview:index.adoc[Documentation] for more details. +Check out the new Savanna at https://tgcloud.io or have a look at the xref:savanna:overview:index.adoc[Documentation] for more details. ==== -[IMPORTANT] -==== -TigerGraph Cloud 4 beta is for personal or R&D use and not for production use. -Please see xref:cloud4:resources:terms_conditions.adoc[]. -==== + +TigerGraph Cloud Classic is a fully-managed cloud database built on the Enterprise Server engine and completely integrated with the full TigerGraph Suite. + +The service includes xref:3.9@gui:admin-portal:overview.adoc[Admin Portal], xref:3.9@gui:graphstudio:overview.adoc[GraphStudio], and xref:3.9@insights:intro:index.adoc[Insights] for handling all the complexity of deploying and managing your deployments on the cloud service provider of your choice ( xref:cloud:reference:aws.adoc[], xref:cloud:reference:azure.adoc[], and xref:cloud:reference:gcp.adoc[] ). // [NOTE] // ==== -// On December 31, 2025, we'll retire the TigerGraph Cloud Classic platform. Before that date, you’ll need to migrate your data from TigerGraph Cloud Classic to TigerGraph Cloud 4. For support, please contact us at support@tigergraph.com. +// On December 31, 2025, we'll retire the TigerGraph Cloud Classic platform. Before that date, you’ll need to migrate your data from TigerGraph Cloud Classic to TigerGraph Savanna. For support, please contact us at support@tigergraph.com. // ==== -== Get to Know Your TigerGraph Cloud +== Get to Know Your TigerGraph Cloud Classic [.home-card,cols="2",grid=none,frame=none, separator=¦] |=== @@ -46,29 +39,29 @@ xref:cloud:solutions:README.adoc[Cluster Management] are resources to create, co image:security-homecard.png[alt=security,width=74,height=74] *Security* -Learn how TigerGraph Cloud can help ensure the xref:cloud:security:index.adoc[Security] of your data and network. +Learn how TigerGraph Cloud Classic can help ensure the xref:cloud:security:index.adoc[Security] of your data and network. ¦ image:billing-homecard.png[alt=billing,width=74,height=74] *Billing* -Understand and track TigerGraph Cloud xref:billing:index.adoc[Billing] information within the portal. +Understand and track TigerGraph Cloud Classic xref:billing:index.adoc[Billing] information within the portal. ¦ image:documentation-homecard.png[alt=support,width=74,height=74] *Release Notes and Support* -See the most up-to-date news on TigerGraph Cloud as well check out answers to common questions. +See the most up-to-date news on TigerGraph Cloud Classic as well check out answers to common questions. xref:cloud:release-notes:index.adoc[Release Notes |] -xref:support:faqs.adoc[TigerGraph Cloud FAQs |] +xref:support:faqs.adoc[TigerGraph Cloud Classic FAQs |] xref:cloud:support:support.adoc[Support] ¦ image:referece-homecard.png[alt=ref,width=74,height=74] *Reference* -See other documents to help support your TigerGraph Cloud journey. +See other documents to help support your TigerGraph Cloud Classic journey. xref:cloud:reference:index.adoc[Reference |] xref:cloud:reference:glossary.adoc[Glossary |] diff --git a/modules/cloud/modules/support/pages/faqs.adoc b/modules/cloud/modules/support/pages/faqs.adoc index f9a05662..02c6cf76 100644 --- a/modules/cloud/modules/support/pages/faqs.adoc +++ b/modules/cloud/modules/support/pages/faqs.adoc @@ -1,7 +1,7 @@ -= TigerGraph Cloud FAQs += TigerGraph Cloud Classic FAQs :pp: {plus}{plus} -*Feedback for TigerGraph Cloud is welcome at* tgcloud-feedback@tigergraph.com +*Feedback for TigerGraph Cloud Classic is welcome at* tgcloud-feedback@tigergraph.com == Top FAQs @@ -16,9 +16,9 @@ If you clicked "forgot password" during sign in to Cloud and never received an e If you're still unable to log in or reset your password, contact TigerGraph Support at support@tigergraph.com for individualized help with your issue. -=== *Q: How does TigerGraph Cloud compare with other DBaaS offerings?* +=== *Q: How does TigerGraph Cloud Classic compare with other DBaaS offerings?* -A: TigerGraph Cloud gets you up and running with the fastest and best price-performance graph platform in just minutes. +A: TigerGraph Cloud Classic gets you up and running with the fastest and best price-performance graph platform in just minutes. TigerGraph's native parallel graph and deep link analytics give you both speed and scale, even on the most complex tasks. The GraphStudio visual design interface enables everyone on your team to be a guru in graph. And our starter kits for popular use cases mean you can have an example graph application working in minutes. @@ -30,7 +30,7 @@ Since it requires far fewer machines to achieve high performance, TigerGraph's p A: New December 2020 pricing applies to new paid tier clusters provisioned after December 16th, 2020. You can keep the old pricing if you keep your paid tier instances provisioned before December 16th, 2020 and keep its state (running or stopped). If you want to take advantage of the new pricing to lower your cost, you can migrate your workload to a newly provisioned instance, or simply start and stop the old instance. -Note that only TigerGraph Cloud accounts with valid credit cards are eligible for the paid tier migration. +Note that only TigerGraph Cloud Classic accounts with valid credit cards are eligible for the paid tier migration. Please submit a support ticket for migration assistance. [#q-are-there-free-tier-instances-or-free-credits-for-the-system] @@ -45,7 +45,7 @@ Free Tier instances do not include backup and do not include support. If you wan If no user activity is detected for more than one hour, TigerGraph may automatically stop a Free Tier instance. Users can manually restart the Free Tier instances from their cloud portal. TigerGraph may terminate Free Tier instances after 7 consecutive days of inactivity. -For additional information, see link:https://www.tigergraph.com/tigergraph-cloud-subscription-terms/[TigerGraph Cloud Terms]. +For additional information, see link:https://www.tigergraph.com/tigergraph-cloud-subscription-terms/[TigerGraph Cloud Classic Terms]. TIP: If you need to save your work from a Free Tier instance, export the cluster (which saves your graph and queries) and write queries which print all your data to files. @@ -65,20 +65,20 @@ To reserve an instance for guaranteed capacity, please submit a support ticket a === *Q: In what cloud platforms and regions does TigerGraph operate?* -A: TigerGraph Cloud offers three cloud platform options: xref:reference:aws.adoc[Amazon Web Services (AWS)], xref:reference:azure.adoc[Azure] and xref:reference:gcp.adoc[Google Cloud Platform (GCP)]. +A: TigerGraph Cloud Classic offers three cloud platform options: xref:reference:aws.adoc[Amazon Web Services (AWS)], xref:reference:azure.adoc[Azure] and xref:reference:gcp.adoc[Google Cloud Platform (GCP)]. Visit each platform's reference page to learn more about the available regions. -=== *Q: Can I choose different versions of TigerGraph on TigerGraph Cloud?* +=== *Q: Can I choose different versions of TigerGraph on TigerGraph Cloud Classic?* A: Yes. When you create a cluster, you can choose the database version you would like to use. For security and stability reasons, only some legacy versions are available. There is no difference in cost for using different versions of TigerGraph. -=== *Q: Does TigerGraph Cloud support distributed databases?* +=== *Q: Does TigerGraph Cloud Classic support distributed databases?* A: Yes. -In the latest version of TigerGraph Cloud, you can provision a highly available TigerGraph cluster by entering 2 or 3 for the replication factor during the provisioning process. +In the latest version of TigerGraph Cloud Classic, you can provision a highly available TigerGraph cluster by entering 2 or 3 for the replication factor during the provisioning process. Replication factors of 2 and 3 are supported for TigerGraph V3.0+. For TigerGraph V2.6, only a replication factor of 2 is supported. The configuration is active-active, meaning that all copies of the data are available to answer queries. @@ -90,15 +90,15 @@ In comparison, the smallest supported cluster configuration for a replicated sys === *Q: What type of server should I use for my data size and workload?* -A: Please see the section on pricing on our website at our link:https://www.tigergraph.com/cloud/[TigerGraph Cloud main page]. For further assistance, contact TigerGraph at link:mailto:sales@tigergraph.com[sales@tigergraph.com] +A: Please see the section on pricing on our website at our link:https://www.tigergraph.com/cloud/[TigerGraph Cloud Classic main page]. For further assistance, contact TigerGraph at link:mailto:sales@tigergraph.com[sales@tigergraph.com] === *Q: What kind of services do I get?* -A: TigerGraph Cloud includes automatic scheduled backup, built-in encryption and other security features, patching, replication and distributed database option. In addition, you can now provision a distributed database as well as a replica cluster for high availability. +A: TigerGraph Cloud Classic includes automatic scheduled backup, built-in encryption and other security features, patching, replication and distributed database option. In addition, you can now provision a distributed database as well as a replica cluster for high availability. As a cloud service, many of the administrative and operational tasks - for monitoring, restoring, upgrading, for example - are just a click away. -In addition to operations and management for your TigerGraph databases, TigerGraph Cloud also offers Starter Kits to provide instant experience to various graph analytics use cases. -The list of Starter Kits can be found here: link:https://www.tigergraph.com/starterkits/[TigerGraph Cloud Starter Kits] +In addition to operations and management for your TigerGraph databases, TigerGraph Cloud Classic also offers Starter Kits to provide instant experience to various graph analytics use cases. +The list of Starter Kits can be found here: link:https://www.tigergraph.com/starterkits/[TigerGraph Cloud Classic Starter Kits] [#q-is-there-a-quota-for-the-number-of-clusters-i-can-provision-in-a-single-account] === *Q: Is there a quota for the number of clusters I can provision in a single account?* @@ -145,30 +145,30 @@ A: Data must be loaded and queries must be installed first. Please perform the f . On the Load Data tab, click the Load button to load the sample dataset. . On the Write Query tab, click the Install button to install the sample queries. -Now you can run queries on the starter kit's sample data. Please visit our link:http://tigergraph.com/starterkits[TigerGraph Cloud Starter Kits] page to watch the overview video for each starter kit. +Now you can run queries on the starter kit's sample data. Please visit our link:http://tigergraph.com/starterkits[TigerGraph Cloud Classic Starter Kits] page to watch the overview video for each starter kit. -=== *Q: How can I monitor my TigerGraph Cloud service?* +=== *Q: How can I monitor my TigerGraph Cloud Classic service?* -A: TigerGraph Cloud is instance-based and offers an administrator portal to monitor the performance and health of each machine instance. +A: TigerGraph Cloud Classic is instance-based and offers an administrator portal to monitor the performance and health of each machine instance. See TigerGraph's xref:gui:admin-portal:overview.adoc[Admin Portal Documentation] for more detailed information. -=== *Q: Is TigerGraph Cloud cloud-agnostic?* +=== *Q: Is TigerGraph Cloud Classic cloud-agnostic?* -A: TigerGraph Cloud will provide teams with the flexibility to use the cloud vendor of their choice, so there will be no vendor lock-in. For the current version, TigerGraph Cloud offers instances on AWS, Azure and GCP platforms. If you require immediate assistance to manage TigerGraph on another cloud provider, please contact link:mailto:sales@tigergraph.com[sales@tigergraph.com]. +A: TigerGraph Cloud Classic will provide teams with the flexibility to use the cloud vendor of their choice, so there will be no vendor lock-in. For the current version, TigerGraph Cloud Classic offers instances on AWS, Azure and GCP platforms. If you require immediate assistance to manage TigerGraph on another cloud provider, please contact link:mailto:sales@tigergraph.com[sales@tigergraph.com]. -=== *Q: Is the support for TigerGraph Cloud the same as the support for TigerGraph Enterprise?* +=== *Q: Is the support for TigerGraph Cloud Classic the same as the support for TigerGraph Enterprise?* -A: Yes, TigerGraph supports TigerGraph cloud users using paid tiers. See the Support Policy terms at link:https://www.tigergraph.com/support-policy/[www.tigergraph.com/support-policy]. +A: Yes, TigerGraph supports TigerGraph Cloud Classic users using paid tiers. See the Support Policy terms at link:https://www.tigergraph.com/support-policy/[www.tigergraph.com/support-policy]. Support is not included for free tier instances; therefore, support tickets for free tier clusters are answered when support staff bandwidth allows. See Section 1.4 in link:https://www.tigergraph.com/tigergraph-cloud-subscription-terms/[www.tigergraph.com/tigergraph-cloud-subscription-terms]. For additional developer resources for free tier users, join the TigerGraph developer community at link:https://community.tigergraph.com[community.tigergraph.com]. -=== *Q: What is the user interface for the TigerGraph Cloud instance?* +=== *Q: What is the user interface for the TigerGraph Cloud Classic instance?* A: The TigerGraph xref:gui:graphstudio:overview.adoc[GraphStudio™ UI (User Interface)] provides an intuitive, browser-based interface that helps users get started quickly with graph-based application development tasks: designing a graph schema, creating a schema mapping, loading data, exploring the graph, and writing GSQL queries. @@ -184,9 +184,9 @@ You can start learning GSQL from our xref:gsql-ref:tutorials:gsql-101/index.adoc Start learning GSQL and become a TigerGraph Certified Associate today with our link:https://www.tigergraph.com/certification/[Certification Program]. -=== *Q: Can I have multiple graphs in one TigerGraph Cloud instance?* +=== *Q: Can I have multiple graphs in one TigerGraph Cloud Classic instance?* -A: Yes. If you use V3.0.5+ in TigerGraph Cloud, MultiGraph is supported through GraphStudio. Please refer to our xref:gui:graphstudio:design-schema.adoc[] page for the new MultiGraph Support through GraphStudio. +A: Yes. If you use V3.0.5+ in TigerGraph Cloud Classic, MultiGraph is supported through GraphStudio. Please refer to our xref:gui:graphstudio:design-schema.adoc[] page for the new MultiGraph Support through GraphStudio. === *Q: What methods do you support for importing data?* @@ -200,34 +200,34 @@ For complex loading jobs through GSQL Web Shell for paid tier clusters, please s A: Please check your spam folder. If you can't find it in the spam folder, and still cannot receive the verification email in your mailbox after resending the verification email, please https://tigergraph.zendesk.com/hc/en-us/[open a support ticket] so that we can assist you with manual email verification process. -*Q: How do I develop a customized application on top of TigerGraph Cloud?* +*Q: How do I develop a customized application on top of TigerGraph Cloud Classic?* A: Please see https://info.tigergraph.com/graph-gurus-24[Graph Gurus episode 24], where we presented "How to Build Innovative Applications with a Native Graph Database". === *Q: Can I upgrade from V2.6.x, V3.0.5, V3.0.6 to V3.1.1?* -A: For free tier clusters, the upgrade is not supported unless you are migrating to paid tier clusters. If you want to change the database version in your free tier, you can terminate the existing free tier cluster, and create a new free tier with the new version. In each TigerGraph Cloud account, you can have one free tier. If you want to migrate to paid tier clusters, please send a support ticket through your cloud portal. +A: For free tier clusters, the upgrade is not supported unless you are migrating to paid tier clusters. If you want to change the database version in your free tier, you can terminate the existing free tier cluster, and create a new free tier with the new version. In each TigerGraph Cloud Classic account, you can have one free tier. If you want to migrate to paid tier clusters, please send a support ticket through your cloud portal. For paid tier clusters, please submit a support ticket for upgrade assistance. Downtime is expected during this upgrade. It is recommended to create a new blank V3.1.1 cluster, import your data and copy the GSQL queries to test and experiment before upgrading your production instance from V2.6.x, V3.0.5, V3.0.6 to V3.1.1. == Pricing -See https://www.tigergraph.com/cloud[the TigerGraph Cloud main page] for pricing information. +See https://www.tigergraph.com/cloud[the TigerGraph Cloud Classic main page] for pricing information. === *Q: How do I migrate to the new December 2020 pricing to lower my bill?* -A: New December 2020 pricing applies to new paid tier clusters provisioned after December 16th 2020. You can keep the old pricing if you keep your paid tier instances provisioned before December 16th, 2020 and keep its state (running or stopped). If you want to take advantage of the new pricing to lower your cost, you can migrate your workload to a newly provisioned instance, or simply start and stop the old instance. Note that TigerGraph Cloud accounts with valid credit cards are eligible for the paid tier migration. Please submit a support ticket for migration assistance. +A: New December 2020 pricing applies to new paid tier clusters provisioned after December 16th 2020. You can keep the old pricing if you keep your paid tier instances provisioned before December 16th, 2020 and keep its state (running or stopped). If you want to take advantage of the new pricing to lower your cost, you can migrate your workload to a newly provisioned instance, or simply start and stop the old instance. Note that TigerGraph Cloud Classic accounts with valid credit cards are eligible for the paid tier migration. Please submit a support ticket for migration assistance. === *Q: Do you offer a discount for annual contracts/commitments?* A: Yes, there is a discount for contracting with TigerGraph for a one-year term. Please contact link:mailto:sales@tigergraph.com[sales@tigergraph.com] to request your discount. -=== *Q: Can I purchase TigerGraph Cloud Credits?* +=== *Q: Can I purchase TigerGraph Cloud Classic Credits?* -A: Yes. You can purchase cloud credits applied to TigerGraph Cloud usage. Please refer to https://www.tigergraph.com/cloud-credits/ +A: Yes. You can purchase cloud credits applied to TigerGraph Cloud Classic usage. Please refer to https://www.tigergraph.com/cloud-credits/ === *Q: If I delete my instance before the end of the month, what will I have to pay?* @@ -255,9 +255,9 @@ A: If this happens you can contact link:mailto:sales@tigergraph.com[sales@tigerg A: You can find our terms and conditions here: http://www.tigergraph.com/terms[www.tigergraph.com/terms]. -=== *Q: How is TigerGraph Cloud priced for development, test, or QA environments?* +=== *Q: How is TigerGraph Cloud Classic priced for development, test, or QA environments?* -A: With TigerGraph Cloud, you only pay for what you use. For long term contracts, please contact link:mailto:sales@tigergraph.com[sales@tigergraph.com]. +A: With TigerGraph Cloud Classic, you only pay for what you use. For long term contracts, please contact link:mailto:sales@tigergraph.com[sales@tigergraph.com]. == Sizing and Scaling @@ -279,22 +279,22 @@ In the pricing table, we recommend that your total RAM be about 1.5 times the ma If you see you need more space or more compute power, then just scale up. -Please submit a support ticket from TigerGraph Cloud Portal or https://tigergraph.zendesk.com/hc/en-us/[from Zendesk] for more help. +Please submit a support ticket from TigerGraph Cloud Classic Portal or https://tigergraph.zendesk.com/hc/en-us/[from Zendesk] for more help. === *Q: How do I expand the disk size?* -Please submit a support ticket from TigerGraph Cloud Portal for more help. +Please submit a support ticket from TigerGraph Cloud Classic Portal for more help. === *Q: Can I migrate my database to a larger (or smaller) instance?* -A: Contact TigerGraph Cloud Support for migrating between different instance types. Instance migration is not yet supported through one-click operation. +A: Contact TigerGraph Cloud Classic Support for migrating between different instance types. Instance migration is not yet supported through one-click operation. === *Q: Can I deploy a distributed TigerGraph database across a cluster of instances?* -A: Yes, you can provision a distributed database in TigerGraph Cloud. Simply provide the partition number and replication number you would like to have. +A: Yes, you can provision a distributed database in TigerGraph Cloud Classic. Simply provide the partition number and replication number you would like to have. Please see the sections below on <<_provisioning_backup_and_restore>>. == Hardware @@ -307,7 +307,7 @@ A: A Root Disk (EBS based) is attached to TigerGraph Instances. === *Q: What does the provisioned disk include, and how should I approach disk sizing?* -A: If you choose AWS as the backend, TigerGraph Cloud provisions persistent EBS volume as the disk attached to the EC2 machines to hold installation files and data files. +A: If you choose AWS as the backend, TigerGraph Cloud Classic provisions persistent EBS volume as the disk attached to the EC2 machines to hold installation files and data files. The disk holds the following: * OS installation @@ -322,7 +322,7 @@ Hence, when you consider the size of the disk, please consider the size of the d === *Q: What browsers are supported?* -A: TigerGraph Cloud has been designed and tested for Chrome using React with the latest component libraries. Other browsers are not officially tested but are expected to work. +A: TigerGraph Cloud Classic has been designed and tested for Chrome using React with the latest component libraries. Other browsers are not officially tested but are expected to work. == Provisioning, Backup and Restore @@ -352,14 +352,14 @@ After a warmup period, the cluster will return to its previous state. When you terminate a cluster, you will deprovision the virtual machine and the attached disk space. The cluster is deleted according to the cloud platform's policies and cannot be recovered. -=== *Q: Do you offer backup in TigerGraph Cloud?* +=== *Q: Do you offer backup in TigerGraph Cloud Classic?* A: Yes. Please see our guide for using xref:solutions:backup-and-restore.adoc[] in the Admin Portal. === *Q: What backup options are available?* -A: TigerGraph Cloud offers full backups on a scheduled or on-demand basis. +A: TigerGraph Cloud Classic offers full backups on a scheduled or on-demand basis. By default, backup is turned on when instances are running and will be done daily. There are four backup schedules you can choose from: daily, weekly, monthly, and ad hoc. @@ -396,14 +396,14 @@ To restore a cluster within 15 days, please submit a support ticket through the A: After you perform a backup, you should wait at least 15 minutes. -=== *Q: How can I delete my TigerGraph Cloud account?* +=== *Q: How can I delete my TigerGraph Cloud Classic account?* A: Please submit a support ticket through the cloud portal. == High Availability and Replication -=== *Q: What kind of replicas does TigerGraph Cloud support?* +=== *Q: What kind of replicas does TigerGraph Cloud Classic support?* A: TigerGraph Distributed Cloud offers active-active replication for increased availability and automatic failover. @@ -441,19 +441,19 @@ A: It currently takes about 4 minutes to provision a single instance. If you con === *Q: Can I use TigerGraph in Amazon Virtual Private Cloud (Amazon VPC)?* -A: By default, you will be given your own VPC(s) for your TigerGraph Cloud account resources in AWS and GCP, and your own Azure Virtual Networks for your TigerGraph Cloud account resources in Azure. Your instances are separated from other accounts by different VPCs or Virtual Networks. Within your own account, you have different VPCs or Virtual Networks for different regions. +A: By default, you will be given your own VPC(s) for your TigerGraph Cloud Classic account resources in AWS and GCP, and your own Azure Virtual Networks for your TigerGraph Cloud Classic account resources in Azure. Your instances are separated from other accounts by different VPCs or Virtual Networks. Within your own account, you have different VPCs or Virtual Networks for different regions. -=== *Q: Does TigerGraph Cloud support encrypting my data in transit and at rest?* +=== *Q: Does TigerGraph Cloud Classic support encrypting my data in transit and at rest?* -A: Yes, TigerGraph Cloud encrypts all data in transit and at rest. +A: Yes, TigerGraph Cloud Classic encrypts all data in transit and at rest. === *Q: Am I sharing data storage with other customers? Is TigerGraph a multi-tenant cluster?* A: You are not sharing storage with other customers. Each TigerGraph cluster is provisioned as one or more virtual machine instances of the TigerGraph engine, used only for your account, and provisioned with its own disk space. No two accounts are sharing the same TigerGraph database. -=== *Q: How do I access my TigerGraph Cloud account (e.g., username and password)?* +=== *Q: How do I access my TigerGraph Cloud Classic account (e.g., username and password)?* A: When you register your account, you will select a username and password. You can then log in anytime at link:http://www.tgcloud.io/[www.tgcloud.io]. You will also be given a URL using a subdomain name that you select. @@ -463,10 +463,10 @@ A: You can access the database through TigerGraph's GraphStudio visual interface *Here is the step-by-step instructions:* -TigerGraph cloud enables xref:tigergraph-server:API:authentication.adoc[REST{pp} Authentication] to securely connect TigerGraph Cloud clusters with your application through an endpoint on port 443 at `443/restpp/`. +TigerGraph Cloud Classic enables xref:tigergraph-server:API:authentication.adoc[REST{pp} Authentication] to securely connect TigerGraph Cloud Classic clusters with your application through an endpoint on port 443 at `443/restpp/`. [NOTE] -TigerGraph Cloud clusters created before June 20, 2022 used port 9000 and 14240 for endpoints. See the xref:release-notes:index.adoc[] for details. +TigerGraph Cloud Classic clusters created before June 20, 2022 used port 9000 and 14240 for endpoints. See the xref:release-notes:index.adoc[] for details. *Step 1:* (First time only) Navigate to the TigerGraph cluster's Admin Portal, and generate a secret from User Management. @@ -512,7 +512,7 @@ curl -X GET -H "Authorization: Bearer xyz789" 'https://SOLUTIONID.i.tgcloud.io:4 A: Yes. Free tier instances expose RESTful endpoints on port 443 to allow access to TigerGraph database, similar to paid tier instances. Clusters created before June 20, 2022 use port 9000. -=== *Q: Does TigerGraph Cloud offer Role Based Access Control?* +=== *Q: Does TigerGraph Cloud Classic offer Role Based Access Control?* A: TigerGraph's role-based access control with MultiGraph and User Management is available if you use TigerGraph V3.0.5+. @@ -522,14 +522,14 @@ A: TigerGraph's role-based access control with MultiGraph and User Management is A: When you terminate an instance in TigerGraph Distributed Cloud, the virtual machine instance and its associated storage volume are deleted according to the policies of the underlying cloud infrastructure vendor. -=== *Q: How does TigerGraph Cloud secure my data?* +=== *Q: How does TigerGraph Cloud Classic secure my data?* -A: TigerGraph Cloud encrypts data at rest and in transit, and SSL is enabled for secure access. +A: TigerGraph Cloud Classic encrypts data at rest and in transit, and SSL is enabled for secure access. -=== *Q: Can I integrate TigerGraph Cloud into my single sign on system?* +=== *Q: Can I integrate TigerGraph Cloud Classic into my single sign on system?* -A: The ability to use cloud portal to integrate TigerGraph Cloud into an SSO system will be provided at a future date. +A: The ability to use cloud portal to integrate TigerGraph Cloud Classic into an SSO system will be provided at a future date. If you are using a paid tier instance, please submit a support ticket to request advanced service to integrate into an SSO system TigerGraph supports. Please see more detailed pages on the xref:tigergraph-server:user-access:sso.adoc[Single Sign On (Server)] and xref:gui:admin-portal:security/sso.adoc[Single Sign On (GUI)] features. @@ -540,14 +540,14 @@ Please see more detailed pages on the xref:tigergraph-server:user-access:sso.ado A: For free tier clusters, upgrading is not supported unless you are migrating to paid tier clusters. If you want to change the database version in your free tier, you can terminate the existing free tier cluster, and create a new free tier with the new version. -In each TigerGraph Cloud account, you can have one free tier cluster. +In each TigerGraph Cloud Classic account, you can have one free tier cluster. If you want to migrate to paid tier clusters, please send a support ticket through your cloud portal. For paid tier clusters, please submit a support ticket for upgrade assistance. Downtime is expected during this upgrade. It is recommended to create a new blank cluster, import your data and copy the GSQL queries to test and experiment before upgrading your production instance. -== TigerGraph Cloud Support +== TigerGraph Cloud Classic Support === *Q: How do I submit a support ticket?* @@ -560,7 +560,7 @@ You can track the ticket status in Zendesk. === *Q: How do I submit a support ticket if I cannot access the Cloud Portal?* -A: If in rare cases, you cannot submit TigerGraph Cloud support tickets through the cloud portal for your account, you can also https://tigergraph.zendesk.com/hc/en-us/[open a support ticket] from Zendesk. +A: If in rare cases, you cannot submit TigerGraph Cloud Classic support tickets through the cloud portal for your account, you can also https://tigergraph.zendesk.com/hc/en-us/[open a support ticket] from Zendesk. This action automatically generates a new Zendesk support ticket, and you can track the support ticket in the Freshdesk portal. == Performance @@ -586,6 +586,6 @@ In TigerGraph Distributed Cloud, you can also choose to provision a cluster with Contact link:mailto:sales@tigergraph.com[sales@tigergraph.com] to discuss query optimization services. -=== *Q: What third-party software is used in TigerGraph Cloud?* +=== *Q: What third-party software is used in TigerGraph Cloud Classic?* -A: A list of third-party software used in the TigerGraph engine and TigerGraph Cloud is available at xref:tigergraph-server:reference:patents-and-third-party-software.adoc[]. +A: A list of third-party software used in the TigerGraph engine and TigerGraph Cloud Classic is available at xref:tigergraph-server:reference:patents-and-third-party-software.adoc[]. diff --git a/modules/cloud/modules/support/pages/support.adoc b/modules/cloud/modules/support/pages/support.adoc index 17ffe0d5..fb2ec1d6 100644 --- a/modules/cloud/modules/support/pages/support.adoc +++ b/modules/cloud/modules/support/pages/support.adoc @@ -2,9 +2,9 @@ :sectnums: :experimental: -TigerGraph provides support for TigerGraph Cloud for customers with non-free-tier clusters. For more information on TigerGraph's support policy, visit our https://www.tigergraph.com/support-policy/[support policy page]. +TigerGraph provides support for TigerGraph Cloud Classic for customers with non-free-tier clusters. For more information on TigerGraph's support policy, visit our https://www.tigergraph.com/support-policy/[support policy page]. -You can submit a support ticket in the TigerGraph Cloud portal or by email. +You can submit a support ticket in the TigerGraph Cloud Classic portal or by email. == Submit a support ticket diff --git a/modules/cloud4/modules/administration/pages/index.adoc b/modules/cloud4/modules/administration/pages/index.adoc deleted file mode 100644 index a910d114..00000000 --- a/modules/cloud4/modules/administration/pages/index.adoc +++ /dev/null @@ -1,26 +0,0 @@ -= Administration Overview -:experimental: - -Here you can learn about the tools available for organizational administrators. - -== xref:cloud4:administration:how2-invite-users.adoc[] - -Learn how to invite new users to your organizations. - -== xref:cloud4:administration:how2-access-mgnt.adoc[] - -Learn how to manage access to workspaces and resources within TigerGraph Cloud 4. - -== xref:cloud4:administration:settings/how2-use-organization-mgnt.adoc[] - -Learn about the organization management features that allow you to configure organization settings. - -== xref:cloud4:administration:settings/how2-create-api-key.adoc[] - -Learn how to create API keys for your organization. - -== Next Steps - -Next, learn about xref:cloud4:administration:security/index.adoc[] or additional xref:cloud4:resources:index.adoc[] in TigerGraph Cloud 4. - -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/administration/pages/security/index.adoc b/modules/cloud4/modules/administration/pages/security/index.adoc deleted file mode 100644 index 947b6031..00000000 --- a/modules/cloud4/modules/administration/pages/security/index.adoc +++ /dev/null @@ -1,15 +0,0 @@ -= Security -:experimental: - - -Here you can learn different security practices and policies in TigerGraph Cloud 4. - - -== xref:cloud4:administration:security/password-policy.adoc[] - -Learn and understand the password policy in TigerGraph Cloud 4. - - -== xref:cloud4:administration:security/idp.adoc[] - -Learn and understand IDP intergration with SSO password policy in TigerGraph Cloud 4. diff --git a/modules/cloud4/modules/administration/pages/settings/index.adoc b/modules/cloud4/modules/administration/pages/settings/index.adoc deleted file mode 100644 index 934f4a26..00000000 --- a/modules/cloud4/modules/administration/pages/settings/index.adoc +++ /dev/null @@ -1,18 +0,0 @@ -= Administrative Settings Overview -:experimental: - -Here you can learn about the configurations for an organization. - -== xref:cloud4:administration:settings/how2-use-organization-mgnt.adoc[] - -Learn about the organization management features that allow you to configure organization settings. - -== xref:cloud4:administration:settings/how2-create-api-key.adoc[] - -Learn how to create API keys for your organization. - -== Next Steps - -Next, learn about xref:cloud4:administration:security/index.adoc[] or additional xref:cloud4:resources:index.adoc[] in TigerGraph Cloud 4. - -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/get-started/da.adoc b/modules/cloud4/modules/get-started/da.adoc deleted file mode 100644 index e69de29b..00000000 diff --git a/modules/cloud4/modules/get-started/images/orglogin-1.png b/modules/cloud4/modules/get-started/images/orglogin-1.png deleted file mode 100644 index aad85ed2..00000000 Binary files a/modules/cloud4/modules/get-started/images/orglogin-1.png and /dev/null differ diff --git a/modules/cloud4/modules/get-started/pages/index.adoc b/modules/cloud4/modules/get-started/pages/index.adoc deleted file mode 100644 index f23b3751..00000000 --- a/modules/cloud4/modules/get-started/pages/index.adoc +++ /dev/null @@ -1,25 +0,0 @@ -= Get Started with TigerGraph Cloud 4 -:experimental: - -To get started with TigerGraph Cloud 4, users must first Sign Up and Log In. -These guides will walk you through the necessary steps. - -== xref:how2-signup.adoc[] - -Learn how to create a TigerGraph Cloud 4 Cloud account and get access to the platform. - -== xref:how2-login.adoc[] - -Learn how to log in to your TigerGraph Cloud 4 Cloud account. - -== Next Steps - -Once logged in, learn more about xref:cloud4:workgroup-workspace:index.adoc[] or jump right into creating a xref:workgroup-workspace:workgroups/workgroup.adoc[Workgroup] and xref:workgroup-workspace:workspaces/workspace.adoc[Workspaces]. - -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. - - - - - - diff --git a/modules/cloud4/modules/integrations/pages/index.adoc b/modules/cloud4/modules/integrations/pages/index.adoc deleted file mode 100644 index d4db3a85..00000000 --- a/modules/cloud4/modules/integrations/pages/index.adoc +++ /dev/null @@ -1,23 +0,0 @@ -= Marketplace Overview -:experimental: - -TigerGraph Cloud seamlessly integrates with various tools and services to enhance your graph database workflow. - -== xref:cloud4:integrations:add-ons.adoc[] - -Learn how to extend the capabilities of TigerGraph Cloud 4 with add-ons tailored to your needs. - -* xref:cloud4:integrations:insights.adoc[] -* xref:cloud4:integrations:graphstudio.adoc[] -* xref:cloud4:integrations:graphql.adoc[] - -== xref:cloud4:integrations:solutions.adoc[] - -Here you can learn about our array of industry standard prebuilt solutions for diverse industries and use cases. -Designed for users to swiftly adopt graph technology. - -== Next Steps - -Now learn about xref:administration:index.adoc[Administration] features or xref:cloud4:administration:security/index.adoc[] in TigerGraph Cloud 4. - -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/overview/nav.adoc b/modules/cloud4/modules/overview/nav.adoc deleted file mode 100644 index 791b3b3c..00000000 --- a/modules/cloud4/modules/overview/nav.adoc +++ /dev/null @@ -1,8 +0,0 @@ -* xref:index.adoc[Introduction] -** xref:cloud4:overview:overview.adoc[Overview] -// ** xref:cloud4:overview:architecture.adoc[Architecture] -** xref:cloud4:overview:comparison_table.adoc[Compare Different Offerings] -** xref:cloud4:overview:release-notes.adoc[Release Notes] -** xref:cloud4:overview:pricing.adoc[] -** xref:cloud4:overview:cost-estimation.adoc[] - diff --git a/modules/cloud4/modules/overview/pages/comparison_table.adoc b/modules/cloud4/modules/overview/pages/comparison_table.adoc deleted file mode 100644 index d08b5f42..00000000 --- a/modules/cloud4/modules/overview/pages/comparison_table.adoc +++ /dev/null @@ -1,45 +0,0 @@ -= Compare TigerGraph Offerings - -Most of the documentation for TigerGraph Enterprise Server also applies to TigerGraph Cloud 4. -Here are some differences between the different TigerGraph offerings. - -|=== -| Category | Topic | TigerGraph Enterprise Server | TigerGraph Cloud Classic | TigerGraph Cloud 4 Beta -.7+| Architecture and Deployment | Architecture | Integrated storage and compute | Integrated storage and compute | Separate storage and compute -| Hardware and Software Requirements | Yes | N/A | N/A -| Installation and Configuration | Yes | There are a few simple steps to install a Starter Kit, See the xref:cloud:support:faqs.adoc[] | Users can install solutions at any time -| Kubernetes Support | Yes, custom setup required | No | Yes, built-in support -| Amazon Web Service (AWS) | Yes, TigerGraph Lite on marketplace or custom deployment | Yes | Yes -| Google Cloud Platform (GCP) | Yes, TigerGraph Lite on marketplace or custom deployment | Yes | No, we are activly working on it -| Microsoft Azure | Yes, TigerGraph Lite on marketplace or custom deployment | Yes | No, we are activly working on it - -.13+| Features and Capabilities -| Release Notes| Yes| TigerGraph Cloud provides database versions kept up to date with TigerGraph Server 3.x releases | TigerGraph Cloud 4 provides the latest TigerGraph Server 4.x -| GSQL Graph Algorithm Library | Yes| Yes| Yes -| Transaction Processing and ACID Support | Yes | Yes | Yes -| GSQL 101 | Yes | Basic concepts still apply, most CREATE, INSTALL, LOAD, and RUN commands are replaced with the GraphStudio GUI-based approach | Fully supported using GSQL Editor -| GSQL 102 Pattern Matching | Yes | The same patterns can be used in queries | The same patterns can be used in queries -| MultiGraph Overview | Yes | Yes | Yes -| GraphStudio™ | Yes | Yes | Yes, add-on -| GSQL Demo Examples | Yes | Yes | Yes -| GSQL Language Reference, Part 1 Data Definition and Loading | Yes| Yes. GSQL Web Shell (Paid Tiers) supports Data Definition and Loading. Data files can be imported into the filesystem through GraphStudio™, or submit support request to import into the filesystem. In addition, the operations can be performed through GraphStudio™ | Yes, Load Data UI -| GSQL Language Reference, Part 2 Querying | Yes | Yes | Yes, GSQL Editor -| RESTPP API User Guide | Yes | Yes. Note the URL assigned to your cluster. | Yes, Connect From APIs option on all workspaces. -| Data Loader User Guides | Yes | S3 Loader can be used through the GraphStudio™ interface. In addition, S3 Loader and Kafka Loader can be used in GSQL Web Shell (Paid Tiers). | Yes. Step-by-step guide to load local/S3/GCS/ABS files. Provide a GSQL template for all other connectors. -| Schema Designer | Yes, GraphStudio™ | Yes, GraphStudio™ | Yes, Cloud Portal & GraphStudio™ - -.5+|Security and Management -| User Access Management | Yes | Yes | Yes -| Data Encryption | Yes | TigerGraph Cloud is set up already for encrypted data at rest and at motion | TigerGraph Cloud is set up already for encrypted data at rest and at motion -| System Management | Yes | The Cloud Portal is enhanced over the TigerGraph Server Admin Portal. Backup and Restore is done through the Cloud Portal. | The Cloud Portal is enhanced over the TigerGraph Server Admin Portal. Backup and Restore is done through the Cloud Portal. -| HA and DR | Yes | Yes | Yes -| Monitoring | Yes, requires custom setup using Informant APIs | TigerGraph Server Admin Portal | Build-in Grafana dashboard & TigerGraph Server Admin Portal -| Alerting | Yes, requires custom setup | No | Yes - -|=== - -== Next Steps - -Next, see xref:cloud4:get-started:index.adoc[] to unlock its full potential. - -Return to xref:cloud4:overview:index.adoc[TigerGraph Cloud 4] for another topic. diff --git a/modules/cloud4/modules/overview/pages/index.adoc b/modules/cloud4/modules/overview/pages/index.adoc deleted file mode 100644 index 5c1b818a..00000000 --- a/modules/cloud4/modules/overview/pages/index.adoc +++ /dev/null @@ -1,137 +0,0 @@ -= TigerGraph Cloud 4 Beta -:experimental: -:page-aliases: cloud-overview.adoc - -This documentation will guide you through the various features and functionalities of our brand new cloud-native Graph-as-a-Service (GaaS) management platform. - -TigerGraph Cloud 4 (https://portal.tgcloud.io) offers a powerful and user-friendly environment for managing, analyzing, and exploring your graph data. -It revolutionizes graph analytics by introducing a groundbreaking separation of compute and storage in its cloud-based graph database platform. - -[CAUTION] -==== -TigerGraph Cloud 4 is still in beta release and the documentation is in progress. -==== - -[IMPORTANT] -==== -TigerGraph Cloud 4 beta is for personal or R&D use and not for production use. -Please see xref:cloud4:resources:terms_conditions.adoc[]. -==== - -//pass:[ToolTip Practice] - -//:tooltip: pass:[Hover over this text] - -//{tooltip} - -== Get to Know Your TigerGraph Cloud - -[.home-card,cols="2",grid=none,frame=none, separator=¦] -|=== -¦ -image:getstarted-homecard.png[alt=getstarted,width=74,height=74] -*Get Started* - -xref:cloud4:get-started:index.adoc[Get Started] using TigerGraph Cloud 4 or explore key features in our xref:overview:overview.adoc[]. - -xref:get-started:how2-signup.adoc[How to Sign Up] | -xref:cloud4:get-started:how2-login.adoc[] -¦ -image:insights.png[alt=workspace,width=74,height=74] -*Workgroups and Workspaces* - -Learn how to dynamically allocate compute and storage resources. - -xref:workgroup-workspace:index.adoc[Overview] | -xref:workgroup-workspace:workgroups/workgroup.adoc[Workgroup] | -xref:workgroup-workspace:workspaces/workspace.adoc[Workspace] - -¦ -image:DataLoading-Homecard.png[alt=load data,width=74,height=74] -*Load Data* - -Learn how to Load Data into TigerGraph Cloud 4. - - - -xref:cloud4:graph-development:load-data/index.adoc[Overview] | -xref:cloud4:graph-development:load-data/load-from-local.adoc[Local] | -xref:cloud4:graph-development:load-data/load-from-s3.adoc[Amazon S3] | -xref:cloud4:graph-development:load-data/load-from-gcs.adoc[Google Cloud Storage] | -xref:cloud4:graph-development:load-data/load-from-blob.adoc[Azure Blob Storage] | -xref:cloud4:graph-development:load-data/load-from-other-sources.adoc[Other Sources] -¦ -image:TG_Icon_Library-135.png[alt=schemadesigner,width=74,height=74] -*Design Schema* - -xref:cloud4:graph-development:design-schema/index.adoc[Design Schema] teaches you how you can easily modify and manage the schema of your graph databases using Schema Designer UI. - -¦ -image:schema-homecard.png[alt=gsqlEditor,width=74,height=74] -*GSQL Editor* - -The GSQL Editor is a powerful tool for developing and executing GSQL queries, allowing you to unlock insights from your graph databases. - -xref:cloud4:graph-development:gsql-editor/index.adoc[Overview] | xref:cloud4:graph-development:gsql-editor/how2-edit-gsql-query.adoc[] -¦ -image:TG_Icon_Library-218.png[alt=exploreGraph,width=74,height=74] -*Explore Graph* - -Visualize your data and navigate to understand complex connections and dependencies. - -xref:cloud4:graph-development:explore-graph/index.adoc[Overview] | -xref:cloud4:graph-development:explore-graph/how2-use-pattern-search.adoc[] - -¦ -image:ArchtectureOverview-homecard.png[alt=integration,width=74,height=74] -*Marketplace* - -TigerGraph Cloud 4 offers several powerful integration tools. - -xref:cloud4:integrations:index.adoc[Overview] | -xref:cloud4:integrations:insights.adoc[] | -xref:cloud4:integrations:graphstudio.adoc[] | -xref:cloud4:integrations:graphql.adoc[] -¦ -image:edtions-homecard.png[alt=billing,width=74,height=74] -*Administration* - -Here you can learn about the tools available for organizational administrators. - -xref:cloud4:administration:index.adoc[Overview] | -xref:cloud4:administration:how2-invite-users.adoc[] | -xref:cloud4:administration:how2-access-mgnt.adoc[] | -xref:cloud4:administration:settings/how2-use-organization-mgnt.adoc[Org Management] -¦ -image:security-homecard.png[alt=security,width=74,height=74] -*Security* - -Learn about xref:cloud4:administration:security/index.adoc[] in TigerGraph Cloud 4. - -xref:cloud4:administration:security/password-policy.adoc[] | -xref:cloud4:administration:security/idp.adoc[] -¦ -image:billing-homecard.png[alt=billing,width=74,height=74] -*Billing* - -The xref:cloud4:administration:billing/index.adoc[Billing] window allows users to pay only for their specific usage of storage, data access, and compute resources. - -xref:cloud4:administration:billing/payment-methods.adoc[] | -xref:cloud4:administration:billing/invoices.adoc[] | -xref:cloud4:overview:pricing.adoc[] -¦ -image:referece-homecard.png[alt=support,width=74,height=74] -*Release Notes* - -View the xref:cloud4:overview:release-notes.adoc[Release Notes] to get update information on features and releases. -¦ -image:documentation-homecard.png[alt=support,width=74,height=74] -*Resources* - -View any additional xref:resources:index.adoc[Resources] for TigerGraph Cloud 4. - -xref:cloud4:resources:glossary.adoc[] | -xref:cloud4:resources:terms_conditions.adoc[ Beta Terms and Conditions] | -xref:cloud4:resources:support.adoc[] - -|=== \ No newline at end of file diff --git a/modules/cloud4/modules/overview/pages/release-notes.adoc b/modules/cloud4/modules/overview/pages/release-notes.adoc deleted file mode 100644 index b4e0fd33..00000000 --- a/modules/cloud4/modules/overview/pages/release-notes.adoc +++ /dev/null @@ -1,185 +0,0 @@ -= TigerGraph Cloud 4 Release Notes -:experimental: -//:page-aliases: change-log.adoc, release-notes.adoc -:toc: -:toclevels:2 - -[IMPORTANT] -==== -TigerGraph Cloud 4 beta is for personal or R&D use and not for production use. -Please see xref:cloud4:resources:terms_conditions.adoc[]. -==== - -== Oct 2024 -=== 2024-10-15 - -==== Workspace Enhancements - -* xref:cloud4:workgroup-workspace:workspaces/schedule.adoc[Scheduled Workspace Expansion and Shrink]: Schedule workspace expansion and shrink operations to align with your usage patterns and optimize resource allocation. -* Support HA with Cross-Zone Resiliency: Ensure business continuity and minimize downtime with the introduction of cross-zone high availability support, allowing you to deploy and manage resilient graph database clusters across multiple availability zones for enhanced fault tolerance and disaster recovery capabilities. - -==== Observability Enhancements - -* xref:cloud4:workgroup-workspace:workspaces/settings.adoc#_alerts_[Alerting] System: Stay informed about critical events and performance anomalies through the new alerting system, enabling proactive management of your graph database workspaces. - -==== Stability Enhancements - -* Improved stability and performance. - -==== Other Enhancements - -* Bug fixes. - -== Sep 2024 -=== 2024-09-28 - -==== General - -* Release xref:4.1@tigergraph-server:release-notes:index.adoc[TigerGraph Server 4.1 Preview] on TigerGraph Cloud 4. - -==== Workspace Enhancements - -* Output to Amazon S3: Benefit from integration with Amazon S3 for data output, enabling you to store and retrieve data from Amazon S3 buckets directly from your TigerGraph Cloud environment. -* Built-in Read-only Algorithms: Run built-in read-only algorithms on read-only workspaces, empowering users to leverage algorithmic capabilities for analysis and insights. - -==== GSQL Editor Enhancements - -* Improved User Interface: The GSQL Editor has undergone a significant facelift, providing a more intuitive and user-friendly interface for writing and executing GSQL queries. -* Syntax Highlighting: Enjoy enhanced code readability with syntax highlighting for GSQL queries, making it easier to identify keywords, variables, and functions. -* Auto-Completion: Boost your productivity with auto-completion suggestions that help you write GSQL queries faster and with fewer errors. - -==== Data Loading and Solution Kits - -* Enhanced xref:cloud4:graph-development:load-data/index.adoc[Data Loading] Capabilities: Experience faster and more efficient data loading processes with optimized performance and reliability. -* Customizable UDF: Customize user-defined functions (UDFs) to extend the functionality of your graph database workspaces, enabling you to implement custom logic and algorithms for advanced analytics and insights. - -==== Other Enhancements -* xref:cloud4:workgroup-workspace:workgroups/how2-config-network-access.adoc[Network Configuration]: Set up IP allow lists to protect your workspaces, allowing you to control access and enhance the security of your graph database workspaces. -* xref:cloud4:rest-api:index.adoc[Controller APIs] Support: Enable APIs to operate on TigerGraph Cloud workspaces by providing support for API keys, enhancing the flexibility and security of interacting with your graph database through APIs. -* Bug fixes. - -=== 2024-09-12 - -==== Workspace Enhancements - -* xref:cloud4:workgroup-workspace:workspaces/settings.adoc#_workspace_size_suggestion[Capacity Planning]: Benefit from capacity planning features that help you estimate and plan your workspace size and cost more efficiently. - -==== Other Enhancements - -* Bug fixes. - -== Aug 2024 -=== 2024-08-27 - -==== Workspace Enhancements - -* xref:cloud4:workgroup-workspace:workspaces/settings.adoc#_auto_suspend[Auto Suspend] Enhancement: Auto Suspend feature now supports detection of installing queries, running queries, loading jobs and changing schema. - -==== Other Enhancements - -* Bug fixes. - -=== 2024-08-14 - -==== Data Loading and Solution Kits - -* xref:cloud4:integrations:solutions.adoc[Solution Kits]: Explore an expanded collection of solution kits tailored to specific use cases, providing pre-built templates and workflows for accelerated graph database development. - -== Jul 2024 -=== 2024-07-31 - -==== General - -* Support GSQL API v2: Introducing GSQL API v2 support for enhanced query performance and efficiency, enabling users to leverage the latest GSQL features and optimizations. - -==== Obvervability Enhancements - -* Enhanced xref:cloud4:workgroup-workspace:workgroups/monitor-workspaces.adoc[Monitoring] Tools: Gain deeper insights into your TigerGraph Cloud environment with improved monitoring tools, allowing you to track performance metrics and diagnose issues effectively. - -==== Other Enhancements - -* Bug fixes. - -=== 2024-07-13 - -==== Workspace Enhancements - -* xref:cloud4:workgroup-workspace:workspaces/readwrite-readonly.adoc#_update_read_onlyro_workspace[Syncing Read-only Data with Read-write]: Enable synchronization of read-only data with read-write workspaces, ensuring consistency across different workspace types. - -==== Other Enhancements - -* Bug fixes. - -== Apr 2024 - -=== TigerGraph Cloud 4 (Beta) was released on Monday, April 29th, 2024. - -//* xref:cloud4:get-started:index.adoc[Get Started] using TigerGraph Cloud with the 4.0. -* xref:cloud4:overview:overview.adoc#_separation_of_storage_and_compute[Separation of Storage and Compute] - Introduction of a unique architecture that separates storage and compute, allowing users to scale resources independently. - -* xref:workgroup-workspace:workgroups/workgroup.adoc[Workgroups] and xref:workgroup-workspace:workspaces/workspace.adoc[Workspaces] give users control over resource management. - -* xref:cloud4:graph-development:load-data/index.adoc[] - Load Data into TigerGraph Cloud 4 and unlock its potential. - -* xref:cloud4:graph-development:design-schema/index.adoc[Design Schema] - Easily modify and manage the schema of your graph databases using Schema Designer UI. - -* xref:cloud4:graph-development:gsql-editor/index.adoc[GSQL Editor] - The GSQL Editor is a powerful tool for developing and executing GSQL queries, allowing you to unlock insights from your graph databases by xref:cloud4:graph-development:gsql-editor/how2-edit-gsql-query.adoc[Editing, Running, and Sharing a GSQL Query.]. - -* xref:cloud4:graph-development:explore-graph/index.adoc[] and xref:cloud4:graph-development:explore-graph/how2-use-pattern-search.adoc[] - Visualize your data and navigate to understand complex connections and dependencies. - -* xref:integrations:index.adoc[] - TigerGraph Cloud 4 offers several powerful integration tools in our marketplace. -** xref:cloud4:integrations:solutions.adoc[] - Pre-built solution kits that address common use cases and industry-specific challenges. -** xref:cloud4:integrations:add-ons.adoc[] - Extend the capabilities of TigerGraph Cloud 4 with add-ons tailored to your needs. Add-ons provide additional functionalities and integrations that enhance your graph database workflow. -*** xref:cloud4:integrations:insights.adoc[Insights Add-On] - TigerGraph Insights is a no-code visual graph analyzer that makes building data analytics dashboards intuitive. -*** xref:cloud4:integrations:graphstudio.adoc[GraphStudio™ Add-On] - TigerGraph GraphStudio™ offers a range of features and tools to simplify the graph development process. -*** xref:cloud4:integrations:graphql.adoc[GraphQL Add-On] - TigerGraph GraphQL enables users to access and modify graph data in TigerGraph using GraphQL queries. - -* xref:cloud4:administration:index.adoc[] - The tools for organizational administrators to xref:cloud4:administration:how2-invite-users.adoc[] -, xref:cloud4:administration:how2-access-mgnt.adoc[Mange Access], xref:cloud4:administration:settings/how2-use-organization-mgnt.adoc[Manage Organization]. - -* xref:cloud4:administration:billing/index.adoc[Billing UI] - The new billing UI allows users to check and pay only for their specific usage of storage, data access, and compute resources -with an xref:cloud4:administration:billing/payment-methods.adoc[easy-to-use Payment Method manager], and the xref:cloud4:administration:billing/invoices.adoc[ability to check and export invoices]. - -//// -== Fixed issues -=== Fixed and Improved [v number] - -==== Functionality -* Description (Ticket Number) - -==== Crashes and Deadlocks - -* Description (Ticket Number) - -==== Improvements - -* Description (Ticket Number) - -== Known Issues and Limitations - -[cols="4", separator=¦ ] -|=== -¦ Description ¦ Found In ¦ Workaround ¦ Fixed In - -|=== - -=== Compatibility Issues - -[cols="2", separator=¦ ] -|=== -¦ Description ¦ Version Introduced - -|=== - -=== Deprecations - -[cols="3", separator=¦ ] -|=== -¦ Description ¦ Deprecated ¦ Removed - -|=== - -== Release notes for previous versions -* TBD -//// - diff --git a/modules/cloud4/modules/resources/nav.adoc b/modules/cloud4/modules/resources/nav.adoc deleted file mode 100644 index 3b79737e..00000000 --- a/modules/cloud4/modules/resources/nav.adoc +++ /dev/null @@ -1,10 +0,0 @@ -* xref:cloud4:resources:index.adoc[Resources] -** xref:cloud4:resources:aws.adoc[] -** xref:cloud4:resources:gcp.adoc[] -** xref:cloud4:resources:azure.adoc[] -** xref:cloud4:resources:glossary.adoc[] -** xref:cloud4:resources:support.adoc[] -** xref:cloud4:resources:faqs.adoc[] -** xref:cloud4:resources:quota_policy.adoc[Subscription Plans and Quota Policy] -// ** xref:cloud4:resources:terms_conditions.adoc[Terms and Conditions] -// ** xref:resources:faqs.adoc[FAQs] diff --git a/modules/cloud4/modules/resources/pages/support.adoc b/modules/cloud4/modules/resources/pages/support.adoc deleted file mode 100644 index fa31ad6d..00000000 --- a/modules/cloud4/modules/resources/pages/support.adoc +++ /dev/null @@ -1,46 +0,0 @@ -//Look to the terms and conditions -//Email the address -//Create a ticket - - -//// -TigerGraph provides support for TigerGraph Cloud for customers with non-free-tier clusters. - -For more information on TigerGraph's support policy, visit our https://www.tigergraph.com/support-policy/[support policy page]. - -You can submit a support ticket in the TigerGraph Cloud portal or by email. - -== Submit a support ticket - -Click on the question mark icon in the upper right corner of the screen and select Support from the drop-down menu. - -This takes you to TigerGraph's support platform, where you can submit support tickets. - -If you don't already have an account, you can create one following the instructions on the page. -if you already have an account, log in and click btn:[Submit a request] to submit a support ticket. - -== Follow up on your ticket - -If you have a paid subscription with TigerGraph, a support representative will be reviewing your request and will send you a personal response (usually within 24 hours). You can follow up on your ticket on the Zendesk platform. -//// - -= Support -:sectnums: -:experimental: - -TigerGraph provides support for TigerGraph Cloud for customers with non-free-tier clusters. For more information on TigerGraph's support policy, visit our https://www.tigergraph.com/support-policy/[support policy page]. - -You can submit a support ticket in the TigerGraph Cloud portal or by email. - -== Submit a support ticket - -Click on the question mark icon in the upper right corner of the screen and select Support from the drop-down menu. - -This takes you to TigerGraph's support platform, where you can submit support tickets. - -If you don't already have an account, you can create one following the instructions on the page. -if you already have an account, log in and click btn:[Submit a request] to submit a support ticket. - -== Follow up on your ticket - -If you have a paid subscription with TigerGraph, a support representative will be reviewing your request and will send you a personal response (usually within 24 hours). You can follow up on your ticket on the Zendesk platform. \ No newline at end of file diff --git a/modules/cloud4/modules/resources/pages/terms_condition_beta.adoc b/modules/cloud4/modules/resources/pages/terms_condition_beta.adoc deleted file mode 100644 index 4d96bb9e..00000000 --- a/modules/cloud4/modules/resources/pages/terms_condition_beta.adoc +++ /dev/null @@ -1,84 +0,0 @@ -= Beta Program Terms and Conditions for TigerGraph Cloud 4 - - - -== Effective Date: Apr 23, 2024 - -These Terms and Conditions of the Beta Program for TigerGraph Cloud 4 ("Terms") constitute a legal agreement between *You* or the entity You are authorized to represent and bind to these terms (“You” or “Your”) and TigerGraph, Inc. ("TigerGraph", "We") and govern Your participation in the Beta Program for TigerGraph Cloud 4 ("Beta Program"). - -[IMPORTANT] -==== -Please read these Terms carefully. -==== - -=== 1) Beta Offering -The Beta Program provides You access to the TigerGraph Cloud 4 Beta software service ("Beta Offering"), a pre-production release, for testing and providing feedback to TigerGraph. -The Beta Offering is provided on an "as is" and "as available" basis for a limited time. -You may access the Beta Offering via a designated portal which is separate from TigerGraph's production and general commercial offerings. -You may not use the Beta Offering in production or for commercial purposes. - -=== 2) Acceptance of Terms -By accessing or using the Beta Offering, You confirm that You have read, understood, and agree to be bound by these Terms. -You also agree to use the Beta Offering in accordance with the TigerGraph Cloud Subscription Terms, which are available on our website at https://www.tigergraph.com/tigergraph-cloud-subscription-terms/ and are incorporated by reference. -The Terms control over any inconsistent provisions with the TigerGraph Cloud Subscription Terms. - -If You do not agree with these Terms or the TigerGraph Cloud Subscription Terms, You are not permitted to access or use the Beta Offering. - -=== 3) Participation - -* *Eligibility*: Participation in the Beta Program is voluntary and is open only to selected participants who agree to these Terms. -At our sole discretion, we reserve the right to reject access or revoke access for any participant at any time. - -* *Registration*: You may be required to register for an account and provide accurate and complete information. -You agree to keep Your account credentials confidential and not to share them with other parties. -The active use of computational resources for the use of the Beta Offering in TigerGraph Cloud 4 consumes TigerGraph Cloud credits. -TigerGraph will grant Your Beta Program account a number of no-charge credits. -If You use all the credits, contact TigerGraph, and You may receive more. - -=== 4) License and Restrictions -We grant You a limited, non-exclusive, non-transferable, sublicensable, or assignable license to use the Beta Offering solely for internal testing and evaluation. -You, directly or through any third party, agree not to disclose the Beta Offering to any third party, reverse engineer, reveal Your benchmarking, decompile, or disassemble the Beta Offering. -You agree You will not attempt to gain unauthorized access to the Beta Offering’s underlying code or infrastructure. - -=== 5) Feedback and Communications -You agree to provide feedback regarding Your experience with the Beta Offering, including but not limited to usability, bugs, improvements, suggestions, and performance issues (“Feedback”). -All Feedback will be considered non-proprietary to You. You acknowledge that TigerGraph owns all Feedback provided. -If we choose to publish Your Feedback, we will either do so in a way that does not identify You or obtain Your consent to identify You. -You acknowledge the importance of communication and feedback between You and TigerGraph during Your use of the Beta Offering and agree to receive related correspondence and updates from us with regard to the Beta Offering. - -=== 6) Data Collection and Protection - -* *Personal Data*: We may collect and use Your data on a limited basis under our Privacy Policy, which is available on our website at https://www.tigergraph.com/privacy-policy/. -We may also monitor how You use the Beta Offering and use that information, without limitation, to improve our products and services. - - -=== 7) No Warranty -The Beta Offering is provided "as is" without any warranties, express or implied. -We do not warrant that it will be error-free or uninterrupted. -We are not obligated to provide maintenance, technical, or other support for the Beta Offering. -You must separately backup all data used on the Beta Offering to avoid loss of data. - -=== 8) Limitation of Liability -We shall not be liable for any indirect, incidental, special, consequential, or punitive damages, including but not limited to loss of profits, data, use, goodwill, or other intangible losses resulting from Your access to, use of, or inability to access or use the Beta Offering. - -=== 9) Changes to Terms -We reserve the right to modify these Terms at any time. -We will provide notice of these changes by posting the revised Terms and updating the "Effective Date" above. -Your continued participation in the Beta Program will constitute Your consent to those changes. - -=== 10) Termination -We reserve the right to terminate the Beta Program or suspend Your access to the Beta Offering at any time, without prior notice or liability, for any reason whatsoever, including without limitation if You breach these Terms. -You may terminate Your participation in the Beta Program by canceling Your access to the Beta Program portal. - -We anticipate ending the Beta Program on July 20, 2024. -We intend to send a notice to the email address of Your Beta Program registration at least 48 hours before we end the Beta Program. -After the Beta Program ends, Your Beta Offering services and the data contained therein will be deleted. -We may retain Your registration information, feedback, and system monitoring data. -The restrictions in section 4 survive any termination in perpetuity. - -=== 11) Governing Law -These Terms shall be governed by and construed in accordance with the internal laws of the State of California without regard to its conflict of laws principles. -Each party hereby consents to the jurisdiction of the federal or state courts of San Mateo County, California, USA. Each party hereby waives any right to a jury trial in any litigation arising out of or related to this Agreement. - -== Contact Us -If you have any questions about these Terms, please contact us at beta-support@tigergraph.com. diff --git a/modules/cloud4/modules/resources/pages/terms_conditions.adoc b/modules/cloud4/modules/resources/pages/terms_conditions.adoc deleted file mode 100644 index 4d96bb9e..00000000 --- a/modules/cloud4/modules/resources/pages/terms_conditions.adoc +++ /dev/null @@ -1,84 +0,0 @@ -= Beta Program Terms and Conditions for TigerGraph Cloud 4 - - - -== Effective Date: Apr 23, 2024 - -These Terms and Conditions of the Beta Program for TigerGraph Cloud 4 ("Terms") constitute a legal agreement between *You* or the entity You are authorized to represent and bind to these terms (“You” or “Your”) and TigerGraph, Inc. ("TigerGraph", "We") and govern Your participation in the Beta Program for TigerGraph Cloud 4 ("Beta Program"). - -[IMPORTANT] -==== -Please read these Terms carefully. -==== - -=== 1) Beta Offering -The Beta Program provides You access to the TigerGraph Cloud 4 Beta software service ("Beta Offering"), a pre-production release, for testing and providing feedback to TigerGraph. -The Beta Offering is provided on an "as is" and "as available" basis for a limited time. -You may access the Beta Offering via a designated portal which is separate from TigerGraph's production and general commercial offerings. -You may not use the Beta Offering in production or for commercial purposes. - -=== 2) Acceptance of Terms -By accessing or using the Beta Offering, You confirm that You have read, understood, and agree to be bound by these Terms. -You also agree to use the Beta Offering in accordance with the TigerGraph Cloud Subscription Terms, which are available on our website at https://www.tigergraph.com/tigergraph-cloud-subscription-terms/ and are incorporated by reference. -The Terms control over any inconsistent provisions with the TigerGraph Cloud Subscription Terms. - -If You do not agree with these Terms or the TigerGraph Cloud Subscription Terms, You are not permitted to access or use the Beta Offering. - -=== 3) Participation - -* *Eligibility*: Participation in the Beta Program is voluntary and is open only to selected participants who agree to these Terms. -At our sole discretion, we reserve the right to reject access or revoke access for any participant at any time. - -* *Registration*: You may be required to register for an account and provide accurate and complete information. -You agree to keep Your account credentials confidential and not to share them with other parties. -The active use of computational resources for the use of the Beta Offering in TigerGraph Cloud 4 consumes TigerGraph Cloud credits. -TigerGraph will grant Your Beta Program account a number of no-charge credits. -If You use all the credits, contact TigerGraph, and You may receive more. - -=== 4) License and Restrictions -We grant You a limited, non-exclusive, non-transferable, sublicensable, or assignable license to use the Beta Offering solely for internal testing and evaluation. -You, directly or through any third party, agree not to disclose the Beta Offering to any third party, reverse engineer, reveal Your benchmarking, decompile, or disassemble the Beta Offering. -You agree You will not attempt to gain unauthorized access to the Beta Offering’s underlying code or infrastructure. - -=== 5) Feedback and Communications -You agree to provide feedback regarding Your experience with the Beta Offering, including but not limited to usability, bugs, improvements, suggestions, and performance issues (“Feedback”). -All Feedback will be considered non-proprietary to You. You acknowledge that TigerGraph owns all Feedback provided. -If we choose to publish Your Feedback, we will either do so in a way that does not identify You or obtain Your consent to identify You. -You acknowledge the importance of communication and feedback between You and TigerGraph during Your use of the Beta Offering and agree to receive related correspondence and updates from us with regard to the Beta Offering. - -=== 6) Data Collection and Protection - -* *Personal Data*: We may collect and use Your data on a limited basis under our Privacy Policy, which is available on our website at https://www.tigergraph.com/privacy-policy/. -We may also monitor how You use the Beta Offering and use that information, without limitation, to improve our products and services. - - -=== 7) No Warranty -The Beta Offering is provided "as is" without any warranties, express or implied. -We do not warrant that it will be error-free or uninterrupted. -We are not obligated to provide maintenance, technical, or other support for the Beta Offering. -You must separately backup all data used on the Beta Offering to avoid loss of data. - -=== 8) Limitation of Liability -We shall not be liable for any indirect, incidental, special, consequential, or punitive damages, including but not limited to loss of profits, data, use, goodwill, or other intangible losses resulting from Your access to, use of, or inability to access or use the Beta Offering. - -=== 9) Changes to Terms -We reserve the right to modify these Terms at any time. -We will provide notice of these changes by posting the revised Terms and updating the "Effective Date" above. -Your continued participation in the Beta Program will constitute Your consent to those changes. - -=== 10) Termination -We reserve the right to terminate the Beta Program or suspend Your access to the Beta Offering at any time, without prior notice or liability, for any reason whatsoever, including without limitation if You breach these Terms. -You may terminate Your participation in the Beta Program by canceling Your access to the Beta Program portal. - -We anticipate ending the Beta Program on July 20, 2024. -We intend to send a notice to the email address of Your Beta Program registration at least 48 hours before we end the Beta Program. -After the Beta Program ends, Your Beta Offering services and the data contained therein will be deleted. -We may retain Your registration information, feedback, and system monitoring data. -The restrictions in section 4 survive any termination in perpetuity. - -=== 11) Governing Law -These Terms shall be governed by and construed in accordance with the internal laws of the State of California without regard to its conflict of laws principles. -Each party hereby consents to the jurisdiction of the federal or state courts of San Mateo County, California, USA. Each party hereby waives any right to a jury trial in any litigation arising out of or related to this Agreement. - -== Contact Us -If you have any questions about these Terms, please contact us at beta-support@tigergraph.com. diff --git a/modules/cloud4/modules/rest-api/pages/authentication.adoc b/modules/cloud4/modules/rest-api/pages/authentication.adoc deleted file mode 100644 index f1af55c6..00000000 --- a/modules/cloud4/modules/rest-api/pages/authentication.adoc +++ /dev/null @@ -1,23 +0,0 @@ -= Authentication - -To use the TigerGraph Cloud 4 REST APIs, you need to authenticate your requests. Authentication is typically done using API keys. - -[IMPORTANT] -==== -The TigerGraph Cloud 4 REST API is currently in preview version. Features and endpoints may change as the API evolves. -==== - -== Setup API Keys - -Before you can authenticate your API requests, you need to set up your API keys. Please refer to the xref:cloud4:administration:settings/how2-create-api-key.adoc[API Key Setup] page for detailed instructions on how to generate and manage your API keys. - -== Example Request - -Here’s an example of how to consume the APIs using your API key: - -```bash -curl -X GET "https://api.tgcloud.io/users" \ - -H 'accept: application/json' \ - -H "Authorization: Bearer " -``` - diff --git a/modules/cloud4/modules/rest-api/pages/index.adoc b/modules/cloud4/modules/rest-api/pages/index.adoc deleted file mode 100644 index eb8c60d0..00000000 --- a/modules/cloud4/modules/rest-api/pages/index.adoc +++ /dev/null @@ -1,24 +0,0 @@ -= REST API (Preview) -:experimental: - -TigerGraph Cloud 4 REST API provides a set of endpoints that allow developers to interact programmatically with TigerGraph Cloud 4 services. Those APIs enable you to manage your graph databases and perform various administrative tasks. - -[IMPORTANT] -==== -The TigerGraph Cloud 4 REST API is currently in preview version. Features and endpoints may change as the API evolves. -==== - - -== xref:cloud4:rest-api:authentication.adoc[] - -Learn how to authenticate with the TigerGraph Cloud 4 REST API. - - -== xref:cloud4:rest-api:endpoints.adoc[] - -Explore the REST API endpoints available in TigerGraph Cloud 4. - -== xref:cloud4:rest-api:definitions.adoc[] - -Explore the REST API data model definitions in TigerGraph Cloud 4. - diff --git a/modules/cloud4/modules/rest-api/pages/overview.adoc b/modules/cloud4/modules/rest-api/pages/overview.adoc deleted file mode 100644 index 4b54fde4..00000000 --- a/modules/cloud4/modules/rest-api/pages/overview.adoc +++ /dev/null @@ -1,19 +0,0 @@ -= Tigergraph Cloud Controller API - - -[[_overview]] -== Overview -This is a sample tigergraph cloud controller server api. - - -=== Version information -[%hardbreaks] -__Version__ : 2.0 - - -=== URI scheme -[%hardbreaks] -__BasePath__ : https://api.tgcloud.io - - - diff --git a/modules/cloud4/modules/rest-api/pages/security.adoc b/modules/cloud4/modules/rest-api/pages/security.adoc deleted file mode 100644 index 63e9501b..00000000 --- a/modules/cloud4/modules/rest-api/pages/security.adoc +++ /dev/null @@ -1,15 +0,0 @@ - -[[_securityscheme]] -== Security - -[[_apikeyauth]] -=== ApiKeyAuth -Authorization for tigergraph cloud - -[%hardbreaks] -__Type__ : apiKey -__Name__ : Authorization -__In__ : HEADER - - - diff --git a/modules/cloud4/modules/workgroup-workspace/images/create-workgroup.png b/modules/cloud4/modules/workgroup-workspace/images/create-workgroup.png deleted file mode 100644 index 63582326..00000000 Binary files a/modules/cloud4/modules/workgroup-workspace/images/create-workgroup.png and /dev/null differ diff --git a/modules/cloud4/modules/workgroup-workspace/images/landing-page.png b/modules/cloud4/modules/workgroup-workspace/images/landing-page.png deleted file mode 100644 index dde8580e..00000000 Binary files a/modules/cloud4/modules/workgroup-workspace/images/landing-page.png and /dev/null differ diff --git a/modules/cloud4/modules/workgroup-workspace/images/no-workgroup.png b/modules/cloud4/modules/workgroup-workspace/images/no-workgroup.png deleted file mode 100644 index 13b78ac1..00000000 Binary files a/modules/cloud4/modules/workgroup-workspace/images/no-workgroup.png and /dev/null differ diff --git a/modules/cloud4/modules/workgroup-workspace/images/signup.png b/modules/cloud4/modules/workgroup-workspace/images/signup.png deleted file mode 100644 index 5ad4b743..00000000 Binary files a/modules/cloud4/modules/workgroup-workspace/images/signup.png and /dev/null differ diff --git a/modules/cloud4/modules/workgroup-workspace/images/tabs.png b/modules/cloud4/modules/workgroup-workspace/images/tabs.png deleted file mode 100644 index dd3e6d39..00000000 Binary files a/modules/cloud4/modules/workgroup-workspace/images/tabs.png and /dev/null differ diff --git a/modules/cloud4/modules/workgroup-workspace/nav.adoc b/modules/cloud4/modules/workgroup-workspace/nav.adoc deleted file mode 100644 index 61a838d3..00000000 --- a/modules/cloud4/modules/workgroup-workspace/nav.adoc +++ /dev/null @@ -1,16 +0,0 @@ -* xref:index.adoc[] -** xref:cloud4:workgroup-workspace:workgroups/workgroup.adoc[Workgroups] -*** xref:cloud4:workgroup-workspace:workgroups/how2-create-a-workgroup.adoc[Create Workgroup] -*** xref:cloud4:workgroup-workspace:workgroups/how2-workgroup-access.adoc[Permissions] -*** xref:cloud4:workgroup-workspace:workgroups/monitor-workspaces.adoc[Monitor] -*** xref:cloud4:workgroup-workspace:workgroups/backup-and-restore.adoc[] -*** xref:cloud4:workgroup-workspace:workgroups/how2-config-network-access.adoc[Network Access] -** xref:workspaces/workspace.adoc[Workspaces] -*** xref:cloud4:workgroup-workspace:workspaces/how2-create-a-workspace.adoc[Create Workspace] -*** xref:cloud4:workgroup-workspace:workspaces/workspace-size.adoc[] -*** xref:cloud4:workgroup-workspace:workspaces/settings.adoc[Workspace Settings] -*** xref:cloud4:workgroup-workspace:workspaces/readwrite-readonly.adoc[RW/RO Workspaces] -*** xref:cloud4:workgroup-workspace:workspaces/expansion-shrink.adoc[Expand and Shrink] -*** xref:cloud4:workgroup-workspace:workspaces/schedule.adoc[Schedule] -*** xref:cloud4:workgroup-workspace:workspaces/connect-via-api.adoc[] - diff --git a/modules/cloud4/modules/workgroup-workspace/pages/index.adoc b/modules/cloud4/modules/workgroup-workspace/pages/index.adoc deleted file mode 100644 index 35902d18..00000000 --- a/modules/cloud4/modules/workgroup-workspace/pages/index.adoc +++ /dev/null @@ -1,53 +0,0 @@ -= Workgroups and Workspaces -:experimental: - -In TigerGraph Cloud 4, the concepts of workgroup, workspace, and database are used to organize and manage projects and data within the platform. -By utilizing xref:cloud4:workgroup-workspace:workgroups/workgroup.adoc[workgroups], xref:cloud4:workgroup-workspace:workspaces/workspace.adoc[workspaces and databases], TigerGraph Cloud 4 provides a flexible and scalable environment for managing projects, allocating compute resources, and working with graph data effectively. - -== xref:cloud4:workgroup-workspace:workgroups/workgroup.adoc[] - -Learn xref:cloud4:workgroup-workspace:workgroups/how2-create-a-workgroup.adoc[] the first step before creating a xref:cloud4:workgroup-workspace:workspaces/workspace.adoc[Workspace] -and learning xref:cloud4:workgroup-workspace:workgroups/how2-workgroup-access.adoc[]. - - -== xref:cloud4:workgroup-workspace:workspaces/workspace.adoc[Workspace and Database Overview] -Learn xref:cloud4:workgroup-workspace:workspaces/how2-create-a-workspace.adoc[] and unlock its many features. - -Such as: - -* xref:cloud4:workgroup-workspace:workspaces/settings.adoc[] -- -Learn how advanced settings in workspace allow users to customize and fine tune various aspects of their workspace configuration. - -* xref:cloud4:workgroup-workspace:workspaces/readwrite-readonly.adoc[] -- -Learn how Read-Write (RW) and Read-Only (RO) Workspaces will connect to a database. - -* xref:cloud4:workgroup-workspace:workspaces/workspace-size.adoc[] -- -Learn how to specify the size based on your data and performance requirements. - -* xref:cloud4:workgroup-workspace:workspaces/expansion-shrink.adoc[] -- -Learn how to adjust the capacity of your workspaces as your data grows or changes. - -* xref:cloud4:workgroup-workspace:workgroups/backup-and-restore.adoc[] -- -Learn how to create backup points and restore your workspace to a specific point in time. - -* xref:cloud4:workgroup-workspace:workspaces/connect-via-api.adoc[] -- -Learn how to connect to your graph database using REST APIs. - -* xref:cloud4:workgroup-workspace:workgroups/monitor-workspaces.adoc[] -- -Learn how TigerGraph Cloud 4 offers comprehensive monitoring capabilities that allow you to track the status and resource usage of your workspaces. - -== Next Steps - -Next, learn how to xref:cloud4:graph-development:load-data/index.adoc[Load Data] into TigerGraph Cloud 4. - -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. - - - diff --git a/modules/cloud4/modules/workgroup-workspace/pages/workgroups/how2-create-a-workgroup.adoc b/modules/cloud4/modules/workgroup-workspace/pages/workgroups/how2-create-a-workgroup.adoc deleted file mode 100644 index 187c9b87..00000000 --- a/modules/cloud4/modules/workgroup-workspace/pages/workgroups/how2-create-a-workgroup.adoc +++ /dev/null @@ -1,59 +0,0 @@ -= How to Create a Workgroup -:experimental: - -To learn more about workgroups see xref:cloud4:workgroup-workspace:workgroups/workgroup.adoc[]. -To create a workgroup in TigerGraph Cloud 4, follow the steps below. - -== Create a Workgroup - -[Placeholder for create workgroup screenshot] - -. Log in to your TigerGraph Cloud account. -+ -image::signup.png[width=450] - -. Click on the btn:[Create Workspace] button on your landing page. -+ -image::landing-page.png[] - -. Alternatively, from the dashboard, navigate to the btn:[Workgroups] section and click on the btn:[Create Workgroup] or you can click on the image:plusbutton.png[width=50,height=50] button next to btn:[Workgroups]. -+ -image::no-workgroup.png[] - - -. Provide a name for the workgroup. -+ -[NOTE] -==== -Choose a name that reflects the purpose of your project or initiative. -==== -+ -image::create-workgroup.png[width=1500] -. Choose the cloud provider and the region -+ -[NOTE] -==== -TigerGraph Cloud 4 currently only operates on xref:cloud4:resources:aws.adoc[]. We are actively working on expanding to xref:cloud4:resources:gcp.adoc[] and xref:cloud4:resources:azure.adoc[]. Visit each platform's reference page to learn more about the available regions. -==== - -. Finally, click on the btn:[Next] button to create the workgroup. - -== Next Step - -Now, learn xref:cloud4:workgroup-workspace:workgroups/how2-workgroup-access.adoc[] or learn more about xref:cloud4:workgroup-workspace:workspaces/workspace.adoc[Workspaces and Databases]. - -Return to the xref:cloud4:workgroup-workspace:index.adoc[] page or xref:cloud4:overview:index.adoc[Overview] page for a different topic. - -//// -xref:cloud4:workgroup-workspace:workspaces/workspace.adoc[Workspaces and Databases, role=next-button] - -[.next-button] -xref:cloud4:workgroup-workspace:workspaces/workspace.adoc[Link Text] - -:next-button: pass:[xref:cloud4:workgroup-workspace:workspaces/workspace.adoc[Next]] -{next-button} - -++++ -Next -++++ -//// \ No newline at end of file diff --git a/modules/cloud4/modules/workgroup-workspace/pages/workgroups/workgroup.adoc b/modules/cloud4/modules/workgroup-workspace/pages/workgroups/workgroup.adoc deleted file mode 100644 index b4ff3f39..00000000 --- a/modules/cloud4/modules/workgroup-workspace/pages/workgroups/workgroup.adoc +++ /dev/null @@ -1,18 +0,0 @@ -= Workgroup Overview - -A workgroup represents a project or a logical group within TigerGraph Cloud 4. -It serves as a container that holds multiple xref:cloud4:workgroup-workspace:workspaces/workspace.adoc[Workspaces and Databases] related to a specific use case, team, or application. - -//image::defineworkgroupvsworkspace2.png[] - -image::defineworkgroupvsworkspace.png[width=500] - -[TIP] -Workgroups provide a way to organize and manage resources, access controls, and configurations for a particular project or initiative. - -== Next Step - -See xref:cloud4:workgroup-workspace:workgroups/how2-create-a-workgroup.adoc[] to get started. - -Return to the xref:cloud4:workgroup-workspace:index.adoc[] page or xref:cloud4:overview:index.adoc[Overview] page for a different topic. - diff --git a/modules/cloud4/antora.yml b/modules/savanna/antora.yml similarity index 88% rename from modules/cloud4/antora.yml rename to modules/savanna/antora.yml index b0636616..18a68462 100644 --- a/modules/cloud4/antora.yml +++ b/modules/savanna/antora.yml @@ -1,5 +1,5 @@ -name: cloud4 -title: TigerGraph Cloud 4 Beta +name: savanna +title: TigerGraph Savanna version: main display_version: default start_page: overview:index.adoc diff --git "a/modules/cloud4/modules/administration/images/Screenshot 2024-04-18 at 10.21.16\342\200\257AM.png" "b/modules/savanna/modules/administration/images/Screenshot 2024-04-18 at 10.21.16\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/administration/images/Screenshot 2024-04-18 at 10.21.16\342\200\257AM.png" rename to "modules/savanna/modules/administration/images/Screenshot 2024-04-18 at 10.21.16\342\200\257AM.png" diff --git "a/modules/cloud4/modules/administration/images/Screenshot 2024-04-18 at 10.22.57\342\200\257AM.png" "b/modules/savanna/modules/administration/images/Screenshot 2024-04-18 at 10.22.57\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/administration/images/Screenshot 2024-04-18 at 10.22.57\342\200\257AM.png" rename to "modules/savanna/modules/administration/images/Screenshot 2024-04-18 at 10.22.57\342\200\257AM.png" diff --git "a/modules/cloud4/modules/administration/images/Screenshot 2024-04-18 at 10.23.26\342\200\257AM.png" "b/modules/savanna/modules/administration/images/Screenshot 2024-04-18 at 10.23.26\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/administration/images/Screenshot 2024-04-18 at 10.23.26\342\200\257AM.png" rename to "modules/savanna/modules/administration/images/Screenshot 2024-04-18 at 10.23.26\342\200\257AM.png" diff --git "a/modules/cloud4/modules/administration/images/Screenshot 2024-04-28 at 12.11.56\342\200\257PM.png" "b/modules/savanna/modules/administration/images/Screenshot 2024-04-28 at 12.11.56\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/administration/images/Screenshot 2024-04-28 at 12.11.56\342\200\257PM.png" rename to "modules/savanna/modules/administration/images/Screenshot 2024-04-28 at 12.11.56\342\200\257PM.png" diff --git "a/modules/cloud4/modules/administration/images/Screenshot 2024-04-28 at 4.24.00\342\200\257PM.png" "b/modules/savanna/modules/administration/images/Screenshot 2024-04-28 at 4.24.00\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/administration/images/Screenshot 2024-04-28 at 4.24.00\342\200\257PM.png" rename to "modules/savanna/modules/administration/images/Screenshot 2024-04-28 at 4.24.00\342\200\257PM.png" diff --git "a/modules/cloud4/modules/administration/images/Screenshot 2024-04-28 at 4.26.18\342\200\257PM.png" "b/modules/savanna/modules/administration/images/Screenshot 2024-04-28 at 4.26.18\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/administration/images/Screenshot 2024-04-28 at 4.26.18\342\200\257PM.png" rename to "modules/savanna/modules/administration/images/Screenshot 2024-04-28 at 4.26.18\342\200\257PM.png" diff --git a/modules/cloud4/modules/administration/images/action-colum-options.png b/modules/savanna/modules/administration/images/action-colum-options.png similarity index 100% rename from modules/cloud4/modules/administration/images/action-colum-options.png rename to modules/savanna/modules/administration/images/action-colum-options.png diff --git a/modules/cloud4/modules/administration/images/add-creditcard.png b/modules/savanna/modules/administration/images/add-creditcard.png similarity index 100% rename from modules/cloud4/modules/administration/images/add-creditcard.png rename to modules/savanna/modules/administration/images/add-creditcard.png diff --git a/modules/cloud4/modules/administration/images/addemail.png b/modules/savanna/modules/administration/images/addemail.png similarity index 100% rename from modules/cloud4/modules/administration/images/addemail.png rename to modules/savanna/modules/administration/images/addemail.png diff --git a/modules/cloud4/modules/administration/images/adminleftnav.png b/modules/savanna/modules/administration/images/adminleftnav.png similarity index 100% rename from modules/cloud4/modules/administration/images/adminleftnav.png rename to modules/savanna/modules/administration/images/adminleftnav.png diff --git a/modules/cloud4/modules/administration/images/billing-homecard.png b/modules/savanna/modules/administration/images/billing-homecard.png similarity index 100% rename from modules/cloud4/modules/administration/images/billing-homecard.png rename to modules/savanna/modules/administration/images/billing-homecard.png diff --git a/modules/cloud4/modules/administration/images/billing-manager.png b/modules/savanna/modules/administration/images/billing-manager.png similarity index 100% rename from modules/cloud4/modules/administration/images/billing-manager.png rename to modules/savanna/modules/administration/images/billing-manager.png diff --git a/modules/cloud4/modules/administration/images/billing-nav.png b/modules/savanna/modules/administration/images/billing-nav.png similarity index 100% rename from modules/cloud4/modules/administration/images/billing-nav.png rename to modules/savanna/modules/administration/images/billing-nav.png diff --git a/modules/savanna/modules/administration/images/branding-example.png b/modules/savanna/modules/administration/images/branding-example.png new file mode 100644 index 00000000..73e85b7d Binary files /dev/null and b/modules/savanna/modules/administration/images/branding-example.png differ diff --git a/modules/cloud4/modules/administration/images/creaditcard-list.png b/modules/savanna/modules/administration/images/creaditcard-list.png similarity index 100% rename from modules/cloud4/modules/administration/images/creaditcard-list.png rename to modules/savanna/modules/administration/images/creaditcard-list.png diff --git a/modules/cloud4/modules/administration/images/creaditcardInfomration.png b/modules/savanna/modules/administration/images/creaditcardInfomration.png similarity index 100% rename from modules/cloud4/modules/administration/images/creaditcardInfomration.png rename to modules/savanna/modules/administration/images/creaditcardInfomration.png diff --git a/modules/cloud4/modules/administration/images/create-api-key.png b/modules/savanna/modules/administration/images/create-api-key.png similarity index 100% rename from modules/cloud4/modules/administration/images/create-api-key.png rename to modules/savanna/modules/administration/images/create-api-key.png diff --git a/modules/cloud4/modules/administration/images/create-organization.png b/modules/savanna/modules/administration/images/create-organization.png similarity index 100% rename from modules/cloud4/modules/administration/images/create-organization.png rename to modules/savanna/modules/administration/images/create-organization.png diff --git a/modules/cloud4/modules/administration/images/delete.png b/modules/savanna/modules/administration/images/delete.png similarity index 100% rename from modules/cloud4/modules/administration/images/delete.png rename to modules/savanna/modules/administration/images/delete.png diff --git a/modules/cloud4/modules/administration/images/deletecard.png b/modules/savanna/modules/administration/images/deletecard.png similarity index 100% rename from modules/cloud4/modules/administration/images/deletecard.png rename to modules/savanna/modules/administration/images/deletecard.png diff --git a/modules/cloud4/modules/administration/images/documentation-homecard.png b/modules/savanna/modules/administration/images/documentation-homecard.png similarity index 100% rename from modules/cloud4/modules/administration/images/documentation-homecard.png rename to modules/savanna/modules/administration/images/documentation-homecard.png diff --git a/modules/savanna/modules/administration/images/edit-org-setting.png b/modules/savanna/modules/administration/images/edit-org-setting.png new file mode 100644 index 00000000..46a4047c Binary files /dev/null and b/modules/savanna/modules/administration/images/edit-org-setting.png differ diff --git a/modules/cloud4/modules/administration/images/emailinlist.png b/modules/savanna/modules/administration/images/emailinlist.png similarity index 100% rename from modules/cloud4/modules/administration/images/emailinlist.png rename to modules/savanna/modules/administration/images/emailinlist.png diff --git a/modules/cloud4/modules/administration/images/getstarted-homecard.png b/modules/savanna/modules/administration/images/getstarted-homecard.png similarity index 100% rename from modules/cloud4/modules/administration/images/getstarted-homecard.png rename to modules/savanna/modules/administration/images/getstarted-homecard.png diff --git a/modules/cloud4/modules/administration/images/inviteUserupperffeatures.png b/modules/savanna/modules/administration/images/inviteUserupperffeatures.png similarity index 100% rename from modules/cloud4/modules/administration/images/inviteUserupperffeatures.png rename to modules/savanna/modules/administration/images/inviteUserupperffeatures.png diff --git a/modules/cloud4/modules/administration/images/invitepending.png b/modules/savanna/modules/administration/images/invitepending.png similarity index 100% rename from modules/cloud4/modules/administration/images/invitepending.png rename to modules/savanna/modules/administration/images/invitepending.png diff --git a/modules/cloud4/modules/administration/images/inviteuser-delete.png b/modules/savanna/modules/administration/images/inviteuser-delete.png similarity index 100% rename from modules/cloud4/modules/administration/images/inviteuser-delete.png rename to modules/savanna/modules/administration/images/inviteuser-delete.png diff --git a/modules/cloud4/modules/administration/images/inviteusers.png b/modules/savanna/modules/administration/images/inviteusers.png similarity index 100% rename from modules/cloud4/modules/administration/images/inviteusers.png rename to modules/savanna/modules/administration/images/inviteusers.png diff --git a/modules/cloud4/modules/administration/images/invoice-list.png b/modules/savanna/modules/administration/images/invoice-list.png similarity index 100% rename from modules/cloud4/modules/administration/images/invoice-list.png rename to modules/savanna/modules/administration/images/invoice-list.png diff --git a/modules/cloud4/modules/administration/images/mail again or delete.png b/modules/savanna/modules/administration/images/mail again or delete.png similarity index 100% rename from modules/cloud4/modules/administration/images/mail again or delete.png rename to modules/savanna/modules/administration/images/mail again or delete.png diff --git a/modules/cloud4/modules/administration/images/permissions-select a user.png b/modules/savanna/modules/administration/images/permissions-select a user.png similarity index 100% rename from modules/cloud4/modules/administration/images/permissions-select a user.png rename to modules/savanna/modules/administration/images/permissions-select a user.png diff --git a/modules/cloud4/modules/administration/images/permissions_saveorCancealchanges.png b/modules/savanna/modules/administration/images/permissions_saveorCancealchanges.png similarity index 100% rename from modules/cloud4/modules/administration/images/permissions_saveorCancealchanges.png rename to modules/savanna/modules/administration/images/permissions_saveorCancealchanges.png diff --git a/modules/cloud4/modules/administration/images/permissionschanges.png b/modules/savanna/modules/administration/images/permissionschanges.png similarity index 100% rename from modules/cloud4/modules/administration/images/permissionschanges.png rename to modules/savanna/modules/administration/images/permissionschanges.png diff --git a/modules/cloud4/modules/administration/images/referece-homecard.png b/modules/savanna/modules/administration/images/referece-homecard.png similarity index 100% rename from modules/cloud4/modules/administration/images/referece-homecard.png rename to modules/savanna/modules/administration/images/referece-homecard.png diff --git a/modules/cloud4/modules/administration/images/security-homecard.png b/modules/savanna/modules/administration/images/security-homecard.png similarity index 100% rename from modules/cloud4/modules/administration/images/security-homecard.png rename to modules/savanna/modules/administration/images/security-homecard.png diff --git a/modules/cloud4/modules/administration/images/sendinvite.png b/modules/savanna/modules/administration/images/sendinvite.png similarity index 100% rename from modules/cloud4/modules/administration/images/sendinvite.png rename to modules/savanna/modules/administration/images/sendinvite.png diff --git a/modules/cloud4/modules/administration/images/systemmanagment-homecard.png b/modules/savanna/modules/administration/images/systemmanagment-homecard.png similarity index 100% rename from modules/cloud4/modules/administration/images/systemmanagment-homecard.png rename to modules/savanna/modules/administration/images/systemmanagment-homecard.png diff --git a/modules/cloud4/modules/administration/images/tools-page.png b/modules/savanna/modules/administration/images/tools-page.png similarity index 100% rename from modules/cloud4/modules/administration/images/tools-page.png rename to modules/savanna/modules/administration/images/tools-page.png diff --git a/modules/cloud4/modules/administration/images/userlist.png b/modules/savanna/modules/administration/images/userlist.png similarity index 100% rename from modules/cloud4/modules/administration/images/userlist.png rename to modules/savanna/modules/administration/images/userlist.png diff --git a/modules/cloud4/modules/administration/nav.adoc b/modules/savanna/modules/administration/nav.adoc similarity index 100% rename from modules/cloud4/modules/administration/nav.adoc rename to modules/savanna/modules/administration/nav.adoc diff --git a/modules/cloud4/modules/administration/pages/billing/index.adoc b/modules/savanna/modules/administration/pages/billing/index.adoc similarity index 60% rename from modules/cloud4/modules/administration/pages/billing/index.adoc rename to modules/savanna/modules/administration/pages/billing/index.adoc index 6c30e3e5..e13cc760 100644 --- a/modules/cloud4/modules/administration/pages/billing/index.adoc +++ b/modules/savanna/modules/administration/pages/billing/index.adoc @@ -2,23 +2,23 @@ :experimental: The Billing Manager allows you to stay in control of your account, optimize resource usage, and manage costs effectively. -Understand the billing process and manage your subscription within TigerGraph Cloud 4 with the billing manager UI. +Understand the billing process and manage your subscription within TigerGraph Savanna with the billing manager UI. image::billing-manager.png[] Check out the links below to explore more billing information to utilize. -== xref:cloud4:administration:billing/payment-methods.adoc[] +== xref:savanna:administration:billing/payment-methods.adoc[] Learn how you can manage payment methods. -== xref:cloud4:administration:billing/invoices.adoc[] +== xref:savanna:administration:billing/invoices.adoc[] Learn how to view and export invoices. -== xref:cloud4:overview:pricing.adoc[] +== xref:savanna:overview:pricing.adoc[] -Here you can review pricing information in TigerGraph Cloud 4. +Here you can review pricing information in TigerGraph Savanna. diff --git a/modules/cloud4/modules/administration/pages/billing/invoices.adoc b/modules/savanna/modules/administration/pages/billing/invoices.adoc similarity index 72% rename from modules/cloud4/modules/administration/pages/billing/invoices.adoc rename to modules/savanna/modules/administration/pages/billing/invoices.adoc index 07741684..aa6003a6 100644 --- a/modules/cloud4/modules/administration/pages/billing/invoices.adoc +++ b/modules/savanna/modules/administration/pages/billing/invoices.adoc @@ -1,7 +1,7 @@ = Invoices :experimental: -Here TigerGraph Cloud 4 users can check, reference, and export their invoice information. +Here TigerGraph Savanna users can check, reference, and export their invoice information. == View and Export an Invoice @@ -25,7 +25,7 @@ image::invoice-list.png[] == Next Steps -Next, learn about other billing topics on the xref:cloud4:administration:billing/index.adoc[] page or check out the xref:resources:index.adoc[] section. +Next, learn about other billing topics on the xref:savanna:administration:billing/index.adoc[] page or check out the xref:resources:index.adoc[] section. -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/administration/pages/billing/payment-methods.adoc b/modules/savanna/modules/administration/pages/billing/payment-methods.adoc similarity index 80% rename from modules/cloud4/modules/administration/pages/billing/payment-methods.adoc rename to modules/savanna/modules/administration/pages/billing/payment-methods.adoc index 2739e543..cf8617ed 100644 --- a/modules/cloud4/modules/administration/pages/billing/payment-methods.adoc +++ b/modules/savanna/modules/administration/pages/billing/payment-methods.adoc @@ -35,6 +35,6 @@ image::deletecard.png[] == Next Steps -Next, learn about other billing topics on the xref:cloud4:administration:billing/index.adoc[] page or check out the xref:resources:index.adoc[] section. +Next, learn about other billing topics on the xref:savanna:administration:billing/index.adoc[] page or check out the xref:resources:index.adoc[] section. -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/administration/pages/billing/storage_price.adoc b/modules/savanna/modules/administration/pages/billing/storage_price.adoc similarity index 100% rename from modules/cloud4/modules/administration/pages/billing/storage_price.adoc rename to modules/savanna/modules/administration/pages/billing/storage_price.adoc diff --git a/modules/cloud4/modules/administration/pages/how2-access-mgnt.adoc b/modules/savanna/modules/administration/pages/how2-access-mgnt.adoc similarity index 84% rename from modules/cloud4/modules/administration/pages/how2-access-mgnt.adoc rename to modules/savanna/modules/administration/pages/how2-access-mgnt.adoc index f186616f..78eb13cc 100644 --- a/modules/cloud4/modules/administration/pages/how2-access-mgnt.adoc +++ b/modules/savanna/modules/administration/pages/how2-access-mgnt.adoc @@ -2,11 +2,11 @@ :experimental: As an organization administrator, you can define permissions for users, controlling their level of access to workspaces, workgroup and features. This allows you to ensure data security and enforce access control policies within your organization. -In TigerGraph Cloud 4, access management allows you to configure permissions at both the *Resource* level and the *User* level. +In TigerGraph Savanna, access management allows you to configure permissions at both the *Resource* level and the *User* level. == Resource Level -At the resource level, you can configure permissions that apply to specific workspaces within your TigerGraph Cloud organization. +At the resource level, you can configure permissions that apply to specific workspaces within your TigerGraph Savanna organization. Resource-level permissions determine what actions a user can perform on a specific resource. [TIP] @@ -14,11 +14,11 @@ Resource-level permissions determine what actions a user can perform on a specif These permissions allow you to control access to individual resources based on the needs and responsibilities of different users. ==== -You can go to xref:cloud4:workgroup-workspace:workgroups/how2-workgroup-access.adoc[] to manage access at the resource level. +You can go to xref:savanna:workgroup-workspace:workgroups/how2-workgroup-access.adoc[] to manage access at the resource level. == User Level Permission At the user level, you can define permissions that apply to individual users or groups of users. -User-level permissions determine what actions a user can perform across your entire TigerGraph Cloud 4 organization. +User-level permissions determine what actions a user can perform across your entire TigerGraph Savanna organization. [TIP] ==== @@ -239,7 +239,7 @@ Please refer to the following tables of the roles and permissions for the organi == Next Steps -Next, learn about xref:cloud4:administration:settings/how2-use-organization-mgnt.adoc[] -or continue on to learn about xref:cloud4:administration:security/index.adoc[] or additional xref:cloud4:resources:index.adoc[] in TigerGraph Cloud 4. +Next, learn about xref:savanna:administration:settings/how2-use-organization-mgnt.adoc[] +or continue on to learn about xref:savanna:administration:security/index.adoc[] or additional xref:savanna:resources:index.adoc[] in TigerGraph Savanna. -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/administration/pages/how2-invite-users.adoc b/modules/savanna/modules/administration/pages/how2-invite-users.adoc similarity index 87% rename from modules/cloud4/modules/administration/pages/how2-invite-users.adoc rename to modules/savanna/modules/administration/pages/how2-invite-users.adoc index e00e9379..9544d3bc 100644 --- a/modules/cloud4/modules/administration/pages/how2-invite-users.adoc +++ b/modules/savanna/modules/administration/pages/how2-invite-users.adoc @@ -1,7 +1,7 @@ = Invite Users :experimental: -When you set up a TigerGraph Cloud 4 account, you are granted the privileges of an Organization Admin for your organization. +When you set up a TigerGraph Savanna account, you are granted the privileges of an Organization Admin for your organization. An Organization Admin can manage multiple users in your organization and control their access to various resources. [NOTE] @@ -77,7 +77,7 @@ Select btn:[Cancel] or btn:[OK] to confirm. == Next Steps -Next, learn about xref:cloud4:administration:how2-access-mgnt.adoc[] -or continue on to learn about xref:cloud4:administration:security/index.adoc[] or additional xref:cloud4:resources:index.adoc[] in TigerGraph Cloud 4. +Next, learn about xref:savanna:administration:how2-access-mgnt.adoc[] +or continue on to learn about xref:savanna:administration:security/index.adoc[] or additional xref:savanna:resources:index.adoc[] in TigerGraph Savanna. -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/savanna/modules/administration/pages/index.adoc b/modules/savanna/modules/administration/pages/index.adoc new file mode 100644 index 00000000..3fd5a455 --- /dev/null +++ b/modules/savanna/modules/administration/pages/index.adoc @@ -0,0 +1,26 @@ += Administration Overview +:experimental: + +Here you can learn about the tools available for organizational administrators. + +== xref:savanna:administration:how2-invite-users.adoc[] + +Learn how to invite new users to your organizations. + +== xref:savanna:administration:how2-access-mgnt.adoc[] + +Learn how to manage access to workspaces and resources within TigerGraph Savanna. + +== xref:savanna:administration:settings/how2-use-organization-mgnt.adoc[] + +Learn about the organization management features that allow you to configure organization settings. + +== xref:savanna:administration:settings/how2-create-api-key.adoc[] + +Learn how to create API keys for your organization. + +== Next Steps + +Next, learn about xref:savanna:administration:security/index.adoc[] or additional xref:savanna:resources:index.adoc[] in TigerGraph Savanna. + +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/administration/pages/security/idp.adoc b/modules/savanna/modules/administration/pages/security/idp.adoc similarity index 67% rename from modules/cloud4/modules/administration/pages/security/idp.adoc rename to modules/savanna/modules/administration/pages/security/idp.adoc index c517ffa8..58701aa5 100644 --- a/modules/cloud4/modules/administration/pages/security/idp.adoc +++ b/modules/savanna/modules/administration/pages/security/idp.adoc @@ -1,9 +1,9 @@ = IDP integration with SSO //// -By default, user management in a TigerGraph Cloud organization happens in the xref:manage-org-users.adoc[] section of the TigerGraph Cloud interface. +By default, user management in a TigerGraph Savanna organization happens in the xref:manage-org-users.adoc[] section of the TigerGraph Savanna interface. -If you have another preferred identity provider (IDP), you can integrate with it instead using SAML 2.0 to handle your user management needs outside of TigerGraph Cloud. +If you have another preferred identity provider (IDP), you can integrate with it instead using SAML 2.0 to handle your user management needs outside of TigerGraph Savanna. //// IDP integration is currently available at the Organization level, so one IDP will handle user management for all clusters in that organization. @@ -11,9 +11,9 @@ Only one IDP can be connected to a single Organization. == Process Outline -. Have IDP enabled on your TigerGraph Cloud Organization account. -. Create an app integration on the IDP side to configure it to link with TigerGraph Cloud. -. Users log in to the TigerGraph Cloud portal using credentials from your IDP. +. Have IDP enabled on your TigerGraph Savanna Organization account. +. Create an app integration on the IDP side to configure it to link with TigerGraph Savanna. +. Users log in to the TigerGraph Savanna portal using credentials from your IDP. . Organization Admins assign roles to the users being created in the cloud organization via successful login from the IDP. == Setup diff --git a/modules/savanna/modules/administration/pages/security/index.adoc b/modules/savanna/modules/administration/pages/security/index.adoc new file mode 100644 index 00000000..ee3d5c54 --- /dev/null +++ b/modules/savanna/modules/administration/pages/security/index.adoc @@ -0,0 +1,15 @@ += Security +:experimental: + + +Here you can learn different security practices and policies in TigerGraph Savanna. + + +== xref:savanna:administration:security/password-policy.adoc[] + +Learn and understand the password policy in TigerGraph Savanna. + + +== xref:savanna:administration:security/idp.adoc[] + +Learn and understand IDP intergration with SSO password policy in TigerGraph Savanna. diff --git a/modules/cloud4/modules/administration/pages/security/password-policy.adoc b/modules/savanna/modules/administration/pages/security/password-policy.adoc similarity index 68% rename from modules/cloud4/modules/administration/pages/security/password-policy.adoc rename to modules/savanna/modules/administration/pages/security/password-policy.adoc index 8a822e7b..4676bb60 100644 --- a/modules/cloud4/modules/administration/pages/security/password-policy.adoc +++ b/modules/savanna/modules/administration/pages/security/password-policy.adoc @@ -1,7 +1,7 @@ = Password Policy :experimental: -TigerGraph Cloud user accounts have their own password requirements separate from the xref:tigergraph-server:security:password-policy.adoc[TigerGraph Server password policy]. +TigerGraph Savanna user accounts have their own password requirements separate from the xref:tigergraph-server:security:password-policy.adoc[TigerGraph Server password policy]. No empty passwords are permitted. Each password must be at least 12 characters long and include at least one of the following: @@ -11,7 +11,7 @@ No empty passwords are permitted. Each password must be at least 12 characters l * A digit `0-9` [NOTE] -This TigerGraph Cloud password policy cannot be changed by users. +This TigerGraph Savanna password policy cannot be changed by users. Organization Admins do not have access to change or reset user passwords in an Organization account. If you forget your password, click the btn:[Forgot Password?] button during login, or contact support@tigergraph.com for assistance. \ No newline at end of file diff --git a/modules/cloud4/modules/administration/pages/settings/how2-create-api-key.adoc b/modules/savanna/modules/administration/pages/settings/how2-create-api-key.adoc similarity index 76% rename from modules/cloud4/modules/administration/pages/settings/how2-create-api-key.adoc rename to modules/savanna/modules/administration/pages/settings/how2-create-api-key.adoc index 3b757814..fd2f7e04 100644 --- a/modules/cloud4/modules/administration/pages/settings/how2-create-api-key.adoc +++ b/modules/savanna/modules/administration/pages/settings/how2-create-api-key.adoc @@ -5,12 +5,12 @@ As an organization administrator, you have access to organization management fea [IMPORTANT] ==== -The TigerGraph Cloud 4 REST API is currently in preview version. Features and endpoints may change as the API evolves. +The TigerGraph Savanna REST API is currently in preview version. Features and endpoints may change as the API evolves. ==== == Overview -API keys are essential for authenticating and securing access to the TigerGraph Cloud REST API. This guide will walk you through the steps to create, configure, and manage your API keys. +API keys are essential for authenticating and securing access to the TigerGraph Savanna REST API. This guide will walk you through the steps to create, configure, and manage your API keys. == Creating an API Key @@ -41,8 +41,8 @@ Treat your API key like a password. Do not share it or expose it in your code or == Next Steps -Next, continue on to learn about xref:cloud4:rest-api:authentication.adoc[] or xref:cloud4:rest-api:endpoints.adoc[] in TigerGraph Cloud 4. +Next, continue on to learn about xref:savanna:rest-api:authentication.adoc[] or xref:savanna:rest-api:endpoints.adoc[] in TigerGraph Savanna. -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/administration/pages/settings/how2-use-organization-mgnt.adoc b/modules/savanna/modules/administration/pages/settings/how2-use-organization-mgnt.adoc similarity index 66% rename from modules/cloud4/modules/administration/pages/settings/how2-use-organization-mgnt.adoc rename to modules/savanna/modules/administration/pages/settings/how2-use-organization-mgnt.adoc index 0a4ddab5..e4a09c2c 100644 --- a/modules/cloud4/modules/administration/pages/settings/how2-use-organization-mgnt.adoc +++ b/modules/savanna/modules/administration/pages/settings/how2-use-organization-mgnt.adoc @@ -8,34 +8,34 @@ As an organization administrator, you have access to organization management fea .To make organization settings changes: . Navigate to the btn:[Setting] tag + -image::Screenshot 2024-04-18 at 10.23.26 AM.png[width=300] +image::branding-example.png[width=300] . Once clicked, the btn:[Organization Setting] panel will display the btn:[Basic Information] used with each organization. + -image::Screenshot 2024-04-18 at 10.22.57 AM.png[] +image::edit-org-setting.png[] + .Here you will find the basic information to set up a new organization. -* *Organization Name*: The name of your organization within TigerGraph Cloud. +* *Organization Name*: The name of your organization within TigerGraph Savanna. This is a unique identifier for your organization and is used for administrative purposes. * *Display Name*: The display name is the name that will be shown in the user interface and other user-facing areas. It can be a more user-friendly or descriptive name compared to the organization name. + [TIP] ==== -The display name helps users easily identify your organization within TigerGraph Cloud. +The display name helps users easily identify your organization within TigerGraph Savanna. ==== * *Organization Logo URL*: The URL to the logo image file for your organization. -This logo will be displayed in the TigerGraph Cloud navigation bar and can be used to represent your organization visually. +This logo will be displayed in the TigerGraph Savanna navigation bar and can be used to represent your organization visually. + [TIP] ==== -Providing a logo adds a professional touch and helps users quickly recognize your organization within TigerGraph Cloud. +Providing a logo adds a professional touch and helps users quickly recognize your organization within TigerGraph Savanna. ==== == Next Steps -Next, continue on to learn about xref:cloud4:administration:security/index.adoc[] or additional xref:cloud4:resources:index.adoc[] in TigerGraph Cloud 4. +Next, continue on to learn about xref:savanna:administration:security/index.adoc[] or additional xref:savanna:resources:index.adoc[] in TigerGraph Savanna. -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/savanna/modules/administration/pages/settings/index.adoc b/modules/savanna/modules/administration/pages/settings/index.adoc new file mode 100644 index 00000000..be5367f1 --- /dev/null +++ b/modules/savanna/modules/administration/pages/settings/index.adoc @@ -0,0 +1,18 @@ += Administrative Settings Overview +:experimental: + +Here you can learn about the configurations for an organization. + +== xref:savanna:administration:settings/how2-use-organization-mgnt.adoc[] + +Learn about the organization management features that allow you to configure organization settings. + +== xref:savanna:administration:settings/how2-create-api-key.adoc[] + +Learn how to create API keys for your organization. + +== Next Steps + +Next, learn about xref:savanna:administration:security/index.adoc[] or additional xref:savanna:resources:index.adoc[] in TigerGraph Savanna. + +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/get-started/images/billing-homecard.png b/modules/savanna/modules/get-started/images/billing-homecard.png similarity index 100% rename from modules/cloud4/modules/get-started/images/billing-homecard.png rename to modules/savanna/modules/get-started/images/billing-homecard.png diff --git a/modules/cloud4/modules/get-started/images/create-organization.png b/modules/savanna/modules/get-started/images/create-organization.png similarity index 100% rename from modules/cloud4/modules/get-started/images/create-organization.png rename to modules/savanna/modules/get-started/images/create-organization.png diff --git a/modules/cloud4/modules/get-started/images/documentation-homecard.png b/modules/savanna/modules/get-started/images/documentation-homecard.png similarity index 100% rename from modules/cloud4/modules/get-started/images/documentation-homecard.png rename to modules/savanna/modules/get-started/images/documentation-homecard.png diff --git a/modules/cloud4/modules/get-started/images/getstarted-homecard.png b/modules/savanna/modules/get-started/images/getstarted-homecard.png similarity index 100% rename from modules/cloud4/modules/get-started/images/getstarted-homecard.png rename to modules/savanna/modules/get-started/images/getstarted-homecard.png diff --git a/modules/cloud4/modules/get-started/images/loginPage.png b/modules/savanna/modules/get-started/images/loginPage.png similarity index 100% rename from modules/cloud4/modules/get-started/images/loginPage.png rename to modules/savanna/modules/get-started/images/loginPage.png diff --git a/modules/cloud4/modules/get-started/images/orgLogin.png b/modules/savanna/modules/get-started/images/orgLogin.png similarity index 100% rename from modules/cloud4/modules/get-started/images/orgLogin.png rename to modules/savanna/modules/get-started/images/orgLogin.png diff --git a/modules/savanna/modules/get-started/images/orglogin-1.png b/modules/savanna/modules/get-started/images/orglogin-1.png new file mode 100644 index 00000000..8dc96655 Binary files /dev/null and b/modules/savanna/modules/get-started/images/orglogin-1.png differ diff --git a/modules/cloud4/modules/get-started/images/referece-homecard.png b/modules/savanna/modules/get-started/images/referece-homecard.png similarity index 100% rename from modules/cloud4/modules/get-started/images/referece-homecard.png rename to modules/savanna/modules/get-started/images/referece-homecard.png diff --git a/modules/cloud4/modules/get-started/images/security-homecard.png b/modules/savanna/modules/get-started/images/security-homecard.png similarity index 100% rename from modules/cloud4/modules/get-started/images/security-homecard.png rename to modules/savanna/modules/get-started/images/security-homecard.png diff --git a/modules/savanna/modules/get-started/images/signup.png b/modules/savanna/modules/get-started/images/signup.png new file mode 100644 index 00000000..f7be3bfe Binary files /dev/null and b/modules/savanna/modules/get-started/images/signup.png differ diff --git a/modules/cloud4/modules/get-started/images/systemmanagment-homecard.png b/modules/savanna/modules/get-started/images/systemmanagment-homecard.png similarity index 100% rename from modules/cloud4/modules/get-started/images/systemmanagment-homecard.png rename to modules/savanna/modules/get-started/images/systemmanagment-homecard.png diff --git a/modules/cloud4/modules/get-started/images/tools-page.png b/modules/savanna/modules/get-started/images/tools-page.png similarity index 100% rename from modules/cloud4/modules/get-started/images/tools-page.png rename to modules/savanna/modules/get-started/images/tools-page.png diff --git a/modules/cloud4/modules/get-started/nav.adoc b/modules/savanna/modules/get-started/nav.adoc similarity index 100% rename from modules/cloud4/modules/get-started/nav.adoc rename to modules/savanna/modules/get-started/nav.adoc diff --git a/modules/cloud4/modules/get-started/pages/how2-login.adoc b/modules/savanna/modules/get-started/pages/how2-login.adoc similarity index 61% rename from modules/cloud4/modules/get-started/pages/how2-login.adoc rename to modules/savanna/modules/get-started/pages/how2-login.adoc index a76b76ae..4f13d132 100644 --- a/modules/cloud4/modules/get-started/pages/how2-login.adoc +++ b/modules/savanna/modules/get-started/pages/how2-login.adoc @@ -1,7 +1,7 @@ = How to Log In :experimental: -After first xref:get-started:how2-signup.adoc[signing up] or being xref:cloud4:administration:how2-invite-users.adoc[invited by your organization], users must btn:[Log In]. +After first xref:get-started:how2-signup.adoc[signing up] or being xref:savanna:administration:how2-invite-users.adoc[invited by your organization], users must btn:[Log In]. This guide will walk you through the necessary steps. == Log In @@ -10,8 +10,8 @@ There are two ways to log in, through your account you created through signing u === 1) Your Account -If you click btn:[Log In] on the https://portal.tgcloud.io[TigerGraph Cloud 4 landing page]. -TigerGraph Cloud 4 supports users to log in via Google, LinkedIn, or via a username/password. +If you click btn:[Log In] on the https://tgcloud.io[TigerGraph Savanna landing page]. +TigerGraph Savanna supports users to log in via Google, LinkedIn, or via a username/password. [TIP] ==== @@ -35,6 +35,6 @@ image::orglogin-1.png[width=450] == Next Steps -Once logged in, learn more about xref:cloud4:workgroup-workspace:index.adoc[] or jump right into creating a xref:workgroup-workspace:workgroups/workgroup.adoc[Workgroup] and xref:workgroup-workspace:workspaces/workspace.adoc[Workspaces]. +Once logged in, learn more about xref:savanna:workgroup-workspace:index.adoc[] or jump right into creating a xref:workgroup-workspace:workgroups/workgroup.adoc[Workgroup] and xref:workgroup-workspace:workspaces/workspace.adoc[Workspaces]. -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/get-started/pages/how2-signup.adoc b/modules/savanna/modules/get-started/pages/how2-signup.adoc similarity index 50% rename from modules/cloud4/modules/get-started/pages/how2-signup.adoc rename to modules/savanna/modules/get-started/pages/how2-signup.adoc index 498ccae7..bfc13f31 100644 --- a/modules/cloud4/modules/get-started/pages/how2-signup.adoc +++ b/modules/savanna/modules/get-started/pages/how2-signup.adoc @@ -1,33 +1,33 @@ = How to Sign Up :experimental: -In order to use TigerGraph Cloud 4, users must first btn:[Sign Up]. +In order to use TigerGraph Savanna, users must first btn:[Sign Up]. This guide will walk you through the necessary steps. == Sign Up -. Click btn:[Sign Up] https://portal.tgcloud.io[on the TigerGraph Cloud 4 landing page]. +. Click btn:[Sign Up] https://tgcloud.io[on the TigerGraph Savanna landing page]. + image::signup.png[width=450] . If you are signing up for the first time using username and password registration, you will be prompted to enter a password. + [CAUTION] -Please refer to our xref:cloud4:administration:security/password-policy.adoc[] that applies to TigerGraph Cloud 4. +Please refer to our xref:savanna:administration:security/password-policy.adoc[] that applies to TigerGraph Savanna. -. When registering for a new TigerGraph Cloud 4 account, we will ask to confirm your email address. +. When registering for a new TigerGraph Savanna account, we will ask to confirm your email address. btn:[ Click ] the link in your email to verify, then log in using your username and password. + [NOTE] ==== We automatically create a new organization for you. -You can update your organization on the xref:cloud4:administration:settings/how2-use-organization-mgnt.adoc[] page. +You can update your organization on the xref:savanna:administration:settings/how2-use-organization-mgnt.adoc[] page. ==== == Next Steps -The next step is to xref:how2-login.adoc[Log in] your new TigerGraph Cloud 4. +The next step is to xref:how2-login.adoc[Log in] your new TigerGraph Savanna. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/savanna/modules/get-started/pages/index.adoc b/modules/savanna/modules/get-started/pages/index.adoc new file mode 100644 index 00000000..d184c757 --- /dev/null +++ b/modules/savanna/modules/get-started/pages/index.adoc @@ -0,0 +1,25 @@ += Get Started with TigerGraph Savanna +:experimental: + +To get started with TigerGraph Savanna, users must first Sign Up and Log In. +These guides will walk you through the necessary steps. + +== xref:how2-signup.adoc[] + +Learn how to create a TigerGraph Savanna Cloud account and get access to the platform. + +== xref:how2-login.adoc[] + +Learn how to log in to your TigerGraph Savanna Cloud account. + +== Next Steps + +Once logged in, learn more about xref:savanna:workgroup-workspace:index.adoc[] or jump right into creating a xref:workgroup-workspace:workgroups/workgroup.adoc[Workgroup] and xref:workgroup-workspace:workspaces/workspace.adoc[Workspaces]. + +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. + + + + + + diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.47.58\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.47.58\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.47.58\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.47.58\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.48.20\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.48.20\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.48.20\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.48.20\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.49.07\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.49.07\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.49.07\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.49.07\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.52.21\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.52.21\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.52.21\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.52.21\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.53.05\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.53.05\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.53.05\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.53.05\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.53.45\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.53.45\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.53.45\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.53.45\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.54.17\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.54.17\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.54.17\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.54.17\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.54.50\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.54.50\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.54.50\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.54.50\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.55.35\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.55.35\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.55.35\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.55.35\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.56.15\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.56.15\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.56.15\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.56.15\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.57.07\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.57.07\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.57.07\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.57.07\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.57.52\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.57.52\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.57.52\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.57.52\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.58.36\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.58.36\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.58.36\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.58.36\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.59.16\342\200\257PM-old.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.59.16\342\200\257PM-old.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.59.16\342\200\257PM-old.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.59.16\342\200\257PM-old.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.59.16\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.59.16\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 5.59.16\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 5.59.16\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.33.43\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.33.43\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.33.43\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.33.43\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.34.37\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.34.37\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.34.37\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.34.37\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.35.28\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.35.28\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.35.28\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.35.28\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.38.22\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.38.22\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.38.22\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.38.22\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.38.43\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.38.43\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.38.43\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.38.43\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.39.38\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.39.38\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.39.38\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.39.38\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.43.30\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.43.30\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 7.43.30\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 7.43.30\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.36.27\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.36.27\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.36.27\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.36.27\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.36.58\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.36.58\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.36.58\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.36.58\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.37.32\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.37.32\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.37.32\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.37.32\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.38.14\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.38.14\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.38.14\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.38.14\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.38.37\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.38.37\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.38.37\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.38.37\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.39.01\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.39.01\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.39.01\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.39.01\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.39.54\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.39.54\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.39.54\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.39.54\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.40.31\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.40.31\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.40.31\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.40.31\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.41.05\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.41.05\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.41.05\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.41.05\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.41.53\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.41.53\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-17 at 9.41.53\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-17 at 9.41.53\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.04.32\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.04.32\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.04.32\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.04.32\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.05.54\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.05.54\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.05.54\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.05.54\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.06.17\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.06.17\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.06.17\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.06.17\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.06.37\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.06.37\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.06.37\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.06.37\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.07.17\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.07.17\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.07.17\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.07.17\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.07.50\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.07.50\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.07.50\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.07.50\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.08.25\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.08.25\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.08.25\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.08.25\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.08.58\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.08.58\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.08.58\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.08.58\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.09.33\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.09.33\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.09.33\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.09.33\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.10.18\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.10.18\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.10.18\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.10.18\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.10.47\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.10.47\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.10.47\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.10.47\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.11.14\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.11.14\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.11.14\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.11.14\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.12.15\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.12.15\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.12.15\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.12.15\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.12.40\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.12.40\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.12.40\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.12.40\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.13.20\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.13.20\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.13.20\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.13.20\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.13.47\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.13.47\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.13.47\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.13.47\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.14.24\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.14.24\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.14.24\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.14.24\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.14.54\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.14.54\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.14.54\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.14.54\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.15.25\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.15.25\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-18 at 10.15.25\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-18 at 10.15.25\342\200\257AM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-23 at 10.05.36\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-23 at 10.05.36\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-23 at 10.05.36\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-23 at 10.05.36\342\200\257PM.png" diff --git a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-25 at 12.31.39 (1).png b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-25 at 12.31.39 (1).png similarity index 100% rename from modules/cloud4/modules/graph-development/images/Screenshot 2024-04-25 at 12.31.39 (1).png rename to modules/savanna/modules/graph-development/images/Screenshot 2024-04-25 at 12.31.39 (1).png diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-25 at 7.29.08\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-25 at 7.29.08\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-25 at 7.29.08\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-25 at 7.29.08\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-25 at 7.30.16\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-25 at 7.30.16\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-25 at 7.30.16\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-25 at 7.30.16\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-25 at 7.30.54\342\200\257PM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-25 at 7.30.54\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-25 at 7.30.54\342\200\257PM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-25 at 7.30.54\342\200\257PM.png" diff --git "a/modules/cloud4/modules/graph-development/images/Screenshot 2024-04-26 at 8.22.55\342\200\257AM.png" "b/modules/savanna/modules/graph-development/images/Screenshot 2024-04-26 at 8.22.55\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/graph-development/images/Screenshot 2024-04-26 at 8.22.55\342\200\257AM.png" rename to "modules/savanna/modules/graph-development/images/Screenshot 2024-04-26 at 8.22.55\342\200\257AM.png" diff --git a/modules/cloud4/modules/graph-development/images/Screenshot 2024-10-11 at 10.59.49.png b/modules/savanna/modules/graph-development/images/Screenshot 2024-10-11 at 10.59.49.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/Screenshot 2024-10-11 at 10.59.49.png rename to modules/savanna/modules/graph-development/images/Screenshot 2024-10-11 at 10.59.49.png diff --git a/modules/cloud4/modules/graph-development/images/Screenshot 2024-10-11 at 11.39.23.png b/modules/savanna/modules/graph-development/images/Screenshot 2024-10-11 at 11.39.23.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/Screenshot 2024-10-11 at 11.39.23.png rename to modules/savanna/modules/graph-development/images/Screenshot 2024-10-11 at 11.39.23.png diff --git a/modules/cloud4/modules/graph-development/images/abs-connection-details.png b/modules/savanna/modules/graph-development/images/abs-connection-details.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/abs-connection-details.png rename to modules/savanna/modules/graph-development/images/abs-connection-details.png diff --git a/modules/cloud4/modules/graph-development/images/add-query.png b/modules/savanna/modules/graph-development/images/add-query.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/add-query.png rename to modules/savanna/modules/graph-development/images/add-query.png diff --git a/modules/cloud4/modules/graph-development/images/addfilter.png b/modules/savanna/modules/graph-development/images/addfilter.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/addfilter.png rename to modules/savanna/modules/graph-development/images/addfilter.png diff --git a/modules/cloud4/modules/graph-development/images/advanced-settings-2.png b/modules/savanna/modules/graph-development/images/advanced-settings-2.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/advanced-settings-2.png rename to modules/savanna/modules/graph-development/images/advanced-settings-2.png diff --git a/modules/cloud4/modules/graph-development/images/advanced-settings.png b/modules/savanna/modules/graph-development/images/advanced-settings.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/advanced-settings.png rename to modules/savanna/modules/graph-development/images/advanced-settings.png diff --git a/modules/cloud4/modules/graph-development/images/attributes.png b/modules/savanna/modules/graph-development/images/attributes.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/attributes.png rename to modules/savanna/modules/graph-development/images/attributes.png diff --git a/modules/cloud4/modules/graph-development/images/billing-homecard.png b/modules/savanna/modules/graph-development/images/billing-homecard.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/billing-homecard.png rename to modules/savanna/modules/graph-development/images/billing-homecard.png diff --git a/modules/cloud4/modules/graph-development/images/bottom.png b/modules/savanna/modules/graph-development/images/bottom.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/bottom.png rename to modules/savanna/modules/graph-development/images/bottom.png diff --git a/modules/cloud4/modules/graph-development/images/config-file.png b/modules/savanna/modules/graph-development/images/config-file.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/config-file.png rename to modules/savanna/modules/graph-development/images/config-file.png diff --git a/modules/cloud4/modules/graph-development/images/config-mapping-1.png b/modules/savanna/modules/graph-development/images/config-mapping-1.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/config-mapping-1.png rename to modules/savanna/modules/graph-development/images/config-mapping-1.png diff --git a/modules/cloud4/modules/graph-development/images/config-mapping-2.png b/modules/savanna/modules/graph-development/images/config-mapping-2.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/config-mapping-2.png rename to modules/savanna/modules/graph-development/images/config-mapping-2.png diff --git a/modules/savanna/modules/graph-development/images/config-mapping-snowflake-1.png b/modules/savanna/modules/graph-development/images/config-mapping-snowflake-1.png new file mode 100644 index 00000000..bbaca09b Binary files /dev/null and b/modules/savanna/modules/graph-development/images/config-mapping-snowflake-1.png differ diff --git a/modules/cloud4/modules/graph-development/images/config-s3.png b/modules/savanna/modules/graph-development/images/config-s3.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/config-s3.png rename to modules/savanna/modules/graph-development/images/config-s3.png diff --git a/modules/cloud4/modules/graph-development/images/config-udf.png b/modules/savanna/modules/graph-development/images/config-udf.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/config-udf.png rename to modules/savanna/modules/graph-development/images/config-udf.png diff --git a/modules/savanna/modules/graph-development/images/confirm-snowflake.png b/modules/savanna/modules/graph-development/images/confirm-snowflake.png new file mode 100644 index 00000000..2bf835d8 Binary files /dev/null and b/modules/savanna/modules/graph-development/images/confirm-snowflake.png differ diff --git a/modules/cloud4/modules/graph-development/images/confirm.png b/modules/savanna/modules/graph-development/images/confirm.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/confirm.png rename to modules/savanna/modules/graph-development/images/confirm.png diff --git a/modules/cloud4/modules/graph-development/images/create-organization.png b/modules/savanna/modules/graph-development/images/create-organization.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/create-organization.png rename to modules/savanna/modules/graph-development/images/create-organization.png diff --git a/modules/savanna/modules/graph-development/images/data-sources.png b/modules/savanna/modules/graph-development/images/data-sources.png new file mode 100644 index 00000000..27ba0905 Binary files /dev/null and b/modules/savanna/modules/graph-development/images/data-sources.png differ diff --git a/modules/cloud4/modules/graph-development/images/design-schema.png b/modules/savanna/modules/graph-development/images/design-schema.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/design-schema.png rename to modules/savanna/modules/graph-development/images/design-schema.png diff --git a/modules/cloud4/modules/graph-development/images/documentation-homecard.png b/modules/savanna/modules/graph-development/images/documentation-homecard.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/documentation-homecard.png rename to modules/savanna/modules/graph-development/images/documentation-homecard.png diff --git a/modules/cloud4/modules/graph-development/images/gcs-data-source-details.png b/modules/savanna/modules/graph-development/images/gcs-data-source-details.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/gcs-data-source-details.png rename to modules/savanna/modules/graph-development/images/gcs-data-source-details.png diff --git a/modules/cloud4/modules/graph-development/images/gcs-empty-data-source.png b/modules/savanna/modules/graph-development/images/gcs-empty-data-source.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/gcs-empty-data-source.png rename to modules/savanna/modules/graph-development/images/gcs-empty-data-source.png diff --git a/modules/cloud4/modules/graph-development/images/getstarted-homecard.png b/modules/savanna/modules/graph-development/images/getstarted-homecard.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/getstarted-homecard.png rename to modules/savanna/modules/graph-development/images/getstarted-homecard.png diff --git a/modules/cloud4/modules/graph-development/images/graph.png b/modules/savanna/modules/graph-development/images/graph.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/graph.png rename to modules/savanna/modules/graph-development/images/graph.png diff --git a/modules/cloud4/modules/graph-development/images/gsql-editor-1.png b/modules/savanna/modules/graph-development/images/gsql-editor-1.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/gsql-editor-1.png rename to modules/savanna/modules/graph-development/images/gsql-editor-1.png diff --git a/modules/cloud4/modules/graph-development/images/gsql-editor-2.png b/modules/savanna/modules/graph-development/images/gsql-editor-2.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/gsql-editor-2.png rename to modules/savanna/modules/graph-development/images/gsql-editor-2.png diff --git a/modules/cloud4/modules/graph-development/images/gsql-editor-folder-1.png b/modules/savanna/modules/graph-development/images/gsql-editor-folder-1.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/gsql-editor-folder-1.png rename to modules/savanna/modules/graph-development/images/gsql-editor-folder-1.png diff --git a/modules/cloud4/modules/graph-development/images/gsql-editor-folder-2.png b/modules/savanna/modules/graph-development/images/gsql-editor-folder-2.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/gsql-editor-folder-2.png rename to modules/savanna/modules/graph-development/images/gsql-editor-folder-2.png diff --git a/modules/cloud4/modules/graph-development/images/gsql-editor-folder-3.png b/modules/savanna/modules/graph-development/images/gsql-editor-folder-3.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/gsql-editor-folder-3.png rename to modules/savanna/modules/graph-development/images/gsql-editor-folder-3.png diff --git a/modules/cloud4/modules/graph-development/images/gsql-editor-shorcuts.png b/modules/savanna/modules/graph-development/images/gsql-editor-shorcuts.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/gsql-editor-shorcuts.png rename to modules/savanna/modules/graph-development/images/gsql-editor-shorcuts.png diff --git a/modules/cloud4/modules/graph-development/images/install-query.png b/modules/savanna/modules/graph-development/images/install-query.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/install-query.png rename to modules/savanna/modules/graph-development/images/install-query.png diff --git a/modules/cloud4/modules/graph-development/images/left.png b/modules/savanna/modules/graph-development/images/left.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/left.png rename to modules/savanna/modules/graph-development/images/left.png diff --git a/modules/savanna/modules/graph-development/images/load-data-snowflake.png b/modules/savanna/modules/graph-development/images/load-data-snowflake.png new file mode 100644 index 00000000..32c2abc4 Binary files /dev/null and b/modules/savanna/modules/graph-development/images/load-data-snowflake.png differ diff --git a/modules/savanna/modules/graph-development/images/load-to-new-graph.png b/modules/savanna/modules/graph-development/images/load-to-new-graph.png new file mode 100644 index 00000000..3226dad5 Binary files /dev/null and b/modules/savanna/modules/graph-development/images/load-to-new-graph.png differ diff --git a/modules/cloud4/modules/graph-development/images/main.png b/modules/savanna/modules/graph-development/images/main.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/main.png rename to modules/savanna/modules/graph-development/images/main.png diff --git a/modules/cloud4/modules/graph-development/images/nodes.png b/modules/savanna/modules/graph-development/images/nodes.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/nodes.png rename to modules/savanna/modules/graph-development/images/nodes.png diff --git a/modules/cloud4/modules/graph-development/images/open-in-gsql-editor.png b/modules/savanna/modules/graph-development/images/open-in-gsql-editor.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/open-in-gsql-editor.png rename to modules/savanna/modules/graph-development/images/open-in-gsql-editor.png diff --git a/modules/cloud4/modules/graph-development/images/patternsearch-id.png b/modules/savanna/modules/graph-development/images/patternsearch-id.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/patternsearch-id.png rename to modules/savanna/modules/graph-development/images/patternsearch-id.png diff --git a/modules/cloud4/modules/graph-development/images/patternsearch-operator.png b/modules/savanna/modules/graph-development/images/patternsearch-operator.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/patternsearch-operator.png rename to modules/savanna/modules/graph-development/images/patternsearch-operator.png diff --git a/modules/cloud4/modules/graph-development/images/patternsearch-selectagraph.png b/modules/savanna/modules/graph-development/images/patternsearch-selectagraph.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/patternsearch-selectagraph.png rename to modules/savanna/modules/graph-development/images/patternsearch-selectagraph.png diff --git a/modules/cloud4/modules/graph-development/images/patternsearch-selectaworksapce.png b/modules/savanna/modules/graph-development/images/patternsearch-selectaworksapce.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/patternsearch-selectaworksapce.png rename to modules/savanna/modules/graph-development/images/patternsearch-selectaworksapce.png diff --git a/modules/cloud4/modules/graph-development/images/patternsearch-selectshowschema.png b/modules/savanna/modules/graph-development/images/patternsearch-selectshowschema.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/patternsearch-selectshowschema.png rename to modules/savanna/modules/graph-development/images/patternsearch-selectshowschema.png diff --git a/modules/cloud4/modules/graph-development/images/patternsearch-showschema.png b/modules/savanna/modules/graph-development/images/patternsearch-showschema.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/patternsearch-showschema.png rename to modules/savanna/modules/graph-development/images/patternsearch-showschema.png diff --git a/modules/cloud4/modules/graph-development/images/patternserach-exploregraph.png b/modules/savanna/modules/graph-development/images/patternserach-exploregraph.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/patternserach-exploregraph.png rename to modules/savanna/modules/graph-development/images/patternserach-exploregraph.png diff --git a/modules/cloud4/modules/graph-development/images/patternserach-playbutton.png b/modules/savanna/modules/graph-development/images/patternserach-playbutton.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/patternserach-playbutton.png rename to modules/savanna/modules/graph-development/images/patternserach-playbutton.png diff --git a/modules/cloud4/modules/graph-development/images/queries.png b/modules/savanna/modules/graph-development/images/queries.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/queries.png rename to modules/savanna/modules/graph-development/images/queries.png diff --git a/modules/cloud4/modules/graph-development/images/query-details.png b/modules/savanna/modules/graph-development/images/query-details.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/query-details.png rename to modules/savanna/modules/graph-development/images/query-details.png diff --git a/modules/cloud4/modules/graph-development/images/query-editor.png b/modules/savanna/modules/graph-development/images/query-editor.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/query-editor.png rename to modules/savanna/modules/graph-development/images/query-editor.png diff --git a/modules/savanna/modules/graph-development/images/quick-map-snowflake.png b/modules/savanna/modules/graph-development/images/quick-map-snowflake.png new file mode 100644 index 00000000..a27bf687 Binary files /dev/null and b/modules/savanna/modules/graph-development/images/quick-map-snowflake.png differ diff --git a/modules/cloud4/modules/graph-development/images/quick-map.png b/modules/savanna/modules/graph-development/images/quick-map.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/quick-map.png rename to modules/savanna/modules/graph-development/images/quick-map.png diff --git a/modules/cloud4/modules/graph-development/images/referece-homecard.png b/modules/savanna/modules/graph-development/images/referece-homecard.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/referece-homecard.png rename to modules/savanna/modules/graph-development/images/referece-homecard.png diff --git a/modules/cloud4/modules/graph-development/images/right.png b/modules/savanna/modules/graph-development/images/right.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/right.png rename to modules/savanna/modules/graph-development/images/right.png diff --git a/modules/cloud4/modules/graph-development/images/security-homecard.png b/modules/savanna/modules/graph-development/images/security-homecard.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/security-homecard.png rename to modules/savanna/modules/graph-development/images/security-homecard.png diff --git a/modules/cloud4/modules/graph-development/images/select-exploregraph.png b/modules/savanna/modules/graph-development/images/select-exploregraph.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/select-exploregraph.png rename to modules/savanna/modules/graph-development/images/select-exploregraph.png diff --git a/modules/cloud4/modules/graph-development/images/showschema.png b/modules/savanna/modules/graph-development/images/showschema.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/showschema.png rename to modules/savanna/modules/graph-development/images/showschema.png diff --git a/modules/savanna/modules/graph-development/images/snowflake-connection-details.png b/modules/savanna/modules/graph-development/images/snowflake-connection-details.png new file mode 100644 index 00000000..3dd79613 Binary files /dev/null and b/modules/savanna/modules/graph-development/images/snowflake-connection-details.png differ diff --git a/modules/savanna/modules/graph-development/images/snowflake-sample-data.png b/modules/savanna/modules/graph-development/images/snowflake-sample-data.png new file mode 100644 index 00000000..89d735a2 Binary files /dev/null and b/modules/savanna/modules/graph-development/images/snowflake-sample-data.png differ diff --git a/modules/savanna/modules/graph-development/images/snowflake-tables.png b/modules/savanna/modules/graph-development/images/snowflake-tables.png new file mode 100644 index 00000000..f84c8344 Binary files /dev/null and b/modules/savanna/modules/graph-development/images/snowflake-tables.png differ diff --git a/modules/cloud4/modules/graph-development/images/systemmanagment-homecard.png b/modules/savanna/modules/graph-development/images/systemmanagment-homecard.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/systemmanagment-homecard.png rename to modules/savanna/modules/graph-development/images/systemmanagment-homecard.png diff --git a/modules/cloud4/modules/graph-development/images/token-function-1.png b/modules/savanna/modules/graph-development/images/token-function-1.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/token-function-1.png rename to modules/savanna/modules/graph-development/images/token-function-1.png diff --git a/modules/cloud4/modules/graph-development/images/token-function-2.png b/modules/savanna/modules/graph-development/images/token-function-2.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/token-function-2.png rename to modules/savanna/modules/graph-development/images/token-function-2.png diff --git a/modules/cloud4/modules/graph-development/images/token-function-3.png b/modules/savanna/modules/graph-development/images/token-function-3.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/token-function-3.png rename to modules/savanna/modules/graph-development/images/token-function-3.png diff --git a/modules/cloud4/modules/graph-development/images/token-function-4.png b/modules/savanna/modules/graph-development/images/token-function-4.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/token-function-4.png rename to modules/savanna/modules/graph-development/images/token-function-4.png diff --git a/modules/cloud4/modules/graph-development/images/tools-page.png b/modules/savanna/modules/graph-development/images/tools-page.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/tools-page.png rename to modules/savanna/modules/graph-development/images/tools-page.png diff --git a/modules/cloud4/modules/graph-development/images/unnamed.gif b/modules/savanna/modules/graph-development/images/unnamed.gif similarity index 100% rename from modules/cloud4/modules/graph-development/images/unnamed.gif rename to modules/savanna/modules/graph-development/images/unnamed.gif diff --git a/modules/cloud4/modules/graph-development/images/workspace-connect-menu-1.png b/modules/savanna/modules/graph-development/images/workspace-connect-menu-1.png similarity index 100% rename from modules/cloud4/modules/graph-development/images/workspace-connect-menu-1.png rename to modules/savanna/modules/graph-development/images/workspace-connect-menu-1.png diff --git a/modules/cloud4/modules/graph-development/nav.adoc b/modules/savanna/modules/graph-development/nav.adoc similarity index 82% rename from modules/cloud4/modules/graph-development/nav.adoc rename to modules/savanna/modules/graph-development/nav.adoc index bf4d1741..75226e59 100644 --- a/modules/cloud4/modules/graph-development/nav.adoc +++ b/modules/savanna/modules/graph-development/nav.adoc @@ -1,9 +1,10 @@ -* xref:index.adoc[Graph Management] +* xref:index.adoc[Graph Development] ** xref:load-data/index.adoc[Load Data] *** xref:load-data/load-from-local.adoc[] *** xref:load-data/load-from-s3.adoc[Load from AWS S3] *** xref:load-data/load-from-gcs.adoc[Load from GCS] *** xref:load-data/load-from-blob.adoc[Load from Blob] +*** xref:load-data/load-from-snowflake.adoc[Load from Snowflake] *** xref:load-data/token-function.adoc[Token Function] *** xref:load-data/load-from-other-sources.adoc[] **** xref:load-data/jdbc.adoc[] @@ -14,4 +15,4 @@ *** xref:explore-graph/how2-use-pattern-search.adoc[Pattern Search] ** xref:advanced-features/index.adoc[Advanced Features] *** xref:advanced-features/write2-s3.adoc[Export Data to S3] -*** xref:advanced-features/configure-udf.adoc[Configure UDF] \ No newline at end of file +*** xref:advanced-features/configure-udf.adoc[Configure UDF] diff --git a/modules/cloud4/modules/graph-development/pages/advanced-features/configure-udf.adoc b/modules/savanna/modules/graph-development/pages/advanced-features/configure-udf.adoc similarity index 91% rename from modules/cloud4/modules/graph-development/pages/advanced-features/configure-udf.adoc rename to modules/savanna/modules/graph-development/pages/advanced-features/configure-udf.adoc index 52c1d9bf..986f9981 100644 --- a/modules/cloud4/modules/graph-development/pages/advanced-features/configure-udf.adoc +++ b/modules/savanna/modules/graph-development/pages/advanced-features/configure-udf.adoc @@ -1,4 +1,4 @@ -= Configure User Defined Functions (UDFs) On TigerGraph Cloud 4 += Configure User Defined Functions (UDFs) On TigerGraph Savanna :experimental: User-Defined Functions (UDFs) in TigerGraph allow you to incorporate custom logic into your GSQL queries. You can configure GSQL to your UDF definitions from a GitHub repository. This is TigerGraph’s recommended approach for managing UDFs. @@ -6,11 +6,11 @@ User-Defined Functions (UDFs) in TigerGraph allow you to incorporate custom logi == Prerequisites * Familiarity with GSQL and UDF syntax. -* An active TigerGraph Cloud 4 workspace. +* An active TigerGraph Savanna workspace. == Steps to Update a UDF -1) Set up the TigerGraph Cloud 4 workspace and ensure it is running. +1) Set up the TigerGraph Savanna workspace and ensure it is running. 2) Edit the workspace by clicking the btn:[...] button of your selected workspace. diff --git a/modules/cloud4/modules/graph-development/pages/advanced-features/index.adoc b/modules/savanna/modules/graph-development/pages/advanced-features/index.adoc similarity index 55% rename from modules/cloud4/modules/graph-development/pages/advanced-features/index.adoc rename to modules/savanna/modules/graph-development/pages/advanced-features/index.adoc index 05bb5790..4fda7395 100644 --- a/modules/cloud4/modules/graph-development/pages/advanced-features/index.adoc +++ b/modules/savanna/modules/graph-development/pages/advanced-features/index.adoc @@ -1,11 +1,11 @@ = Advanced Features :experimental: -This section covers the powerful and sophisticated functionalities that allow you to leverage TigerGraph Cloud to its fullest potential. +This section covers the powerful and sophisticated functionalities that allow you to leverage TigerGraph Savanna to its fullest potential. == Write Output to S3 -TigerGraph Cloud v4 enables you to write data directly to Amazon S3, providing a seamless way to export and store your graph data in a scalable and cost-effective manner. Click xref:advanced-features/write2-s3.adoc[Export Data to S3] to learn how to configure and use this feature. +TigerGraph Savanna enables you to write data directly to Amazon S3, providing a seamless way to export and store your graph data in a scalable and cost-effective manner. Click xref:advanced-features/write2-s3.adoc[Export Data to S3] to learn how to configure and use this feature. == Configure User Defined Functions (UDF) diff --git a/modules/cloud4/modules/graph-development/pages/advanced-features/write2-s3.adoc b/modules/savanna/modules/graph-development/pages/advanced-features/write2-s3.adoc similarity index 84% rename from modules/cloud4/modules/graph-development/pages/advanced-features/write2-s3.adoc rename to modules/savanna/modules/graph-development/pages/advanced-features/write2-s3.adoc index 75638798..44bd08f0 100644 --- a/modules/cloud4/modules/graph-development/pages/advanced-features/write2-s3.adoc +++ b/modules/savanna/modules/graph-development/pages/advanced-features/write2-s3.adoc @@ -1,7 +1,7 @@ = Export Data to S3 :experimental: -Exporting data to Amazon S3 from TigerGraph Cloud v4 allows you to export your graph data efficiently. This feature is particularly useful for backup, data sharing, and integration with other AWS services. +Exporting data to Amazon S3 from TigerGraph Savanna allows you to export your graph data efficiently. This feature is particularly useful for backup, data sharing, and integration with other AWS services. This documentation have been updated to include all three methods for writing data to S3, providing comprehensive guidance for users. @@ -9,13 +9,13 @@ This documentation have been updated to include all three methods for writing da Before you begin, ensure you have the following: -* An active TigerGraph Cloud 4 workspace. +* An active TigerGraph Savanna workspace. * An AWS account with access to S3. * Appropriate IAM permissions to write to the S3 bucket. == Methods to Export Data to S3 -There are three main methods to write data to S3 from TigerGraph Cloud 4: +There are three main methods to write data to S3 from TigerGraph Savanna: 1. Using GSQL Editor 2. Via API @@ -23,9 +23,9 @@ There are three main methods to write data to S3 from TigerGraph Cloud 4: === Method 1: Using GSQL Editor -1) Set up the TigerGraph Cloud 4 workspace and ensure it is running. +1) Set up the TigerGraph Savanna workspace and ensure it is running. -2) Open the xref:cloud4:graph-development:gsql-editor/index.adoc[GSQL Editor] in TigerGraph Cloud 4. +2) Open the xref:savanna:graph-development:gsql-editor/index.adoc[GSQL Editor] in TigerGraph Savanna. 3) **Configure AWS Credentials**: @@ -54,7 +54,7 @@ Replace ``, ``, and `` with your actual AWS === Method 2: Via API -1) Set up the TigerGraph Cloud 4 workspace and ensure it is running. +1) Set up the TigerGraph Savanna workspace and ensure it is running. 2) **Send a GET Request**: @@ -68,11 +68,11 @@ curl -X GET \ https://$HOST_ID.i.tgcloud.io/query/$GRAPH_NAME/$QUERY_NAME ``` -Replace `$AWS_KEY_ID` and `$AWS_ACCESS_KEY` with your actual AWS credentials, `$HOST_ID` with your TigerGraph Cloud 4 host ID, `$GRAPH_NAME` with your graph name, and `$QUERY_NAME` with your query name. +Replace `$AWS_KEY_ID` and `$AWS_ACCESS_KEY` with your actual AWS credentials, `$HOST_ID` with your TigerGraph Savanna host ID, `$GRAPH_NAME` with your graph name, and `$QUERY_NAME` with your query name. === Method 3: Using Graph Admin -1) Set up the TigerGraph Cloud 4 workspace and ensure it is running. +1) Set up the TigerGraph Savanna workspace and ensure it is running. 2) Edit the workspace by clicking the btn:[...] button of your selected workspace. diff --git a/modules/cloud4/modules/graph-development/pages/design-schema/index.adoc b/modules/savanna/modules/graph-development/pages/design-schema/index.adoc similarity index 96% rename from modules/cloud4/modules/graph-development/pages/design-schema/index.adoc rename to modules/savanna/modules/graph-development/pages/design-schema/index.adoc index ca45d459..08157e21 100644 --- a/modules/cloud4/modules/graph-development/pages/design-schema/index.adoc +++ b/modules/savanna/modules/graph-development/pages/design-schema/index.adoc @@ -134,6 +134,6 @@ image::advanced-settings-2.png[] == Next Steps -Next, learn how to use xref:cloud4:graph-development:gsql-editor/index.adoc[GSQL Editor] in TigerGraph Cloud 4. +Next, learn how to use xref:savanna:graph-development:gsql-editor/index.adoc[GSQL Editor] in TigerGraph Savanna. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/graph-development/pages/explore-graph/how2-use-pattern-search.adoc b/modules/savanna/modules/graph-development/pages/explore-graph/how2-use-pattern-search.adoc similarity index 96% rename from modules/cloud4/modules/graph-development/pages/explore-graph/how2-use-pattern-search.adoc rename to modules/savanna/modules/graph-development/pages/explore-graph/how2-use-pattern-search.adoc index b743c519..48a20794 100644 --- a/modules/cloud4/modules/graph-development/pages/explore-graph/how2-use-pattern-search.adoc +++ b/modules/savanna/modules/graph-development/pages/explore-graph/how2-use-pattern-search.adoc @@ -71,5 +71,5 @@ image::graph.png[width=300] == Next Steps -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/graph-development/pages/explore-graph/index.adoc b/modules/savanna/modules/graph-development/pages/explore-graph/index.adoc similarity index 58% rename from modules/cloud4/modules/graph-development/pages/explore-graph/index.adoc rename to modules/savanna/modules/graph-development/pages/explore-graph/index.adoc index d44b07b9..b67dd2cf 100644 --- a/modules/cloud4/modules/graph-development/pages/explore-graph/index.adoc +++ b/modules/savanna/modules/graph-development/pages/explore-graph/index.adoc @@ -12,14 +12,14 @@ A visual representation of a graph and its data can help identify and explain th == Prerequisites -Before you can utilize the Explore Graph features you need to xref:cloud4:workgroup-workspace:workgroups/how2-create-a-workgroup.adoc[Create a Workspace] and xref:cloud4:graph-development:load-data/index.adoc[Load Data]. +Before you can utilize the Explore Graph features you need to xref:savanna:workgroup-workspace:workgroups/how2-create-a-workgroup.adoc[Create a Workspace] and xref:savanna:graph-development:load-data/index.adoc[Load Data]. -== xref:cloud4:graph-development:explore-graph/how2-use-pattern-search.adoc[] +== xref:savanna:graph-development:explore-graph/how2-use-pattern-search.adoc[] Learn how look for specific patterns or sequences within a dataset or system. == Next Steps -Next, check out the xref:cloud4:integrations:index.adoc[]. +Next, check out the xref:savanna:integrations:index.adoc[]. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/graph-development/pages/gsql-editor/how2-edit-gsql-query.adoc b/modules/savanna/modules/graph-development/pages/gsql-editor/how2-edit-gsql-query.adoc similarity index 93% rename from modules/cloud4/modules/graph-development/pages/gsql-editor/how2-edit-gsql-query.adoc rename to modules/savanna/modules/graph-development/pages/gsql-editor/how2-edit-gsql-query.adoc index 7b8e19b2..8949d355 100644 --- a/modules/cloud4/modules/graph-development/pages/gsql-editor/how2-edit-gsql-query.adoc +++ b/modules/savanna/modules/graph-development/pages/gsql-editor/how2-edit-gsql-query.adoc @@ -22,7 +22,7 @@ image::Screenshot 2024-04-18 at 10.12.15 AM.png[] The opened files will be listed on the top tabs on the code edit folder + image::query-editor.png[] -+ + == Run GSQL Query @@ -79,7 +79,7 @@ You can only share a GSQL file if you are the file owner. image::Screenshot 2024-04-18 at 10.14.54 AM.png[width=300] -In TigerGraph Cloud, GSQL files have btn:[Viewer] and btn:[Editor] permissions that can be assigned to individual users or shared with the entire organization. +In TigerGraph Savanna, GSQL files have btn:[Viewer] and btn:[Editor] permissions that can be assigned to individual users or shared with the entire organization. image::Screenshot 2024-04-18 at 10.15.25 AM.png[width=300] @@ -109,7 +109,7 @@ Sharing with the entire organization can be useful when you want to provide broa == Next Steps -Next, learn to xref:cloud4:graph-development:explore-graph/index.adoc[]. +Next, learn to xref:savanna:graph-development:explore-graph/index.adoc[]. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/graph-development/pages/gsql-editor/index.adoc b/modules/savanna/modules/graph-development/pages/gsql-editor/index.adoc similarity index 83% rename from modules/cloud4/modules/graph-development/pages/gsql-editor/index.adoc rename to modules/savanna/modules/graph-development/pages/gsql-editor/index.adoc index f406bf2f..4105a802 100644 --- a/modules/cloud4/modules/graph-development/pages/gsql-editor/index.adoc +++ b/modules/savanna/modules/graph-development/pages/gsql-editor/index.adoc @@ -8,13 +8,13 @@ The GSQL Editor is a powerful tool for developing and executing GSQL queries, al The GSQL Editor contains 4 work areas: image::Screenshot 2024-10-11 at 11.39.23.png[] -* Left image:left.png[] - GSQL xref:cloud4:graph-development:gsql-editor/index.adoc#_file_list[File List ] Panel. +* Left image:left.png[] - GSQL xref:savanna:graph-development:gsql-editor/index.adoc#_file_list[File List ] Panel. * Bottom image:bottom.png[] - GSQL Result Panel. * Right image:right.png[] Schema Designer Panel. + [NOTE] ==== -For more details please see xref:cloud4:graph-development:design-schema/index.adoc[]. +For more details please see xref:savanna:graph-development:design-schema/index.adoc[]. ==== * Main area image:main.png[] Main GSQL Editing Panel. @@ -25,7 +25,7 @@ Additionally, you can use shortcuts to run a GSQL query. image::gsql-editor-shorcuts.png[] -See xref:cloud4:graph-development:gsql-editor/how2-edit-gsql-query.adoc[] for more details. +See xref:savanna:graph-development:gsql-editor/how2-edit-gsql-query.adoc[] for more details. ==== == File List @@ -56,12 +56,12 @@ image:Screenshot 2024-04-18 at 10.09.33 AM.png[] == Folders -The GSQL Editor in TigerGraph Cloud 4 has two types of folders presented in the list: +The GSQL Editor in TigerGraph Savanna has two types of folders presented in the list: === Shared Folder The Shared Folder is a special type of folder that facilitates collaboration and sharing of GSQL files. The folder contains all GSQL files that are shared with you from other users with in the organization. -For more information about sharing GSQL files, please refer to xref:cloud4:graph-development:gsql-editor/how2-edit-gsql-query.adoc#_share_gsql_files[Share GSQL Files]. +For more information about sharing GSQL files, please refer to xref:savanna:graph-development:gsql-editor/how2-edit-gsql-query.adoc#_share_gsql_files[Share GSQL Files]. === User-defined Folders @@ -120,12 +120,12 @@ You can easily open the Schema Designer in GSQL Editor by clicking on the image: [NOTE] ==== -For more details please see xref:cloud4:graph-development:design-schema/index.adoc[]. +For more details please see xref:savanna:graph-development:design-schema/index.adoc[]. ==== == Next Steps -Next, learn more about how to xref:cloud4:graph-development:gsql-editor/how2-edit-gsql-query.adoc[]. +Next, learn more about how to xref:savanna:graph-development:gsql-editor/how2-edit-gsql-query.adoc[]. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/graph-development/pages/index.adoc b/modules/savanna/modules/graph-development/pages/index.adoc similarity index 90% rename from modules/cloud4/modules/graph-development/pages/index.adoc rename to modules/savanna/modules/graph-development/pages/index.adoc index 255aa8c9..3386dea9 100644 --- a/modules/cloud4/modules/graph-development/pages/index.adoc +++ b/modules/savanna/modules/graph-development/pages/index.adoc @@ -16,6 +16,7 @@ Efficiently loading data into your TigerGraph databases is crucial for successfu - xref:load-data/load-from-s3.adoc[Load from AWS S3] - xref:load-data/load-from-gcs.adoc[Load from GCS] - xref:load-data/load-from-blob.adoc[Load from Blob] +- xref:load-data/load-from-snowflake.adoc[Load from Snowflake] - xref:load-data/token-function.adoc[Token Function] - xref:load-data/load-from-other-sources.adoc[] - xref:load-data/jdbc.adoc[] @@ -60,7 +61,7 @@ Explore Graph allows users to visually interact with their graph data, helping t == xref:advanced-features/index.adoc[Advanced Features] -This section covers the powerful and sophisticated functionalities that allow you to leverage TigerGraph Cloud to its fullest potential. +This section covers the powerful and sophisticated functionalities that allow you to leverage TigerGraph Savanna to its fullest potential. ### Key Features: - Export data to Amazon S3. @@ -75,4 +76,4 @@ This section covers the powerful and sophisticated functionalities that allow yo == Next Steps -Learn how to manage your workgroups and workspaces in xref:cloud4:workgroup-workspace:index.adoc[Workgroup and Workspace Management]. +Learn how to manage your workgroups and workspaces in xref:savanna:workgroup-workspace:index.adoc[Workgroup and Workspace Management]. diff --git a/modules/cloud4/modules/graph-development/pages/load-data/index.adoc b/modules/savanna/modules/graph-development/pages/load-data/index.adoc similarity index 60% rename from modules/cloud4/modules/graph-development/pages/load-data/index.adoc rename to modules/savanna/modules/graph-development/pages/load-data/index.adoc index 2ab9b295..c28ca180 100644 --- a/modules/cloud4/modules/graph-development/pages/load-data/index.adoc +++ b/modules/savanna/modules/graph-development/pages/load-data/index.adoc @@ -1,19 +1,19 @@ -= Load Data in TigerGraph Cloud 4 += Load Data in TigerGraph Savanna :experimental: Efficiently loading data into your TigerGraph databases is crucial for successful graph analysis. == Load Data Overview -.TigerGraph Cloud offers multiple methods for loading data: +.TigerGraph Savanna offers multiple methods for loading data: . Select an active workspace from the dropdown menu. + image::Screenshot 2024-04-17 at 5.47.58 PM.png[width="500"] . Click on image:Screenshot 2024-04-17 at 5.48.20 PM.png[width="75"] to load your data into TigerGraph. -. Chose one of TigerGraph Cloud various types of connectors that allow you to load data into your graph database. +. Chose one of TigerGraph Savanna various types of connectors that allow you to load data into your graph database. + -image::Screenshot 2024-04-17 at 5.49.07 PM.png[width="500"] +image::data-sources.png[width="500"] . The data loading tool offers two different approaches to make it easier for users to load their data based on their specific needs and preferences. + @@ -44,35 +44,39 @@ image::open-in-gsql-editor.png[width=200] [NOTE] ==== -As of Oct. 31, 2024, the step-by-step guide supports loading from xref:cloud4:graph-development:load-data/load-from-local.adoc[Local File], xref:cloud4:graph-development:load-data/load-from-s3.adoc[Amazon S3], xref:cloud4:graph-development:load-data/load-from-gcs.adoc[Google Cloud Storage] and xref:cloud4:graph-development:load-data/load-from-blob.adoc[Azure Blob Storage]. +As of Oct. 31, 2024, the step-by-step guide supports loading from xref:savanna:graph-development:load-data/load-from-local.adoc[Local File], xref:savanna:graph-development:load-data/load-from-s3.adoc[Amazon S3], xref:savanna:graph-development:load-data/load-from-gcs.adoc[Google Cloud Storage] and xref:savanna:graph-development:load-data/load-from-blob.adoc[Azure Blob Storage]. We are actively working on adding support for more data sources. ==== -== xref:cloud4:graph-development:load-data/load-from-local.adoc[] +== xref:savanna:graph-development:load-data/load-from-local.adoc[] Check out our step-by-step guide on loading data from a local file. -== xref:cloud4:graph-development:load-data/load-from-s3.adoc[] +== xref:savanna:graph-development:load-data/load-from-s3.adoc[] Check out our step-by-step guide on loading data from a Amazon S3. -== xref:cloud4:graph-development:load-data/load-from-gcs.adoc[] +== xref:savanna:graph-development:load-data/load-from-gcs.adoc[] Check out our step-by-step guide on loading data from a Google Cloud Storage. -== xref:cloud4:graph-development:load-data/load-from-blob.adoc[] +== xref:savanna:graph-development:load-data/load-from-blob.adoc[] Check out our step-by-step guide on loading data from a Azure Blob Storage. +== xref:savanna:graph-development:load-data/load-from-snowflake.adoc[] -== xref:cloud4:graph-development:load-data/load-from-other-sources.adoc[] +Check out our step-by-step guide on loading data from Snowflake. -Here you can check the status of loading data form other sources in TigerGraph Cloud 4. -Or check out our xref:cloud4:graph-development:load-data/jdbc.adoc[]. + +== xref:savanna:graph-development:load-data/load-from-other-sources.adoc[] + +Here you can check the status of loading data form other sources in TigerGraph Savanna. +Or check out our xref:savanna:graph-development:load-data/jdbc.adoc[]. == Next Steps -Next, learn more about how to xref:cloud4:graph-development:design-schema/index.adoc[]. +Next, learn more about how to xref:savanna:graph-development:design-schema/index.adoc[]. -Or return to the xref:cloud4:workgroup-workspace:index.adoc[] page or xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:workgroup-workspace:index.adoc[] page or xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/graph-development/pages/load-data/jdbc.adoc b/modules/savanna/modules/graph-development/pages/load-data/jdbc.adoc similarity index 88% rename from modules/cloud4/modules/graph-development/pages/load-data/jdbc.adoc rename to modules/savanna/modules/graph-development/pages/load-data/jdbc.adoc index 9fdeed7c..c18e1c84 100644 --- a/modules/cloud4/modules/graph-development/pages/load-data/jdbc.adoc +++ b/modules/savanna/modules/graph-development/pages/load-data/jdbc.adoc @@ -43,14 +43,14 @@ $ spark-submit --class org.apache.spark.examples.SparkPi spark/examples/jars/spa == Set up SSL connection -TigerGraph Cloud uses SSL connections, so we need to create the certificate for Spark to use. +TigerGraph Savanna uses SSL connections, so we need to create the certificate for Spark to use. -For this step and other steps, you need your TigerGraph Cloud cluster URL, which can be found on the Clusters page. +For this step and other steps, you need your TigerGraph Savanna workspace URL, which can be found on the Clusters page. A typical cluster URL looks like `7c141e8c7669404f923623083ba01da9.i.tgcloud.io`. [source, console] ---- -$ echo | openssl s_client -host -port 443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/tgcloud.crt +$ echo | openssl s_client -host -port 443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/tgcloud.crt ---- This SSL certificate, a `.crt` file, cannot be used directly with the JDBC driver. @@ -59,7 +59,7 @@ Create a password and use it where the sample command below has the placeholder [source, console] ---- -$ keytool -import -alias -file ~/tgcloud.crt -keystore ~/trust.jks -storepass +$ keytool -import -alias -file ~/tgcloud.crt -keystore ~/trust.jks -storepass ---- == Create the secret key on your TigerGraph instance @@ -83,7 +83,7 @@ For more details on how to use the TigerGraph JDBC Connector, see the documentat The last section of the file, the Loading to TigerGraph section, requires several parameters. Some are filled in already in the example, but others require your input. -* `url`: Your TigerGraph Cloud URL +* `url`: Your TigerGraph Savanna workspace URL * `password`: Your secret key created with Admin Portal * `graph`: The graph for which you created the secret key * `truststore`: The JKS file you created previously diff --git a/modules/cloud4/modules/graph-development/pages/load-data/load-from-blob.adoc b/modules/savanna/modules/graph-development/pages/load-data/load-from-blob.adoc similarity index 83% rename from modules/cloud4/modules/graph-development/pages/load-data/load-from-blob.adoc rename to modules/savanna/modules/graph-development/pages/load-data/load-from-blob.adoc index 26af0985..1dbdb97a 100644 --- a/modules/cloud4/modules/graph-development/pages/load-data/load-from-blob.adoc +++ b/modules/savanna/modules/graph-development/pages/load-data/load-from-blob.adoc @@ -1,11 +1,12 @@ = Load from Azure Blob Storage :experimental: -TigerGraph Cloud 4 allows you to load data directly from Azure Blob Storage. This guide will walk you through the steps to configure and load data from Azure Blob Storage into your TigerGraph workspace. +TigerGraph Savanna allows you to load data directly from Azure Blob Storage. This guide will walk you through the steps to configure and load data from Azure Blob Storage into your TigerGraph workspace. == 1) Select Source Once you’ve selected btn:[Azure Blob Storage], you will be asked to configure the Azure Blob Storage data source. + . Click on image:Screenshot 2024-04-17 at 9.36.58 PM.png[width=50] to add a new Azure Blob Storage data source. + image:gcs-empty-data-source.png[] @@ -24,6 +25,7 @@ The current data loading tool only supports CSV,TSV and JSON files. Other format == 2) Configure File This step lets you configure the source file details. + . The data loading tool will automatically detect the `.csv` separators and line breaks. The parser automatically splits each line into a series of tokens. + @@ -58,7 +60,8 @@ The header name is ignored during data loading. == 3) Configure Map -If you are loading data into a brand new graph, you will be prompted to let our engine generate a schema and mapping for you. Or you can start from scratch. For more details of schema design please refer to xref:cloud4:graph-development:design-schema/index.adoc[Design Schema]. +If you are loading data into a brand new graph, you will be prompted to let our engine generate a schema and mapping for you. Or you can start from scratch. For more details of schema design please refer to xref:savanna:graph-development:design-schema/index.adoc[Design Schema]. + . Select `Generate the schema only` or `Generate the schema and data mapping`. + image::Screenshot 2024-04-17 at 5.55.35 PM.png[] @@ -76,21 +79,22 @@ image::config-mapping-1.png[] + image::config-mapping-2.png[width=400] -. Click the btn:[Token Function] button to configure token functions for the selected source. For more details of configuring token functions, please refer to xref:cloud4:graph-development:load-data/token-function.adoc[Token Function]. +. Click the btn:[Token Function] button to configure token functions for the selected source. For more details of configuring token functions, please refer to xref:savanna:graph-development:load-data/token-function.adoc[Token Function]. . Click the btn:[Quick Map] button to quickly map the data source headers to the existing schema attributes. + image::quick-map.png[] + .. The btn:[Map all to target] button aligns existing attribute names with the corresponding data source headers, it won't introduce new attributes. - .. The btn:[Map all from source] button not only aligns existing attribute names with the corresponding dat asource headers, but also introduces new attributes based on unmatched data source headers. - .. The following list shows the mapping status of each attribute, you can manually adjust the mapping by checking the box next to the attribute name. + .. The btn:[Map all from source] button not only aligns existing attribute names with the corresponding data asource headers, but also introduces new attributes based on unmatched data source headers. + .. The following list shows the mapping status of each attribute. You can manually adjust the mapping by checking the box next to the attribute name. . Click btn:[Next] to proceed. == 4) Confirm This step will let you confirm the changes made to the schema and the data mapping you created to load the data. + . Simply review the `Schema to be changed` and `Data to be loaded` lists. + image::confirm.png[] @@ -105,8 +109,8 @@ image::Screenshot 2024-04-17 at 5.59.16 PM.png[] == Next Steps -Next, learn how to use xref:cloud4:graph-development:design-schema/index.adoc[Design Schema], xref:cloud4:graph-development:gsql-editor/index.adoc[GSQL Editor] and xref:cloud4:graph-development:explore-graph/index.adoc[Explore Graph] in TigerGraph Cloud 4. +Next, learn how to use xref:savanna:graph-development:design-schema/index.adoc[Design Schema], xref:savanna:graph-development:gsql-editor/index.adoc[GSQL Editor] and xref:savanna:graph-development:explore-graph/index.adoc[Explore Graph] in TigerGraph Savanna. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/graph-development/pages/load-data/load-from-gcs.adoc b/modules/savanna/modules/graph-development/pages/load-data/load-from-gcs.adoc similarity index 70% rename from modules/cloud4/modules/graph-development/pages/load-data/load-from-gcs.adoc rename to modules/savanna/modules/graph-development/pages/load-data/load-from-gcs.adoc index 2dee77cb..4d2c2472 100644 --- a/modules/cloud4/modules/graph-development/pages/load-data/load-from-gcs.adoc +++ b/modules/savanna/modules/graph-development/pages/load-data/load-from-gcs.adoc @@ -1,11 +1,12 @@ = Load from Google Cloud Storage (GCS) :experimental: -If you store your data in Google Cloud Storage (GCS), TigerGraph Cloud provides seamless integration for data ingestion. You can directly load data from your GCS into your graph databases, eliminating the need for manual data transfers. This simplifies the process of importing large datasets and enables you to leverage the scalability and durability of Google Cloud Storage for your graph analysis. +If you store your data in Google Cloud Storage (GCS), TigerGraph Savanna provides seamless integration for data ingestion. You can directly load data from your GCS into your graph databases, eliminating the need for manual data transfers. This simplifies the process of importing large datasets and enables you to leverage the scalability and durability of Google Cloud Storage for your graph analysis. == 1) Select Source -.Once you’ve selected btn:[Google Cloud Storage], you will be asked to configure the GCS data source. +Once you’ve selected btn:[Google Cloud Storage], you will be asked to configure the GCS data source. + . Click on image:Screenshot 2024-04-17 at 9.36.58 PM.png[width=50] to add a new GCS data source. + image:gcs-empty-data-source.png[] @@ -23,7 +24,8 @@ The current data loading tool only supports CSV,TSV and JSON files. Other format ==== == 2) Configure File -.This step lets you configure the source file details. +This step lets you configure the source file details. + . The data loading tool will automatically detect the `.csv` separators and line breaks. The parser automatically splits each line into a series of tokens. + @@ -58,7 +60,8 @@ The header name is ignored during data loading. == 3) Configure Map -.If you are loading data into a brand new graph, you will be prompted to let our engine generate a schema and mapping for you. Or you can start from scratch. For more details of schema design please refer to xref:cloud4:graph-development:design-schema/index.adoc[Design Schema]. +If you are loading data into a brand new graph, you will be prompted to let our engine generate a schema and mapping for you. Or you can start from scratch. For more details of schema design please refer to xref:savanna:graph-development:design-schema/index.adoc[Design Schema]. + . Select `Generate the schema only` or `Generate the schema and data mapping`. + image::Screenshot 2024-04-17 at 5.55.35 PM.png[] @@ -76,21 +79,22 @@ image::config-mapping-1.png[] + image::config-mapping-2.png[width=400] -. Click the btn:[Token Function] button to configure token functions for the selected source. For more details of configuring token functions, please refer to xref:cloud4:graph-development:load-data/token-function.adoc[Token Function]. +. Click the btn:[Token Function] button to configure token functions for the selected source. For more details of configuring token functions, please refer to xref:savanna:graph-development:load-data/token-function.adoc[Token Function]. . Click the btn:[Quick Map] button to quickly map the data source headers to the existing schema attributes. + image::quick-map.png[] + .. The btn:[Map all to target] button aligns existing attribute names with the corresponding data source headers, it won't introduce new attributes. - .. The btn:[Map all from source] button not only aligns existing attribute names with the corresponding dat asource headers, but also introduces new attributes based on unmatched data source headers. - .. The following list shows the mapping status of each attribute, you can manually adjust the mapping by checking the box next to the attribute name. + .. The btn:[Map all from source] button not only aligns existing attribute names with the corresponding data asource headers, but also introduces new attributes based on unmatched data source headers. + .. The following list shows the mapping status of each attribute. You can manually adjust the mapping by checking the box next to the attribute name. . Click btn:[Next] to proceed. == 4) Confirm -.This step will let you confirm the changes made to the schema and the data mapping you created to load the data. +This step will let you confirm the changes made to the schema and the data mapping you created to load the data. + . Simply review the `Schema to be changed` and `Data to be loaded` lists. + image::confirm.png[] @@ -105,8 +109,8 @@ image::Screenshot 2024-04-17 at 5.59.16 PM.png[] == Next Steps -Next, learn how to use xref:cloud4:graph-development:design-schema/index.adoc[Design Schema], xref:cloud4:graph-development:gsql-editor/index.adoc[GSQL Editor] and xref:cloud4:graph-development:explore-graph/index.adoc[Explore Graph] in TigerGraph Cloud 4. +Next, learn how to use xref:savanna:graph-development:design-schema/index.adoc[Design Schema], xref:savanna:graph-development:gsql-editor/index.adoc[GSQL Editor] and xref:savanna:graph-development:explore-graph/index.adoc[Explore Graph] in TigerGraph Savanna. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/graph-development/pages/load-data/load-from-local.adoc b/modules/savanna/modules/graph-development/pages/load-data/load-from-local.adoc similarity index 67% rename from modules/cloud4/modules/graph-development/pages/load-data/load-from-local.adoc rename to modules/savanna/modules/graph-development/pages/load-data/load-from-local.adoc index c8812042..c29c37f8 100644 --- a/modules/cloud4/modules/graph-development/pages/load-data/load-from-local.adoc +++ b/modules/savanna/modules/graph-development/pages/load-data/load-from-local.adoc @@ -1,14 +1,15 @@ = Load from Local File :experimental: -With TigerGraph Cloud, you can easily load data from local files into your graph databases. Whether you have data in CSV, JSON, or other formats, you can use the intuitive data ingestion process to import your data. Simply upload your files, specify the schema mapping, and let TigerGraph Cloud handle the rest. This allows you to quickly populate your graph databases with the necessary data for analysis. +With TigerGraph Savanna, you can easily load data from local files into your graph databases. Whether you have data in CSV, JSON, or other formats, you can use the intuitive data ingestion process to import your data. Simply upload your files, specify the schema mapping, and let TigerGraph Savanna handle the rest. This allows you to quickly populate your graph databases with the necessary data for analysis. == 1) Select Source -.Once you’ve selected btn:[ Local File ], +Once you’ve selected btn:[ Local File ], you will be asked to configure the local file data source. + . Click on image:Screenshot 2024-04-17 at 5.52.21 PM.png[width=50] to upload your files or directly drag and drop your files in the btn:[File Details] window. + -image::Screenshot 2024-04-17 at 5.53.05 PM.png[] +image::load-to-new-graph.png[] . Click btn:[ Next ] to process the file. + @@ -19,7 +20,8 @@ image::Screenshot 2024-04-17 at 5.53.05 PM.png[] ==== == 2) Configure File -.This step lets you configure the source file details. +This step lets you configure the source file details. + . The data loading tool will automatically detect the `.csv` separators and line breaks. The parser automatically splits each line into a series of tokens. + @@ -54,7 +56,8 @@ The header name is ignored during data loading. == 3) Configure Map -.If you are loading data into a brand new graph, you will be prompted to let our engine generate a schema and mapping for you. Or you can start from scratch. For more details of schema design please refer to xref:cloud4:graph-development:design-schema/index.adoc[Design Schema]. +If you are loading data into a brand new graph, you will be prompted to let our engine generate a schema and mapping for you. Or you can start from scratch. For more details of schema design please refer to xref:savanna:graph-development:design-schema/index.adoc[Design Schema]. + . Select `Generate the schema only` or `Generate the schema and data mapping`. + image::Screenshot 2024-04-17 at 5.55.35 PM.png[] @@ -72,21 +75,22 @@ image::config-mapping-1.png[] + image::config-mapping-2.png[width=400] -. Click the btn:[Token Function] button to configure token functions for the selected source. For more details of configuring token functions, please refer to xref:cloud4:graph-development:load-data/token-function.adoc[Token Function]. +. Click the btn:[Token Function] button to configure token functions for the selected source. For more details of configuring token functions, please refer to xref:savanna:graph-development:load-data/token-function.adoc[Token Function]. . Click the btn:[Quick Map] button to quickly map the data source headers to the existing schema attributes. + image::quick-map.png[] + .. The btn:[Map all to target] button aligns existing attribute names with the corresponding data source headers, it won't introduce new attributes. - .. The btn:[Map all from source] button not only aligns existing attribute names with the corresponding dat asource headers, but also introduces new attributes based on unmatched data source headers. - .. The following list shows the mapping status of each attribute, you can manually adjust the mapping by checking the box next to the attribute name. + .. The btn:[Map all from source] button not only aligns existing attribute names with the corresponding data asource headers, but also introduces new attributes based on unmatched data source headers. + .. The following list shows the mapping status of each attribute. You can manually adjust the mapping by checking the box next to the attribute name. . Click btn:[Next] to proceed. == 4) Confirm -.This step will let you confirm the changes made to the schema and the data mapping you created to load the data. +This step will let you confirm the changes made to the schema and the data mapping you created to load the data. + . Simply review the `Schema to be changed` and `Data to be loaded` lists. + image::confirm.png[] @@ -101,8 +105,8 @@ image::Screenshot 2024-04-17 at 5.59.16 PM.png[] == Next Steps -Next, learn how to use xref:cloud4:graph-development:design-schema/index.adoc[Design Schema], xref:cloud4:graph-development:gsql-editor/index.adoc[GSQL Editor] and xref:cloud4:graph-development:explore-graph/index.adoc[Explore Graph] in TigerGraph Cloud 4. +Next, learn how to use xref:savanna:graph-development:design-schema/index.adoc[Design Schema], xref:savanna:graph-development:gsql-editor/index.adoc[GSQL Editor] and xref:savanna:graph-development:explore-graph/index.adoc[Explore Graph] in TigerGraph Savanna. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/graph-development/pages/load-data/load-from-other-sources.adoc b/modules/savanna/modules/graph-development/pages/load-data/load-from-other-sources.adoc similarity index 54% rename from modules/cloud4/modules/graph-development/pages/load-data/load-from-other-sources.adoc rename to modules/savanna/modules/graph-development/pages/load-data/load-from-other-sources.adoc index 95309dbf..4ea67ba4 100644 --- a/modules/cloud4/modules/graph-development/pages/load-data/load-from-other-sources.adoc +++ b/modules/savanna/modules/graph-development/pages/load-data/load-from-other-sources.adoc @@ -1,14 +1,14 @@ = Load from Other Sources -TigerGraph Cloud 4 supports various data sources for ingestion, providing flexibility in integrating with your existing data infrastructure. +TigerGraph Savanna supports various data sources for ingestion, providing flexibility in integrating with your existing data infrastructure. GSQL templates can be used for connectors that are not yet supported in the step-by-step loading guide. See xref:tigergraph-server:data-loading:index.adoc[Data Loading in TigerGraph DB] for guides to loading data into TigerGraph. -Additionally, data can also be loaded from a JDBC Connection as well, See xref:cloud4:graph-development:load-data/jdbc.adoc[] for more details. +Additionally, data can also be loaded from a JDBC Connection as well, See xref:savanna:graph-development:load-data/jdbc.adoc[] for more details. == Next Steps -Next, learn how to use xref:cloud4:graph-development:design-schema/index.adoc[Design Schema] in TigerGraph Cloud 4. +Next, learn how to use xref:savanna:graph-development:design-schema/index.adoc[Design Schema] in TigerGraph Savanna. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/graph-development/pages/load-data/load-from-s3.adoc b/modules/savanna/modules/graph-development/pages/load-data/load-from-s3.adoc similarity index 74% rename from modules/cloud4/modules/graph-development/pages/load-data/load-from-s3.adoc rename to modules/savanna/modules/graph-development/pages/load-data/load-from-s3.adoc index 1b9ab096..ef9e78ef 100644 --- a/modules/cloud4/modules/graph-development/pages/load-data/load-from-s3.adoc +++ b/modules/savanna/modules/graph-development/pages/load-data/load-from-s3.adoc @@ -1,13 +1,14 @@ = Load from Amazon S3 :experimental: -If you store your data in Amazon S3, TigerGraph Cloud provides seamless integration for data ingestion. +If you store your data in Amazon S3, TigerGraph Savanna provides seamless integration for data ingestion. You can directly load data from your S3 buckets into your graph databases, eliminating the need for manual data transfers. This simplifies the process of importing large datasets and enables you to leverage the scalability and durability of Amazon S3 for your graph analysis. == 1) Select Source -.Once you’ve selected btn:[Amazon S3], you will be asked to configure the Amazon S3 data source. +Once you’ve selected btn:[Amazon S3], you will be asked to configure the Amazon S3 data source. + . Click on image:Screenshot 2024-04-17 at 9.36.58 PM.png[width=50] to add a new Amazon S3 data source. + image:Screenshot 2024-04-17 at 9.36.27 PM.png[] @@ -25,7 +26,8 @@ The current data loading tool only supports CSV,TSV and JSON files. Other format ==== == 2) Configure File -.This step lets you configure the source file details. +This step lets you configure the source file details. + . The data loading tool will automatically detect the `.csv` separators and line breaks. The parser automatically splits each line into a series of tokens. + @@ -60,7 +62,8 @@ The header name is ignored during data loading. == 3) Configure Map -.If you are loading data into a brand new graph, you will be prompted to let our engine generate a schema and mapping for you. Or you can start from scratch. For more details of schema design please refer to xref:cloud4:graph-development:design-schema/index.adoc[Design Schema]. +If you are loading data into a brand new graph, you will be prompted to let our engine generate a schema and mapping for you. Or you can start from scratch. For more details of schema design please refer to xref:savanna:graph-development:design-schema/index.adoc[Design Schema]. + . Select `Generate the schema only` or `Generate the schema and data mapping`. + image::Screenshot 2024-04-17 at 5.55.35 PM.png[] @@ -78,21 +81,22 @@ image::config-mapping-1.png[] + image::config-mapping-2.png[width=400] -. Click the btn:[Token Function] button to configure token functions for the selected source. For more details of configuring token functions, please refer to xref:cloud4:graph-development:load-data/token-function.adoc[Token Function]. +. Click the btn:[Token Function] button to configure token functions for the selected source. For more details of configuring token functions, please refer to xref:savanna:graph-development:load-data/token-function.adoc[Token Function]. . Click the btn:[Quick Map] button to quickly map the data source headers to the existing schema attributes. + image::quick-map.png[] + .. The btn:[Map all to target] button aligns existing attribute names with the corresponding data source headers, it won't introduce new attributes. - .. The btn:[Map all from source] button not only aligns existing attribute names with the corresponding dat asource headers, but also introduces new attributes based on unmatched data source headers. - .. The following list shows the mapping status of each attribute, you can manually adjust the mapping by checking the box next to the attribute name. + .. The btn:[Map all from source] button not only aligns existing attribute names with the corresponding data asource headers, but also introduces new attributes based on unmatched data source headers. + .. The following list shows the mapping status of each attribute. You can manually adjust the mapping by checking the box next to the attribute name. . Click btn:[Next] to proceed. == 4) Confirm -.This step will let you confirm the changes made to the schema and the data mapping you created to load the data. +This step will let you confirm the changes made to the schema and the data mapping you created to load the data. + . Simply review the `Schema to be changed` and `Data to be loaded` lists. + image::confirm.png[] @@ -107,8 +111,8 @@ image::Screenshot 2024-04-17 at 5.59.16 PM.png[] == Next Steps -Next, learn how to use xref:cloud4:graph-development:design-schema/index.adoc[Design Schema], xref:cloud4:graph-development:gsql-editor/index.adoc[GSQL Editor] and xref:cloud4:graph-development:explore-graph/index.adoc[Explore Graph] in TigerGraph Cloud 4. +Next, learn how to use xref:savanna:graph-development:design-schema/index.adoc[Design Schema], xref:savanna:graph-development:gsql-editor/index.adoc[GSQL Editor] and xref:savanna:graph-development:explore-graph/index.adoc[Explore Graph] in TigerGraph Savanna. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/savanna/modules/graph-development/pages/load-data/load-from-snowflake.adoc b/modules/savanna/modules/graph-development/pages/load-data/load-from-snowflake.adoc new file mode 100644 index 00000000..50a5f33f --- /dev/null +++ b/modules/savanna/modules/graph-development/pages/load-data/load-from-snowflake.adoc @@ -0,0 +1,89 @@ += Load from Snowflake +:experimental: + +TigerGraph Savanna allows you to load data directly from Snowflake. This guide will walk you through the steps to configure and load data from Snowflake into your TigerGraph workspace. + +== 1) Select Source + +Once you’ve selected btn:[Snowflake], you will be asked to configure the Snowflake data source. + +. Click on image:Screenshot 2024-04-17 at 9.36.58 PM.png[width=50] to add a new Snowflake data source. ++ +image:gcs-empty-data-source.png[] + +. You will need to provide your `Snowflake username`, `Snowflake password`, and `Snowflake URL`. ++ +image:snowflake-connection-details.png[] +. Once you have those configured, you can select one or more `Table` and `View` within the Snowflake account. + +. Click btn:[ Connect ] to fetch the Table(s) and View(s). ++ +image:snowflake-tables.png[] + +. Click btn:[ Next ] to process the Table(s). + +== 2) Configure File +This step lets you view the source details. + +. The data loading tool will automatically fetch the sample data. ++ +image::snowflake-sample-data.png[] + +. Once you are satisfied with the sample data, click btn:[ Next ] to proceed. + +== 3) Configure Map + +If you are loading data into a brand new graph, you will be prompted to let our engine generate a schema and mapping for you. Or you can start from scratch. For more details of schema design please refer to xref:savanna:graph-development:design-schema/index.adoc[Design Schema]. + +. Select `Generate the schema only` or `Generate the schema and data mapping`. ++ +image::Screenshot 2024-04-17 at 5.55.35 PM.png[] ++ +[CAUTION] +==== +The schema generation feature is still a preview feature. The correctness and efficiency of the resulting graph schema and mapping could vary. +==== + +. In the `Source` column, you can choose the specific column from the data source that you want to map with the attribute. ++ +image::config-mapping-snowflake-1.png[] ++ +. Use the `+` button to create a new attribute of the target vertex or edge. ++ +image::config-mapping-2.png[width=400] + +. Click the btn:[Token Function] button to configure token functions for the selected source. For more details of configuring token functions, please refer to xref:savanna:graph-development:load-data/token-function.adoc[Token Function]. + +. Click the btn:[Quick Map] button to quickly map the data source headers to the existing schema attributes. ++ +image::quick-map-snowflake.png[] ++ + .. The btn:[Map all to target] button aligns existing attribute names with the corresponding data source headers, it won't introduce new attributes. + .. The btn:[Map all from source] button not only aligns existing attribute names with the corresponding data asource headers, but also introduces new attributes based on unmatched data source headers. + .. The following list shows the mapping status of each attribute. You can manually adjust the mapping by checking the box next to the attribute name. + +. Click btn:[Next] to proceed. + +== 4) Confirm + +This step will let you confirm the changes made to the schema and the data mapping you created to load the data. + +. Simply review the `Schema to be changed` and `Data to be loaded` lists. ++ +image::confirm-snowflake.png[] ++ +[CAUTION] +==== +Please be aware that some schema changes will result in unintentional deletion of the data. Please carefully review the warning message before confirming the loading. +==== +. Click on the btn:[Confirm] button to run the loading jobs and monitor their `Status`. ++ +image::load-data-snowflake.png[] + +== Next Steps + +Next, learn how to use xref:savanna:graph-development:design-schema/index.adoc[Design Schema], xref:savanna:graph-development:gsql-editor/index.adoc[GSQL Editor] and xref:savanna:graph-development:explore-graph/index.adoc[Explore Graph] in TigerGraph Savanna. + +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. + + diff --git a/modules/cloud4/modules/graph-development/pages/load-data/token-function.adoc b/modules/savanna/modules/graph-development/pages/load-data/token-function.adoc similarity index 69% rename from modules/cloud4/modules/graph-development/pages/load-data/token-function.adoc rename to modules/savanna/modules/graph-development/pages/load-data/token-function.adoc index 7ba4e101..77dc0e05 100644 --- a/modules/cloud4/modules/graph-development/pages/load-data/token-function.adoc +++ b/modules/savanna/modules/graph-development/pages/load-data/token-function.adoc @@ -1,7 +1,7 @@ = Token Function :experimental: -TigerGraph Cloud 4 allows you to enhance your data loading process by adding token functions. Token functions enable you to manipulate and transform data during the loading process, making it easier to prepare your data for graph analysis. This guide will walk you through the steps to add token functions using the TigerGraph Cloud UI. For more details please refer to xref:gsql-ref:ddl-and-loading:functions:token.adoc[Token Functions]. +TigerGraph Savanna allows you to enhance your data loading process by adding token functions. Token functions enable you to manipulate and transform data during the loading process, making it easier to prepare your data for graph analysis. This guide will walk you through the steps to add token functions using the TigerGraph Savanna UI. For more details please refer to xref:4.1@gsql-ref:ddl-and-loading:functions/token/index.adoc[Token Functions]. == Add a token function . Click on the btn:[Token Function] button to configure token functions for your data source. @@ -14,7 +14,7 @@ image::config-mapping-2.png[width=400] image::token-function-1.png[] + -. Select the token function you want to use from the `Type` dropdown menu. This will automatically populate the output data type and the required parameters. You can also check the sample input and output by hovering over the btn:[?] icon. Please refer to the xref:gsql-ref:ddl-and-loading:functions:token.adoc[Token Functions] documentation for more details. +. Select the token function you want to use from the `Type` dropdown menu. This will automatically populate the output data type and the required parameters. You can also check the sample input and output by hovering over the btn:[?] icon. Please refer to the xref:4.1@gsql-ref:ddl-and-loading:functions/token/index.adoc[Token Functions] documentation for more details. + image::token-function-3.png[] @@ -42,11 +42,11 @@ You can also apply nested token functions to maximize the potential of TigerGrap + [NOTE] ==== -Custom token functions are not supported in the TigerGraph Cloud 4 UI. +Custom token functions are not supported in the TigerGraph Savanna UI. ==== == Next Steps -Next, learn more about how to xref:cloud4:graph-development:load-data/index.adoc[]. +Next, learn more about how to xref:savanna:graph-development:load-data/index.adoc[]. -Or return to the xref:cloud4:workgroup-workspace:index.adoc[] page or xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:workgroup-workspace:index.adoc[] page or xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git "a/modules/cloud4/modules/integrations/images/Screenshot 2024-04-18 at 10.17.39\342\200\257AM.png" "b/modules/savanna/modules/integrations/images/Screenshot 2024-04-18 at 10.17.39\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/integrations/images/Screenshot 2024-04-18 at 10.17.39\342\200\257AM.png" rename to "modules/savanna/modules/integrations/images/Screenshot 2024-04-18 at 10.17.39\342\200\257AM.png" diff --git "a/modules/cloud4/modules/integrations/images/Screenshot 2024-04-18 at 10.18.19\342\200\257AM.png" "b/modules/savanna/modules/integrations/images/Screenshot 2024-04-18 at 10.18.19\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/integrations/images/Screenshot 2024-04-18 at 10.18.19\342\200\257AM.png" rename to "modules/savanna/modules/integrations/images/Screenshot 2024-04-18 at 10.18.19\342\200\257AM.png" diff --git "a/modules/cloud4/modules/integrations/images/Screenshot 2024-04-18 at 10.18.53\342\200\257AM.png" "b/modules/savanna/modules/integrations/images/Screenshot 2024-04-18 at 10.18.53\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/integrations/images/Screenshot 2024-04-18 at 10.18.53\342\200\257AM.png" rename to "modules/savanna/modules/integrations/images/Screenshot 2024-04-18 at 10.18.53\342\200\257AM.png" diff --git "a/modules/cloud4/modules/integrations/images/Screenshot 2024-04-18 at 10.19.26\342\200\257AM.png" "b/modules/savanna/modules/integrations/images/Screenshot 2024-04-18 at 10.19.26\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/integrations/images/Screenshot 2024-04-18 at 10.19.26\342\200\257AM.png" rename to "modules/savanna/modules/integrations/images/Screenshot 2024-04-18 at 10.19.26\342\200\257AM.png" diff --git "a/modules/cloud4/modules/integrations/images/Screenshot 2024-04-26 at 8.22.55\342\200\257AM.png" "b/modules/savanna/modules/integrations/images/Screenshot 2024-04-26 at 8.22.55\342\200\257AM.png" similarity index 100% rename from "modules/cloud4/modules/integrations/images/Screenshot 2024-04-26 at 8.22.55\342\200\257AM.png" rename to "modules/savanna/modules/integrations/images/Screenshot 2024-04-26 at 8.22.55\342\200\257AM.png" diff --git "a/modules/cloud4/modules/integrations/images/Screenshot 2024-04-27 at 2.34.38\342\200\257PM.png" "b/modules/savanna/modules/integrations/images/Screenshot 2024-04-27 at 2.34.38\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/integrations/images/Screenshot 2024-04-27 at 2.34.38\342\200\257PM.png" rename to "modules/savanna/modules/integrations/images/Screenshot 2024-04-27 at 2.34.38\342\200\257PM.png" diff --git "a/modules/cloud4/modules/integrations/images/Screenshot 2024-04-27 at 2.34.48\342\200\257PM.png" "b/modules/savanna/modules/integrations/images/Screenshot 2024-04-27 at 2.34.48\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/integrations/images/Screenshot 2024-04-27 at 2.34.48\342\200\257PM.png" rename to "modules/savanna/modules/integrations/images/Screenshot 2024-04-27 at 2.34.48\342\200\257PM.png" diff --git a/modules/cloud4/modules/integrations/images/add-graphql-addon.png b/modules/savanna/modules/integrations/images/add-graphql-addon.png similarity index 100% rename from modules/cloud4/modules/integrations/images/add-graphql-addon.png rename to modules/savanna/modules/integrations/images/add-graphql-addon.png diff --git a/modules/cloud4/modules/integrations/images/add-graphstudio-addon.png b/modules/savanna/modules/integrations/images/add-graphstudio-addon.png similarity index 100% rename from modules/cloud4/modules/integrations/images/add-graphstudio-addon.png rename to modules/savanna/modules/integrations/images/add-graphstudio-addon.png diff --git a/modules/cloud4/modules/integrations/images/add-insights-addon.png b/modules/savanna/modules/integrations/images/add-insights-addon.png similarity index 100% rename from modules/cloud4/modules/integrations/images/add-insights-addon.png rename to modules/savanna/modules/integrations/images/add-insights-addon.png diff --git "a/modules/cloud4/modules/integrations/images/add-on-images/Screenshot 2024-04-27 at 1.57.35\342\200\257PM.png" "b/modules/savanna/modules/integrations/images/add-on-images/Screenshot 2024-04-27 at 1.57.35\342\200\257PM.png" similarity index 100% rename from "modules/cloud4/modules/integrations/images/add-on-images/Screenshot 2024-04-27 at 1.57.35\342\200\257PM.png" rename to "modules/savanna/modules/integrations/images/add-on-images/Screenshot 2024-04-27 at 1.57.35\342\200\257PM.png" diff --git a/modules/cloud4/modules/integrations/images/addon-nav.png b/modules/savanna/modules/integrations/images/addon-nav.png similarity index 100% rename from modules/cloud4/modules/integrations/images/addon-nav.png rename to modules/savanna/modules/integrations/images/addon-nav.png diff --git a/modules/cloud4/modules/integrations/images/billing-homecard.png b/modules/savanna/modules/integrations/images/billing-homecard.png similarity index 100% rename from modules/cloud4/modules/integrations/images/billing-homecard.png rename to modules/savanna/modules/integrations/images/billing-homecard.png diff --git a/modules/cloud4/modules/integrations/images/create-organization.png b/modules/savanna/modules/integrations/images/create-organization.png similarity index 100% rename from modules/cloud4/modules/integrations/images/create-organization.png rename to modules/savanna/modules/integrations/images/create-organization.png diff --git a/modules/cloud4/modules/integrations/images/disable-graphql-addon.png b/modules/savanna/modules/integrations/images/disable-graphql-addon.png similarity index 100% rename from modules/cloud4/modules/integrations/images/disable-graphql-addon.png rename to modules/savanna/modules/integrations/images/disable-graphql-addon.png diff --git a/modules/cloud4/modules/integrations/images/disable-graphstudio-addon.png b/modules/savanna/modules/integrations/images/disable-graphstudio-addon.png similarity index 100% rename from modules/cloud4/modules/integrations/images/disable-graphstudio-addon.png rename to modules/savanna/modules/integrations/images/disable-graphstudio-addon.png diff --git a/modules/cloud4/modules/integrations/images/disable-insights-addon.png b/modules/savanna/modules/integrations/images/disable-insights-addon.png similarity index 100% rename from modules/cloud4/modules/integrations/images/disable-insights-addon.png rename to modules/savanna/modules/integrations/images/disable-insights-addon.png diff --git a/modules/cloud4/modules/integrations/images/documentation-homecard.png b/modules/savanna/modules/integrations/images/documentation-homecard.png similarity index 100% rename from modules/cloud4/modules/integrations/images/documentation-homecard.png rename to modules/savanna/modules/integrations/images/documentation-homecard.png diff --git a/modules/cloud4/modules/integrations/images/enable-graphql-addon.png b/modules/savanna/modules/integrations/images/enable-graphql-addon.png similarity index 100% rename from modules/cloud4/modules/integrations/images/enable-graphql-addon.png rename to modules/savanna/modules/integrations/images/enable-graphql-addon.png diff --git a/modules/cloud4/modules/integrations/images/enable-graphstudio-addon.png b/modules/savanna/modules/integrations/images/enable-graphstudio-addon.png similarity index 100% rename from modules/cloud4/modules/integrations/images/enable-graphstudio-addon.png rename to modules/savanna/modules/integrations/images/enable-graphstudio-addon.png diff --git a/modules/cloud4/modules/integrations/images/enable-insights-addon.png b/modules/savanna/modules/integrations/images/enable-insights-addon.png similarity index 100% rename from modules/cloud4/modules/integrations/images/enable-insights-addon.png rename to modules/savanna/modules/integrations/images/enable-insights-addon.png diff --git a/modules/cloud4/modules/integrations/images/getstarted-homecard.png b/modules/savanna/modules/integrations/images/getstarted-homecard.png similarity index 100% rename from modules/cloud4/modules/integrations/images/getstarted-homecard.png rename to modules/savanna/modules/integrations/images/getstarted-homecard.png diff --git a/modules/cloud4/modules/integrations/images/referece-homecard.png b/modules/savanna/modules/integrations/images/referece-homecard.png similarity index 100% rename from modules/cloud4/modules/integrations/images/referece-homecard.png rename to modules/savanna/modules/integrations/images/referece-homecard.png diff --git a/modules/cloud4/modules/integrations/images/security-homecard.png b/modules/savanna/modules/integrations/images/security-homecard.png similarity index 100% rename from modules/cloud4/modules/integrations/images/security-homecard.png rename to modules/savanna/modules/integrations/images/security-homecard.png diff --git a/modules/cloud4/modules/integrations/images/systemmanagment-homecard.png b/modules/savanna/modules/integrations/images/systemmanagment-homecard.png similarity index 100% rename from modules/cloud4/modules/integrations/images/systemmanagment-homecard.png rename to modules/savanna/modules/integrations/images/systemmanagment-homecard.png diff --git a/modules/cloud4/modules/integrations/images/tools-page.png b/modules/savanna/modules/integrations/images/tools-page.png similarity index 100% rename from modules/cloud4/modules/integrations/images/tools-page.png rename to modules/savanna/modules/integrations/images/tools-page.png diff --git a/modules/cloud4/modules/integrations/nav.adoc b/modules/savanna/modules/integrations/nav.adoc similarity index 74% rename from modules/cloud4/modules/integrations/nav.adoc rename to modules/savanna/modules/integrations/nav.adoc index ea5320b6..c549da25 100644 --- a/modules/cloud4/modules/integrations/nav.adoc +++ b/modules/savanna/modules/integrations/nav.adoc @@ -3,6 +3,6 @@ ** xref:add-ons.adoc[] *** xref:graphstudio.adoc[] *** xref:insights.adoc[] -*** xref:cloud4:integrations:graphql.adoc[] +*** xref:savanna:integrations:graphql.adoc[] diff --git a/modules/cloud4/modules/integrations/pages/add-ons.adoc b/modules/savanna/modules/integrations/pages/add-ons.adoc similarity index 69% rename from modules/cloud4/modules/integrations/pages/add-ons.adoc rename to modules/savanna/modules/integrations/pages/add-ons.adoc index 97247c02..c181864c 100644 --- a/modules/cloud4/modules/integrations/pages/add-ons.adoc +++ b/modules/savanna/modules/integrations/pages/add-ons.adoc @@ -1,20 +1,20 @@ = Add-Ons -Extend the capabilities of TigerGraph Cloud 4 with add-ons tailored to your needs. +Extend the capabilities of TigerGraph Savanna with add-ons tailored to your needs. Add-ons provide additional functionalities and integrations that enhance your graph database workflow. -Whether you need advanced analytics, machine learning integration, or data visualization tools, TigerGraph Cloud offers a range of add-ons to choose from. +Whether you need advanced analytics, machine learning integration, or data visualization tools, TigerGraph Savanna offers a range of add-ons to choose from. Explore the available add-ons and learn how to incorporate them into your graph database workflow, enabling you to unlock even more value from your graph data. -== xref:cloud4:integrations:insights.adoc[] +== xref:savanna:integrations:insights.adoc[] TigerGraph Insights is a no-code visual graph analyzer that makes building data analytics dashboards intuitive. -== xref:cloud4:integrations:graphstudio.adoc[GraphStudio™] +== xref:savanna:integrations:graphstudio.adoc[GraphStudio™] The GraphStudio™ design interface offers a range of features and tools to simplify the graph development process. -== xref:cloud4:integrations:graphql.adoc[] +== xref:savanna:integrations:graphql.adoc[] TigerGraph GraphQL enables users to access and modify graph data in TigerGraph using GraphQL queries. diff --git a/modules/cloud4/modules/integrations/pages/graphql.adoc b/modules/savanna/modules/integrations/pages/graphql.adoc similarity index 83% rename from modules/cloud4/modules/integrations/pages/graphql.adoc rename to modules/savanna/modules/integrations/pages/graphql.adoc index 9f47d72f..6da45985 100644 --- a/modules/cloud4/modules/integrations/pages/graphql.adoc +++ b/modules/savanna/modules/integrations/pages/graphql.adoc @@ -31,7 +31,7 @@ image::disable-graphql-addon.png[width=350] == Next Steps -Now, learn about additional add-ons on the xref:integrations:index.adoc[] page or continue on to learn about the xref:administration:index.adoc[Administration] features or xref:cloud4:administration:security/index.adoc[] in TigerGraph Cloud 4. +Now, learn about additional add-ons on the xref:integrations:index.adoc[] page or continue on to learn about the xref:administration:index.adoc[Administration] features or xref:savanna:administration:security/index.adoc[] in TigerGraph Savanna. -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/integrations/pages/graphstudio.adoc b/modules/savanna/modules/integrations/pages/graphstudio.adoc similarity index 86% rename from modules/cloud4/modules/integrations/pages/graphstudio.adoc rename to modules/savanna/modules/integrations/pages/graphstudio.adoc index efe283a9..3e75ba22 100644 --- a/modules/cloud4/modules/integrations/pages/graphstudio.adoc +++ b/modules/savanna/modules/integrations/pages/graphstudio.adoc @@ -32,7 +32,7 @@ image::disable-graphstudio-addon.png[width=350] == Next Steps -Now, learn about additional add-ons on the xref:integrations:index.adoc[] page or continue on to learn about the xref:administration:index.adoc[Administration] features or xref:cloud4:administration:security/index.adoc[] in TigerGraph Cloud 4. +Now, learn about additional add-ons on the xref:integrations:index.adoc[] page or continue on to learn about the xref:administration:index.adoc[Administration] features or xref:savanna:administration:security/index.adoc[] in TigerGraph Savanna. -Return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/integrations/pages/how2-use-soultions.adoc b/modules/savanna/modules/integrations/pages/how2-use-soultions.adoc similarity index 100% rename from modules/cloud4/modules/integrations/pages/how2-use-soultions.adoc rename to modules/savanna/modules/integrations/pages/how2-use-soultions.adoc diff --git a/modules/savanna/modules/integrations/pages/index.adoc b/modules/savanna/modules/integrations/pages/index.adoc new file mode 100644 index 00000000..4d64fbea --- /dev/null +++ b/modules/savanna/modules/integrations/pages/index.adoc @@ -0,0 +1,23 @@ += Marketplace Overview +:experimental: + +TigerGraph Savanna seamlessly integrates with various tools and services to enhance your graph database workflow. + +== xref:savanna:integrations:add-ons.adoc[] + +Learn how to extend the capabilities of TigerGraph Savanna with add-ons tailored to your needs. + +* xref:savanna:integrations:insights.adoc[] +* xref:savanna:integrations:graphstudio.adoc[] +* xref:savanna:integrations:graphql.adoc[] + +== xref:savanna:integrations:solutions.adoc[] + +Here you can learn about our array of industry standard prebuilt solutions for diverse industries and use cases. +Designed for users to swiftly adopt graph technology. + +== Next Steps + +Now learn about xref:administration:index.adoc[Administration] features or xref:savanna:administration:security/index.adoc[] in TigerGraph Savanna. + +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/integrations/pages/insights.adoc b/modules/savanna/modules/integrations/pages/insights.adoc similarity index 84% rename from modules/cloud4/modules/integrations/pages/insights.adoc rename to modules/savanna/modules/integrations/pages/insights.adoc index 9423ea68..e3cdded7 100644 --- a/modules/cloud4/modules/integrations/pages/insights.adoc +++ b/modules/savanna/modules/integrations/pages/insights.adoc @@ -31,6 +31,6 @@ image::disable-insights-addon.png[width=350] == Next Steps -Now, learn about additional add-ons on the xref:integrations:index.adoc[] page or continue on to learn about the xref:administration:index.adoc[Administration] features or xref:cloud4:administration:security/index.adoc[] in TigerGraph Cloud 4. +Now, learn about additional add-ons on the xref:integrations:index.adoc[] page or continue on to learn about the xref:administration:index.adoc[Administration] features or xref:savanna:administration:security/index.adoc[] in TigerGraph Savanna. -Or return to the xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/integrations/pages/solutions.adoc b/modules/savanna/modules/integrations/pages/solutions.adoc similarity index 85% rename from modules/cloud4/modules/integrations/pages/solutions.adoc rename to modules/savanna/modules/integrations/pages/solutions.adoc index 13c86b19..1ed9b9e9 100644 --- a/modules/cloud4/modules/integrations/pages/solutions.adoc +++ b/modules/savanna/modules/integrations/pages/solutions.adoc @@ -1,7 +1,7 @@ = Solutions :experimental: -TigerGraph Cloud 4 offers pre-built solution kits that address common use cases and industry-specific challenges. +TigerGraph Savanna offers pre-built solution kits that address common use cases and industry-specific challenges. These solutions provide a starting point for your graph database projects, offering pre-configured schemas, sample data, and query templates. [TIP] @@ -17,7 +17,7 @@ We limit the number of solutions that can be installed in a workspace to one to Explore the available solutions and experiment with them in your own specific use cases. == Prerequisites -To start creating your first solution you will need to have a xref:cloud4:workgroup-workspace:workspaces/readwrite-readonly.adoc#_read_write_rw_workspace[Read-Write Workspace] already created. +To start creating your first solution you will need to have a xref:savanna:workgroup-workspace:workspaces/readwrite-readonly.adoc#_read_write_rw_workspace[Read-Write Workspace] already created. == Get Started with Solutions @@ -61,7 +61,7 @@ You can import your data from various sources, such as CSV files, databases, or + [TIP] ==== -For more details on loading data see xref:cloud4:graph-development:load-data/index.adoc[]. +For more details on loading data see xref:savanna:graph-development:load-data/index.adoc[]. ==== * *No Data*: If you choose the btn:[No Data] option, the solution kit will be set up without any pre-loaded or user-provided data. @@ -78,7 +78,7 @@ image::Screenshot 2024-04-18 at 10.19.26 AM.png[] == Next Steps -Now, learn about additional add-ons on the xref:integrations:index.adoc[] page or continue on to learn more about xref:cloud4:administration:security/index.adoc[] in TigerGraph Cloud 4. +Now, learn about additional add-ons on the xref:integrations:index.adoc[] page or continue on to learn more about xref:savanna:administration:security/index.adoc[] in TigerGraph Savanna. -Or return to the page to xref:cloud4:overview:index.adoc[Overview] page for a different topic. +Or return to the page to xref:savanna:overview:index.adoc[Overview] page for a different topic. diff --git a/modules/cloud4/modules/overview/images/ArchtectureOverview-homecard.png b/modules/savanna/modules/overview/images/ArchtectureOverview-homecard.png similarity index 100% rename from modules/cloud4/modules/overview/images/ArchtectureOverview-homecard.png rename to modules/savanna/modules/overview/images/ArchtectureOverview-homecard.png diff --git a/modules/cloud4/modules/overview/images/DataLoading-Homecard.png b/modules/savanna/modules/overview/images/DataLoading-Homecard.png similarity index 100% rename from modules/cloud4/modules/overview/images/DataLoading-Homecard.png rename to modules/savanna/modules/overview/images/DataLoading-Homecard.png diff --git a/modules/cloud4/modules/overview/images/TG_Icon_Library-135.png b/modules/savanna/modules/overview/images/TG_Icon_Library-135.png similarity index 100% rename from modules/cloud4/modules/overview/images/TG_Icon_Library-135.png rename to modules/savanna/modules/overview/images/TG_Icon_Library-135.png diff --git a/modules/cloud4/modules/overview/images/TG_Icon_Library-218.png b/modules/savanna/modules/overview/images/TG_Icon_Library-218.png similarity index 100% rename from modules/cloud4/modules/overview/images/TG_Icon_Library-218.png rename to modules/savanna/modules/overview/images/TG_Icon_Library-218.png diff --git a/modules/cloud4/modules/overview/images/billing-homecard.png b/modules/savanna/modules/overview/images/billing-homecard.png similarity index 100% rename from modules/cloud4/modules/overview/images/billing-homecard.png rename to modules/savanna/modules/overview/images/billing-homecard.png diff --git a/modules/cloud4/modules/overview/images/cloud4-architecture.png b/modules/savanna/modules/overview/images/cloud4-architecture.png similarity index 100% rename from modules/cloud4/modules/overview/images/cloud4-architecture.png rename to modules/savanna/modules/overview/images/cloud4-architecture.png diff --git a/modules/cloud4/modules/overview/images/create-organization.png b/modules/savanna/modules/overview/images/create-organization.png similarity index 100% rename from modules/cloud4/modules/overview/images/create-organization.png rename to modules/savanna/modules/overview/images/create-organization.png diff --git a/modules/cloud4/modules/overview/images/documentation-homecard.png b/modules/savanna/modules/overview/images/documentation-homecard.png similarity index 100% rename from modules/cloud4/modules/overview/images/documentation-homecard.png rename to modules/savanna/modules/overview/images/documentation-homecard.png diff --git a/modules/cloud4/modules/overview/images/edtions-homecard.png b/modules/savanna/modules/overview/images/edtions-homecard.png similarity index 100% rename from modules/cloud4/modules/overview/images/edtions-homecard.png rename to modules/savanna/modules/overview/images/edtions-homecard.png diff --git a/modules/cloud4/modules/overview/images/getstarted-homecard.png b/modules/savanna/modules/overview/images/getstarted-homecard.png similarity index 100% rename from modules/cloud4/modules/overview/images/getstarted-homecard.png rename to modules/savanna/modules/overview/images/getstarted-homecard.png diff --git a/modules/cloud4/modules/overview/images/insights.png b/modules/savanna/modules/overview/images/insights.png similarity index 100% rename from modules/cloud4/modules/overview/images/insights.png rename to modules/savanna/modules/overview/images/insights.png diff --git a/modules/cloud4/modules/overview/images/referece-homecard.png b/modules/savanna/modules/overview/images/referece-homecard.png similarity index 100% rename from modules/cloud4/modules/overview/images/referece-homecard.png rename to modules/savanna/modules/overview/images/referece-homecard.png diff --git a/modules/savanna/modules/overview/images/savanna-architecture.png b/modules/savanna/modules/overview/images/savanna-architecture.png new file mode 100644 index 00000000..dd99aced Binary files /dev/null and b/modules/savanna/modules/overview/images/savanna-architecture.png differ diff --git a/modules/cloud4/modules/overview/images/schema-homecard.png b/modules/savanna/modules/overview/images/schema-homecard.png similarity index 100% rename from modules/cloud4/modules/overview/images/schema-homecard.png rename to modules/savanna/modules/overview/images/schema-homecard.png diff --git a/modules/cloud4/modules/overview/images/security-homecard.png b/modules/savanna/modules/overview/images/security-homecard.png similarity index 100% rename from modules/cloud4/modules/overview/images/security-homecard.png rename to modules/savanna/modules/overview/images/security-homecard.png diff --git a/modules/cloud4/modules/overview/images/systemmanagment-homecard.png b/modules/savanna/modules/overview/images/systemmanagment-homecard.png similarity index 100% rename from modules/cloud4/modules/overview/images/systemmanagment-homecard.png rename to modules/savanna/modules/overview/images/systemmanagment-homecard.png diff --git a/modules/cloud4/modules/overview/images/tools-page.png b/modules/savanna/modules/overview/images/tools-page.png similarity index 100% rename from modules/cloud4/modules/overview/images/tools-page.png rename to modules/savanna/modules/overview/images/tools-page.png diff --git a/modules/savanna/modules/overview/nav.adoc b/modules/savanna/modules/overview/nav.adoc new file mode 100644 index 00000000..c5e3b950 --- /dev/null +++ b/modules/savanna/modules/overview/nav.adoc @@ -0,0 +1,8 @@ +* xref:index.adoc[Introduction] +** xref:savanna:overview:overview.adoc[Overview] +// ** xref:savanna:overview:architecture.adoc[Architecture] +** xref:savanna:overview:comparison_table.adoc[Compare Different Offerings] +** xref:savanna:overview:release-notes.adoc[Release Notes] +** xref:savanna:overview:pricing.adoc[] +** xref:savanna:overview:cost-estimation.adoc[] + diff --git a/modules/cloud4/modules/overview/pages/architecture.adoc b/modules/savanna/modules/overview/pages/architecture.adoc similarity index 85% rename from modules/cloud4/modules/overview/pages/architecture.adoc rename to modules/savanna/modules/overview/pages/architecture.adoc index cfb5c0dd..97e4de34 100644 --- a/modules/cloud4/modules/overview/pages/architecture.adoc +++ b/modules/savanna/modules/overview/pages/architecture.adoc @@ -1,15 +1,15 @@ -= TigerGraph Cloud 4 Architecture += TigerGraph Savanna Architecture :experimental: :toc: :toclevels:2 -Welcome to the TigerGraph Cloud 4 Architecture documentation. This guide provides an in-depth look at the architecture of TigerGraph Cloud 4, detailing its components, design principles, and how it ensures performance, scalability, and reliability for your graph database applications. +Welcome to the TigerGraph Savanna Architecture documentation. This guide provides an in-depth look at the architecture of TigerGraph Savanna, detailing its components, design principles, and how it ensures performance, scalability, and reliability for your graph database applications. == Overview -These key features of TigerGraph Cloud 4 collectively provide a powerful and user-friendly environment for organizations to perform advanced graph analytics, gain valuable insights from interconnected data, and drive data-driven decision-making and innovation. +These key features of TigerGraph Savanna collectively provide a powerful and user-friendly environment for organizations to perform advanced graph analytics, gain valuable insights from interconnected data, and drive data-driven decision-making and innovation. === Separation of Storage and Compute We introduce a unique architecture that separates storage and compute, allowing users to scale resources independently. @@ -35,18 +35,18 @@ Designed with user convenience in mind, the GSQL Editor offers a user-friendly i With syntax highlighting, code completion, query execution, and debugging capabilities, users can easily develop and fine tune their graph queries. Additionally, the GSQL Editor enables seamless collaboration within organizations by allowing users to share GSQL files, fostering teamwork and facilitating efficient collaboration among colleagues. === Graph Explorer -TigerGraph Cloud 4 features a Graph Explorer, a visual interface that allows users to interactively explore and analyze the graph data. +TigerGraph Savanna features a Graph Explorer, a visual interface that allows users to interactively explore and analyze the graph data. The Graph Explorer provides a rich set of visualization tools, including graph visualizations, charts, and tables, enabling users to gain insights and discover patterns in their data. It offers intuitive navigation, filtering, and querying capabilities, making it easier for users to explore and understand the relationships and connections within their graph data. === Auto Data Profiles -TigerGraph Cloud 4 incorporates auto data profile capabilities that automatically find data insights for users without prior knowledge of their schema and query. +TigerGraph Savanna incorporates auto data profile capabilities that automatically find data insights for users without prior knowledge of their schema and query. This feature leverages advanced algorithms and machine learning techniques to analyze the graph data and identify meaningful patterns, relationships, and insights. It helps users discover valuable information within their data even if they are not familiar with the underlying data structure or query language. == Next Steps -Next, to understand how TigerGraph cloud differs from other TigerGraph offerings, see xref:overview:comparison_table.adoc[] or see xref:cloud4:get-started:index.adoc[] to unlock its full potential. +Next, to understand how TigerGraph Savanna differs from other TigerGraph offerings, see xref:overview:comparison_table.adoc[] or see xref:savanna:get-started:index.adoc[] to unlock its full potential. -Return to xref:cloud4:overview:index.adoc[TigerGraph Cloud 4] for another topic. +Return to xref:savanna:overview:index.adoc[TigerGraph Savanna] for another topic. diff --git a/modules/savanna/modules/overview/pages/comparison_table.adoc b/modules/savanna/modules/overview/pages/comparison_table.adoc new file mode 100644 index 00000000..3b39aacf --- /dev/null +++ b/modules/savanna/modules/overview/pages/comparison_table.adoc @@ -0,0 +1,57 @@ += Compare TigerGraph Offerings + +Most of the documentation for TigerGraph Enterprise Server also applies to TigerGraph Savanna. +Here are some differences between the different TigerGraph offerings. + +== Architecture and Deployment + +[cols="4", separator=|,options="header"] +|=== +| Topic | TigerGraph Enterprise Server | TigerGraph Cloud Classic | TigerGraph Savanna +| Architecture | Integrated storage and compute | Integrated storage and compute | Separate storage and compute +| Hardware and Software Requirements | Yes | N/A | N/A +| Installation and Configuration | Yes | Easy steps to install Starter Kit See the xref:cloud:support:faqs.adoc[]| Users can install solutions anytime +| Kubernetes Support | Yes, custom setup required | No | Yes, built-in support +| Amazon Web Service (AWS) | Yes, TigerGraph Lite or custom deployment | Yes | Yes +| Google Cloud Platform (GCP) | Yes, TigerGraph Lite or custom deployment | Yes | No, actively working on it +| Microsoft Azure | Yes, TigerGraph Lite or custom deployment | Yes | No, actively working on it +|=== + +== Features and Capabilities + +[cols="4", separator=|,options="header"] +|=== +| Topic | TigerGraph Enterprise Server | TigerGraph Cloud Classic | TigerGraph Savanna +| Release Notes | Yes | Kept up to date with 3.x releases | Latest 4.x releases +| GSQL Graph Algorithm Library | Yes | Yes | Yes +| Transaction Processing and ACID Support | Yes | Yes | Yes +| GSQL 101 | Yes | Basic concepts, most commands replaced with GraphStudio GUI | Fully supported using GSQL Editor +| GSQL 102 Pattern Matching | Yes | Same patterns in queries | Same patterns in queries +| MultiGraph Overview | Yes | Yes | Yes +| GraphStudio™ | Yes | Yes | Yes, add-on +| GSQL Demo Examples | Yes | Yes | Yes +| GSQL Language Reference, Part 1 (Data Definition & Loading) | Yes | GSQL Web Shell (Paid Tiers) supports Data Definition and Loading | Yes, Load Data UI +| GSQL Language Reference, Part 2 (Querying) | Yes | Yes | Yes, GSQL Editor +| RESTPP API User Guide | Yes | Cluster-specific URL | Connect From APIs on all workspaces +| Data Loader User Guides | Yes | S3 Loader & Kafka Loader via Web Shell | Yes, guides for local/S3/GCS/ABS files +| Schema Designer | Yes, GraphStudio™ | Yes, GraphStudio™ | Yes, Cloud Portal & GraphStudio™ +|=== + +== Security and Management + +[cols="4", separator=|,options="header"] +|=== +| Topic | TigerGraph Enterprise Server | TigerGraph Cloud Classic | TigerGraph Savanna +| User Access Management | Yes | Yes | Yes +| Data Encryption | Yes | Set up for encrypted data at rest and in motion | Set up for encrypted data at rest and in motion +| System Management | Yes | Enhanced Cloud Portal for backup and restore | Enhanced Cloud Portal for backup and restore +| HA and DR | Yes | Yes | Yes +| Monitoring | Custom setup with Informant APIs | TigerGraph Server Admin Portal | Built-in Grafana dashboard & Admin Portal +| Alerting | Custom setup required | No | Yes +|=== + +== Next Steps + +Next, see xref:savanna:get-started:index.adoc[] to unlock its full potential. + +Return to xref:savanna:overview:index.adoc[TigerGraph Savanna] for another topic. diff --git a/modules/cloud4/modules/overview/pages/cost-estimation.adoc b/modules/savanna/modules/overview/pages/cost-estimation.adoc similarity index 74% rename from modules/cloud4/modules/overview/pages/cost-estimation.adoc rename to modules/savanna/modules/overview/pages/cost-estimation.adoc index 2e78557a..92df5987 100644 --- a/modules/cloud4/modules/overview/pages/cost-estimation.adoc +++ b/modules/savanna/modules/overview/pages/cost-estimation.adoc @@ -1,6 +1,6 @@ = Cost Estimation -Here, you can configure various parameters to estimate your monthly costs for using TigerGraph Cloud 4. This tool allows you to tailor your workspace size, monthly usage, and database size to get a clear understanding of your anticipated expenses. +Here, you can configure various parameters to estimate your monthly costs for using TigerGraph Savanna. This tool allows you to tailor your workspace size, monthly usage, and database size to get a clear understanding of your anticipated expenses. ++++ @@ -26,6 +26,6 @@ Here, you can configure various parameters to estimate your monthly costs for us == Next Steps -Next, see xref:cloud4:get-started:index.adoc[] to unlock its full potential. +Next, see xref:savanna:get-started:index.adoc[] to unlock its full potential. -Return to xref:cloud4:overview:index.adoc[TigerGraph Cloud 4] for another topic. \ No newline at end of file +Return to xref:savanna:overview:index.adoc[TigerGraph Savanna] for another topic. \ No newline at end of file diff --git a/modules/savanna/modules/overview/pages/index.adoc b/modules/savanna/modules/overview/pages/index.adoc new file mode 100644 index 00000000..55578480 --- /dev/null +++ b/modules/savanna/modules/overview/pages/index.adoc @@ -0,0 +1,126 @@ += TigerGraph Savanna +:experimental: +:page-aliases: cloud-overview.adoc + +This documentation will guide you through the various features and functionalities of our brand new cloud-native Graph-as-a-Service (GaaS) management platform. + +TigerGraph Savanna (https://tgcloud.io) offers a powerful and user-friendly environment for managing, analyzing, and exploring your graph data. +It revolutionizes graph analytics by introducing a groundbreaking separation of compute and storage in its cloud-based graph database platform. + +//pass:[ToolTip Practice] + +//:tooltip: pass:[Hover over this text] + +//{tooltip} + +== Get to Know TigerGraph Savanna + +[.home-card,cols="2",grid=none,frame=none, separator=¦] +|=== +¦ +image:getstarted-homecard.png[alt=getstarted,width=74,height=74] +*Get Started* + +xref:savanna:get-started:index.adoc[Get Started] using TigerGraph Savanna or explore key features in our xref:overview:overview.adoc[]. + +xref:get-started:how2-signup.adoc[How to Sign Up] | +xref:savanna:get-started:how2-login.adoc[] +¦ +image:insights.png[alt=workspace,width=74,height=74] +*Workgroups and Workspaces* + +Learn how to dynamically allocate compute and storage resources. + +xref:workgroup-workspace:index.adoc[Overview] | +xref:workgroup-workspace:workgroups/workgroup.adoc[Workgroup] | +xref:workgroup-workspace:workspaces/workspace.adoc[Workspace] + +¦ +image:DataLoading-Homecard.png[alt=load data,width=74,height=74] +*Load Data* + +Learn how to Load Data into TigerGraph Savanna. + + + +xref:savanna:graph-development:load-data/index.adoc[Overview] | +xref:savanna:graph-development:load-data/load-from-local.adoc[Local] | +xref:savanna:graph-development:load-data/load-from-s3.adoc[Amazon S3] | +xref:savanna:graph-development:load-data/load-from-gcs.adoc[Google Cloud Storage] | +xref:savanna:graph-development:load-data/load-from-blob.adoc[Azure Blob Storage] | +xref:savanna:graph-development:load-data/load-from-other-sources.adoc[Other Sources] +¦ +image:TG_Icon_Library-135.png[alt=schemadesigner,width=74,height=74] +*Design Schema* + +xref:savanna:graph-development:design-schema/index.adoc[Design Schema] teaches you how you can easily modify and manage the schema of your graph databases using Schema Designer UI. + +¦ +image:schema-homecard.png[alt=gsqlEditor,width=74,height=74] +*GSQL Editor* + +The GSQL Editor is a powerful tool for developing and executing GSQL queries, allowing you to unlock insights from your graph databases. + +xref:savanna:graph-development:gsql-editor/index.adoc[Overview] | xref:savanna:graph-development:gsql-editor/how2-edit-gsql-query.adoc[] +¦ +image:TG_Icon_Library-218.png[alt=exploreGraph,width=74,height=74] +*Explore Graph* + +Visualize your data and navigate to understand complex connections and dependencies. + +xref:savanna:graph-development:explore-graph/index.adoc[Overview] | +xref:savanna:graph-development:explore-graph/how2-use-pattern-search.adoc[] + +¦ +image:ArchtectureOverview-homecard.png[alt=integration,width=74,height=74] +*Marketplace* + +TigerGraph Savanna offers several powerful integration tools. + +xref:savanna:integrations:index.adoc[Overview] | +xref:savanna:integrations:insights.adoc[] | +xref:savanna:integrations:graphstudio.adoc[] | +xref:savanna:integrations:graphql.adoc[] +¦ +image:edtions-homecard.png[alt=billing,width=74,height=74] +*Administration* + +Here you can learn about the tools available for organizational administrators. + +xref:savanna:administration:index.adoc[Overview] | +xref:savanna:administration:how2-invite-users.adoc[] | +xref:savanna:administration:how2-access-mgnt.adoc[] | +xref:savanna:administration:settings/how2-use-organization-mgnt.adoc[Org Management] +¦ +image:security-homecard.png[alt=security,width=74,height=74] +*Security* + +Learn about xref:savanna:administration:security/index.adoc[] in TigerGraph Savanna. + +xref:savanna:administration:security/password-policy.adoc[] | +xref:savanna:administration:security/idp.adoc[] +¦ +image:billing-homecard.png[alt=billing,width=74,height=74] +*Billing* + +The xref:savanna:administration:billing/index.adoc[Billing] window allows users to pay only for their specific usage of storage, data access, and compute resources. + +xref:savanna:administration:billing/payment-methods.adoc[] | +xref:savanna:administration:billing/invoices.adoc[] | +xref:savanna:overview:pricing.adoc[] +¦ +image:referece-homecard.png[alt=support,width=74,height=74] +*Release Notes* + +View the xref:savanna:overview:release-notes.adoc[Release Notes] to get update information on features and releases. +¦ +image:documentation-homecard.png[alt=support,width=74,height=74] +*Resources* + +View any additional xref:resources:index.adoc[Resources] for TigerGraph Savanna. + +xref:savanna:resources:glossary.adoc[] | +xref:savanna:resources:terms_conditions.adoc[ Terms and Conditions] | +xref:savanna:resources:support.adoc[] + +|=== \ No newline at end of file diff --git a/modules/cloud4/modules/overview/pages/overview.adoc b/modules/savanna/modules/overview/pages/overview.adoc similarity index 78% rename from modules/cloud4/modules/overview/pages/overview.adoc rename to modules/savanna/modules/overview/pages/overview.adoc index dbfaddd7..753aa762 100644 --- a/modules/cloud4/modules/overview/pages/overview.adoc +++ b/modules/savanna/modules/overview/pages/overview.adoc @@ -1,17 +1,17 @@ -= TigerGraph Cloud 4 Overview += TigerGraph Savanna Overview :experimental: :toc: left :toclevels: 3 -Purpose-built for graph analytics, TigerGraph Cloud 4 empowers users to independently scale compute and storage resources, optimizing performance and cost-efficiency according to their specific requirements. +Purpose-built for graph analytics, TigerGraph Savanna empowers users to independently scale compute and storage resources, optimizing performance and cost-efficiency according to their specific requirements. The platform also comes with intuitive interfaces, designed to reduce the learning curve and enable users to quickly leverage the benefits of graph analytics. -== TigerGraph Cloud 4 Architecture +== TigerGraph Savanna Architecture -TigerGraph Cloud 4 is designed to provide a robust, scalable, and secure environment for deploying graph databases in the cloud. The architecture leverages cloud-native technologies to deliver high performance and reliability, ensuring that your graph database can handle complex queries and large datasets efficiently. +TigerGraph Savanna is designed to provide a robust, scalable, and secure environment for deploying graph databases in the cloud. The architecture leverages cloud-native technologies to deliver high performance and reliability, ensuring that your graph database can handle complex queries and large datasets efficiently. -image::cloud4-architecture.png[Architecture Overview, 800, 600] +image::savanna-architecture.png[Architecture Overview, 800, 600] === Components @@ -21,23 +21,23 @@ The graph storage layer is responsible for persisting graph data in a highly opt ==== Data Plane - Compute Layer -The compute layer is the heart of TigerGraph Cloud 4, providing the capability to execute complex graph queries with high performance +The compute layer is the heart of TigerGraph Savanna, providing the capability to execute complex graph queries with high performance ==== Control Plane -The control plane provides UI and APIs for managing and monitoring graph databases in TigerGraph Cloud 4. Key components include: +The control plane provides UI and APIs for managing and monitoring graph databases in TigerGraph Savanna. Key components include: -- **Resource Management:** Resource management in TigerGraph Cloud 4 ensures efficient utilization and allocation of cloud resources to meet the demands of your graph database applications. -- **Infrastructure Management:** Infrastructure management involves the deployment, configuration, and maintenance of the underlying cloud infrastructure that supports TigerGraph Cloud 4. -- **Billing Management:** Billing management in TigerGraph Cloud 4 provides transparency and control over your cloud spending, ensuring you can manage costs effectively. -- **Organization/User Management:** Organization and user management features in TigerGraph Cloud 4 enable you to control access and permissions for different users within your organization. -- **Application Management:** Application management tools in TigerGraph Cloud 4 help you to manage the add-ons and integrations that enhance the functionality of your graph database applications. -- **Monitoring, Auditing and Alerting:** Monitoring, auditing, and alerting features in TigerGraph Cloud 4 provide visibility into system activities and ensure timely notification of critical events. +- **Resource Management:** Resource management in TigerGraph Savanna ensures efficient utilization and allocation of cloud resources to meet the demands of your graph database applications. +- **Infrastructure Management:** Infrastructure management involves the deployment, configuration, and maintenance of the underlying cloud infrastructure that supports TigerGraph Savanna. +- **Billing Management:** Billing management in TigerGraph Savanna provides transparency and control over your cloud spending, ensuring you can manage costs effectively. +- **Organization/User Management:** Organization and user management features in TigerGraph Savanna enable you to control access and permissions for different users within your organization. +- **Application Management:** Application management tools in TigerGraph Savanna help you to manage the add-ons and integrations that enhance the functionality of your graph database applications. +- **Monitoring, Auditing and Alerting:** Monitoring, auditing, and alerting features in TigerGraph Savanna provide visibility into system activities and ensure timely notification of critical events. -== Key Features of TigerGraph Cloud 4 +== Key Features of TigerGraph Savanna -These key features of TigerGraph Cloud 4 collectively provide a powerful and user-friendly environment for organizations to perform advanced graph analytics, gain valuable insights from interconnected data, and drive data-driven decision-making and innovation. +These key features of TigerGraph Savanna collectively provide a powerful and user-friendly environment for organizations to perform advanced graph analytics, gain valuable insights from interconnected data, and drive data-driven decision-making and innovation. === Separation of Storage and Compute We introduce a unique architecture that separates storage and compute, allowing users to scale resources independently. @@ -63,18 +63,18 @@ Designed with user convenience in mind, the GSQL Editor offers a user-friendly i With syntax highlighting, code completion, query execution, and debugging capabilities, users can easily develop and fine tune their graph queries. Additionally, the GSQL Editor enables seamless collaboration within organizations by allowing users to share GSQL files, fostering teamwork and facilitating efficient collaboration among colleagues. === Graph Explorer -TigerGraph Cloud 4 features a Graph Explorer, a visual interface that allows users to interactively explore and analyze the graph data. +TigerGraph Savanna features a Graph Explorer, a visual interface that allows users to interactively explore and analyze the graph data. The Graph Explorer provides a rich set of visualization tools, including graph visualizations, charts, and tables, enabling users to gain insights and discover patterns in their data. It offers intuitive navigation, filtering, and querying capabilities, making it easier for users to explore and understand the relationships and connections within their graph data. === Auto Data Profiles -TigerGraph Cloud 4 incorporates auto data profile capabilities that automatically find data insights for users without prior knowledge of their schema and query. +TigerGraph Savanna incorporates auto data profile capabilities that automatically find data insights for users without prior knowledge of their schema and query. This feature leverages advanced algorithms and machine learning techniques to analyze the graph data and identify meaningful patterns, relationships, and insights. It helps users discover valuable information within their data even if they are not familiar with the underlying data structure or query language. == Next Steps -Next, to understand how TigerGraph cloud differs from other TigerGraph offerings see xref:overview:comparison_table.adoc[] or see xref:cloud4:get-started:index.adoc[] to unlock its full potential. +Next, to understand how TigerGraph Savanna differs from other TigerGraph offerings see xref:overview:comparison_table.adoc[] or see xref:savanna:get-started:index.adoc[] to unlock its full potential. -Return to xref:cloud4:overview:index.adoc[TigerGraph Cloud 4] for another topic. +Return to xref:savanna:overview:index.adoc[TigerGraph Savanna] for another topic. diff --git a/modules/cloud4/modules/overview/pages/pricing.adoc b/modules/savanna/modules/overview/pages/pricing.adoc similarity index 70% rename from modules/cloud4/modules/overview/pages/pricing.adoc rename to modules/savanna/modules/overview/pages/pricing.adoc index a391393a..c03df643 100644 --- a/modules/cloud4/modules/overview/pages/pricing.adoc +++ b/modules/savanna/modules/overview/pages/pricing.adoc @@ -1,6 +1,7 @@ = Pricing -TigerGraph Cloud 4 offers a flexible and transparent pricing model designed to accommodate a wide range of usage scenarios, from small-scale projects to large enterprise deployments. Our pricing structure is crafted to provide you with the best value while ensuring your graph database solutions are scalable, reliable, and high-performing. +TigerGraph Savanna offers a flexible and transparent pricing model designed to accommodate a wide range of usage scenarios, from small-scale projects to large enterprise deployments. +Our pricing structure is crafted to provide you with the best value while ensuring your graph database solutions are scalable, reliable, and high-performing. == Select Platform and Region :provider: AWS @@ -39,23 +40,21 @@ Platform ++++ == Compute Pricing -Compute resources on TigerGraph Cloud 4 are billed based on the number of TCRs consumed per hour. -=== TigerGraph Credits +Compute resources on TigerGraph Savanna are billed based on the size of the workspace(s) you deploy and the number of hours in use. -A TigerGraph Credit (TCR) is a unit that represents the cost of using compute resources on TigerGraph Cloud. By using TCRs, you can easily scale your compute resources up or down to meet your performance needs without worrying about complex pricing structures. +[NOTE] +To simplify pricing, we have discontinued the use of TigerGraph Credits (TCRs) and directly use US dollars ($) instead. The net pricing has not changed. -The exchange rate for TigerGraph Credits is straightforward: +The following table outlines the price for different sizes of compute resources. +The compute prices are distinct from the storage fees listed below and are metered based on actual usage. +For inquiries about pricing, volume discounts, or deploying in other regions, please contact us at sales@tigergraph.com. -*1 TCR = $4.00* - - -This means that for every TigerGraph Credit you consume, you will be billed $4.00. - -=== Compute Pricing Table - -The following table outlines the cost in TCRs for different sizes of compute resources. -The compute costs are distinct from the storage fees listed below and are metered based on actual usage. For inquiries about pricing, volume discounts, or deploying in other regions, please contact us at sales@tigergraph.com. +[NOTE] +==== +Prices depend on your region. +The table automatically adjusts to the region you select above. +==== ++++ @@ -72,44 +71,44 @@ The compute costs are distinct from the storage fees listed below and are metere Size vCPUs Memory (GB) -Price (TCR/hour) +Price (US$) / Hour -

TG-00

2

16

0.25

-

TG-0

4

32

0.50

-

TG-1

8

64

1.00

-

TG-2

16

128

2.00

-

TG-4

32

256

4.00

-

TG-6

48

384

6.00

-

TG-8

64

512

8.00

-

TG-16

128

1,024

16.00

-

TG-24

192

1,536

24.00

-

TG-32

256

2,048

32.00

-

TG-40

320

2,560

40.00

-

TG-48

384

3,072

48.00

-

TG-56

448

3,584

56.00

-

TG-64

512

4,096

64.00

+

TG-00

2

16

$ 1

+

TG-0

4

32

$ 2

+

TG-1

8

64

$ 4

+

TG-2

16

128

$ 8

+

TG-4

32

256

$ 16

+

TG-6

48

384

$ 24

+

TG-8

64

512

$ 32

+

TG-16

128

1,024

$ 64

+

TG-24

192

1,536

$ 96

+

TG-32

256

2,048

$ 128

+

TG-40

320

2,560

$ 160

+

TG-48

384

3,072

$ 192

+

TG-56

448

3,584

$ 224

+

TG-64

512

4,096

$ 256