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 #95

Closed
wants to merge 2 commits into from
Closed
Changes from all 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 @@ -17,12 +17,40 @@ Read-Only (RO) workspaces are optimized for read-intensive operations.
They are used for executing queries and analytics on the graph data without modifying it.
Read-only workspaces provide improved performance and scalability for read operations.

[NOTE]: The Read-Only workspace must be manually synced with the Read-Write workspace to reflect the latest data changes.

//[Placeholder for attach to an existing database]

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

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

.Database Operations
- Running "gsql --reset" command.
- Clearing the graph store.
- Executing the DROP ALL command.

.Schema Management
- Updating schemas, including adding, updating, or dropping schema elements.
- Creating, dropping, or running schema change jobs.

.Graph Management
- Creating or dropping graphs.
- Exporting or importing database data.

.Data Modification
- Running any queries that modify the database data.
- Inserting, updating, or deleting data.
- Committing the data(such as new vertices or edges) in memory to disk. for example: rebuildnow operation

.Loading Jobs
- Creating, deleting, or running loading jobs.
- Creating, deleting, pausing, restarting, or resuming connectors.
- Creating or updating data sources.

.Backup and Restore
- Performing backup or restore operations.


=== Update Read-Only(RO) Workspace

Expand All @@ -31,8 +59,7 @@ You can manually sync up the data with Read-Write(RW) workspace when needed.

//[Placeholder for update read-only workspace]

[NOTE]
Updating a Read-Only (RO) workspace is an offline operation.
[NOTE]:Updating a Read-Only (RO) workspace is an offline operation.

If there are any other operations in progress on the RO workspace, they are likely to be affected during the update process.

Expand All @@ -46,5 +73,3 @@ It is recommended to schedule the update during a time when minimal or no operat
Next, about xref:cloud4:workgroup-workspace:workspaces/workspace-size.adoc[Workspace Sizes] or learn how to xref:cloud4:workgroup-workspace:workspaces/expansion-shrink.adoc[Expand and Shrink] a workspace.

Return to the xref:cloud4:workgroup-workspace:index.adoc[] page or xref:cloud4:overview:index.adoc[Overview] page for a different topic.


Loading