Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC-2092] add doc for blocking operation in RO #80

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,41 @@ Read-only workspaces provide improved performance and scalability for read opera

[NOTE]
====
Current RO workspace requires manual sync up with the RW workspace to catch up with the latest change.
Current Read-Only (RO) workspace requires manual sync up with the RW workspace to catch up with the latest change.

In a Read-Only (RO) workspace within TigerGraph Cloud, the following operations are strictly prohibited:

[.prohibited]
.Database Operations
- gsql reset
- clear graph store
- drop all

[.prohibited]
.Schema Management
- update schema (add/update/drop), create/drop/run schema change job
- rebuild

[.prohibited]
.Graph Management
- create/drop graph
- export/import

[.prohibited]
.Data Modification
- run write queries
- update data (insert/update/delete)

[.prohibited]
.Loading Jobs
- create/delete/run loading job
- create/delete/pause/restart/resume connector
- create/update datasource

[.prohibited]
.Backup and Restore
- backup/restore

====

=== Update Read-Only(RO) Workspace
Expand Down
Loading