Skip to main content

Bulk Operations

Run, rollback, and query multiple assets at once.

Running Multiple Assets

Run All Assets

msh run --all

Run with Dependencies

# Single asset with upstreams
msh run +orders

# Single asset with downstreams
msh run orders+

Rolling Back Assets

Single Asset

msh rollback orders

Multiple Assets

msh rollback orders,revenue,users

All Assets

msh rollback --all

Status Output Formats

Table Format (Default)

msh status

JSON Format (For Automation)

msh status --format json

Output:

{
"assets": [
{"name": "orders", "active_hash": "a1b2c3"},
{"name": "revenue", "active_hash": "d4e5f6"}
]
}