Historian Management

The historian records training data for analysis and visualization.

Start Historian

# Start with default output directory
composabl historian start

# Start with custom output path
composabl historian start /path/to/output/

# Output:
Created the containers.
Service         Container Name  Status   Connection Details      Ports
EMQX           emqx            running  localhost:1883          1883->1883, 18083->18083
Historian      historian       running  /path/to/output/

Check Historian Status

# Full status
composabl historian status

# Get EMQX connection string
composabl historian status --moniker-emqx
# Output: localhost:1883

# Get historian output path
composabl historian status --moniker-historian
# Output: /path/to/output/

Stop Historian

Clean Up Resources

Historian Data Format

The historian saves data in Delta Lake format:

Access data with Python:

Last updated