Replication
Create another copy
A replication link copies data into a destination store. The current daemon interface uses a local destination directory.
A team may need the same product knowledge without sharing every conversation. Design that flow around dedicated Minds, named information scopes, and explicit access rules. Akasha provides the namespace and local replication foundations.
Federation
Bring the right knowledge across a boundary. Keep the rest where it belongs.
Only the selected context travels.
A product team shares its release date. Internal planning notes stay in its own Mind.
Example sharing architecture. The daemon API provides local replication; cross-instance sharing is scoped with your deployment.
Separate shared reference material from each team’s working context. Define the source, destination, and access policy for each flow, with a deployment architecture suited to your regions and recovery needs.
Replication
A replication link copies data into a destination store. The current daemon interface uses a local destination directory.
Status
Inspect the replication task by its link identifier, and stop it when the copy is no longer needed.
Namespaces
Namespaces identify the owner, organization, agent, and space associated with a request.
Keyspaces
Group records into named keyspaces so your application has a clear structure for the knowledge it stores.
Use the daemon API to replicate into a local destination directory and inspect the task’s running status. For connections across regions or instances, work with our team on the deployment architecture.
# Run against your configured daemon with an authorized token.
curl "$AKASHA_URL/v1/replication/links" \
-H "Authorization: Bearer $AKASHA_TOKEN" \
-H "x-akasha-capability: $AKASHA_CAPABILITY" \
-H "Content-Type: application/json" \
-d '{"dest_data_dir":"/var/lib/akasha-replica"}'
# Use the link_id returned by the create request.
curl "$AKASHA_URL/v1/replication/status" \
-H "Authorization: Bearer $AKASHA_TOKEN" \
-H "x-akasha-capability: $AKASHA_CAPABILITY" \
-H "Content-Type: application/json" \
-d '{"id":"<link_id>"}'The daemon API manages local replication tasks. Cross-region destinations, recovery targets, and operating procedures are scoped with your deployment.
Talk through your regions, data boundaries, and recovery needs with our team before choosing a federation architecture.