Exciting update: Revyz is now part of Spin.AI. Read the Press Release here.
Revyz Command Center for Jira

How to Enable It: Moving Your Export to Local Storage

About this Page

This page covers Phase 2 of the Export data feature, detailing the steps to follow after running an export data job in Revyz, to securely transfer the exported data from your cloud environment to your local workstations.

Follow this step in continuation of running the Export Data job in the Revyz app.

How to Locate Stored Stored Data?

Locate Stored Files: Upon completion, log into your custom cloud storage (e.g., AWS S3 bucket). Your exported Jira content resides under the site's unique client key within the export-jira/ folder, organized inside a sub-folder named after the job's timestamp.

For AWS customers

Step 1: Login to your storage account


image-20260723-080638.png


  1. Login to AWS

  2. Go to the S3 service

  3. Search for S3 bucket which is configured on your Revyz app

Step 2: Go to the S3 bucket
image-20260723-081103.png
  1. Go to the S3 bucket

  2. Search for export-jira

Step 3: Locate the time-stamped folder


image-20260723-081215.png

Go to the "export-jira" folder and search for your backup snapshot date folder 2026-07-15 11:06:23/, reflected in your export data job details.

Step 4: Copy S3 url


image-20260723-081404.png

Select the folder and copy its s3 path uri (To copy, you can find the Copy S3 URL button at the top)

Step 5: Export Work Items Data

Use this command to export work items data

aws s3 sync "Src"  "./Dest"

Paste copied s3 path URL in place of “Src”, In “Dest”, paste its last part

For example:

Copied S3 URI Path: s3://<bucket-name>/export-jira/2026-07-15 11:06:23/

SRC: s3://<bucket-name>/export-jira/2026-07-15 11:06:23/

Dest: 2026-07-15 11:06:23/

Command: aws s3 sync "s3://<bucket-name>/export-jira/2026-07-15 11:06:23/"  "./2026-07-15 11:06:23/"

Step 6: Copy the AWS credentials
image-20260723-083600.png


image-20260723-082142.png

On your local machine (system), configure AWS CLI (download and install)

  • Configure AWS credentials:

    • Open terminal at root level (home)

    • Run the command: cd .aws

    • vim credentials

    • Paste AWS credentials (copy from AWS: Navigate to AWS | Access Key | Copy the Credentials)

Step 7: Create an Export Folder


image-20260723-083504.png

Create any folder where you want to store your exported data. For Example: Offline access | Export. In that folder, create folder Export (Your data will be exported in this folder).


Step 8: Download the execution file
image-20260723-083724.png


Download the execution file (provided by Revyz, contact support for the file) for Export Viewer and paste in this Folder Name >>  Export folder.

A native cloud restore is impossible during severe Atlassian outages, you must host the locally downloaded offline snapshot using the ExportViewer execution file. This helps you make the exported data available to the users in the event of an active outage.

Note: Export folder and Execution file should be in the same folder.

Step 9: Open the terminal

Open the terminal at this export folder path .

e.g., Terminal path: Home | Offline access | Export /export

And paste the command created at step 5 for Work item export

Command: aws s3 sync "s3://<bucket-name>/export-jira/2026-07-15 11:06:23/"  "./2026-07-15 11:06:23/"

Step 10: View the work items data


image-20260724-110806.png


Your work items data will be exported to the Export folder. As an admin, you should periodically download these timestamped export folders to your local storage or local servers.

For further steps, refer here.