Viewing Store Information
You can view details about your stores using the Get-DkvStore command.
This helps you:
- Check if a store is running
- Inspect node configuration
- Verify ports and instance details
Command: Get-DkvStoreβ
Retrieves information about one or more stores.
Syntaxβ
Get-DkvStore [<StoreName>]
Examplesβ
View All Storesβ
Get-DkvStore
View Specific Storeβ
Get-DkvStore TestStore
What Information is Shown?β
The output typically includes:
- Store name
- Status (Running / Stopped)
- Number of nodes
- Node details (names, ports)
- Client endpoints
Example Output (Conceptual)β
Store: TestStore
Status: Running
Nodes:
node1 β ClustronPort: 7811, ClientPort: 7861
node2 β ClustronPort: 7812, ClientPort: 7862
When to Use This Commandβ
Use Get-DkvStore to:
- Confirm the store is running
- Verify node count and configuration
- Check assigned ports
- Debug connectivity issues
Common Issuesβ
Store Not Foundβ
- Ensure the store name is correct
- Verify you are connected to the manager
Store is Stoppedβ
- Use
Start-DkvStoreto start the store
Whatβs Nextβ
π Continue to Multi-Node Configuration to understand how to scale stores