20,919,685 Total Points 24,106 Total Sites 23,382 Cell Towers 69,500 Racks Monitored 56,753 HVAC Units Monitored 31,322 UPS Units Monitored 24,788 Generators Monitored 20,919,685 Total Points 24,106 Total Sites 23,382 Cell Towers 69,500 Racks Monitored 56,753 HVAC Units Monitored 31,322 UPS Units Monitored 24,788 Generators Monitored 20,919,685 Total Points 24,106 Total Sites 23,382 Cell Towers 69,500 Racks Monitored 56,753 HVAC Units Monitored 31,322 UPS Units Monitored 24,788 Generators Monitored

What Database Does Mango by Radix IoT Use, and How Long Is Data Kept?

Mango by Radix IoT uses two databases. Configuration lives in a relational database, embedded by default. Point-value history lives in a separate time-series database, built into the platform and enabled by default. Data is kept for one year unless you change it, configurable globally, per data source, or per individual point.

The Two Databases, and Why the Distinction Matters

Every standard installation has both, and they do different jobs.

HoldsOptions
Configuration databaseConfiguration, users, events, audit recordsEmbedded H2 by default. PostgreSQL or MySQL for larger deployments
Time-series databasePoint-value historyThe built-in historian, enabled by default. ClickHouse or TimescaleDB as alternatives

The built-in historian ships enabled. It installs and configures itself with the platform, so there is no separate database to procure or tune to start collecting history.

This is the distinction that catches people out. When a monitoring platform lists supported databases, that list usually refers to the configuration database only. It is not a list of historian options, and choosing PostgreSQL for configuration does not put point history into PostgreSQL.

One exception applies on the free tier. Mango Free does not include the time-series module, so point values are stored as rows in the general relational database instead. Everything below about the built-in historian applies to the standard and Enterprise packages.

How Retention Works, and What the Default Is

Point values are kept for one year by default. Events and alarms are kept for one year as well, under their own separate settings.

Retention is configurable at three levels, and they stack.

LevelApplies to
Global settingThe whole instance
Per data sourceEvery point on one source
Per data pointAn individual point

Event and alarm retention is configured separately from point values, and can be broken out by event type and by alarm severity. A critical alarm can be kept longer than a routine status change.

Periods are set in hours, minutes, days, weeks, months or years. Hours and minutes were added in version 5.6.

Why Retention Is Not the Same Thing as Backup

These are different guarantees, and it is worth being precise about which one you are relying on.

What it isHow long
RetentionHow long point values, events and alarms are kept in the historianOne year by default, configurable
Configuration backupA nightly export of configuration only, in JSON. No point valuesThe last 10 files are kept, by count rather than by age
Database backupA nightly full database backupThe last 10 files are kept, by count rather than by age

Backups are kept by count, not by age. How far back they reach depends on how often they run, not on a retention period. Backups are for recovery. Retention determines how much history you can query.

Using ClickHouse or TimescaleDB Instead

Both are available as alternative historian backends through the radixTsl module, which ships in the standard bundle.

It is disabled by default, and it changes the procurement answer. An alternative backend is an externally provisioned database: you size it, run it and maintain it. That is the opposite of the built-in historian, and it is the reason most deployments do not use one.

BackendProvisioningWhen it fits
Built-in historianNone. Enabled by defaultThe default at every deployment size
ClickHouseYou provision and run itLarge deployments, and where analytics at scale already run on it
TimescaleDBYou provision and run itYou already run PostgreSQL infrastructure and want history alongside it

Retention moves with it. On ClickHouse or TimescaleDB, retention is configured at the database level and Mango by Radix IoT’s purge settings do not apply to data held there. A deployment that moves to an alternative backend moves its retention configuration out of the platform and into the database.

How Stored Data Is Aggregated

Rollups turn raw point values into summarised periods for reporting and trend queries.

CountExamples
Numeric only12Average, minimum, maximum, sum, delta
Numeric and non-numeric7None, first, last, count, all, start, point default

Nineteen in total. The seven in the second row work on non-numeric data as well, which matters for status, state and text points where an average is meaningless.

What Is Stored, and What Is Not

Mango by Radix IoT reads live values and stores them in its own historian. It does not retrieve historical records from devices or from third-party servers.

The practical version: your record begins when Mango by Radix IoT starts reading a point. If a connection drops, the values that occurred during the outage are not recovered afterwards, because the platform never held them.

This applies across protocols rather than to any one of them.

ProtocolWhat this means in practice
BACnetThe present value of a Trend Log object can be read like any other object. Device log buffers are not retrieved
OPC UALive values through subscriptions and polling. Server history is never read, so a disconnect leaves a gap in the record
DNP3Events are polled on a normal cycle and that poll resumes after an interruption. There is no catch-up routine. Where an outstation still holds events in its own buffer some may arrive, but that is the device retaining them rather than Mango by Radix IoT reconstructing the outage

If you need a complete record across an outage, the answer is connection resilience rather than backfill, because no monitoring platform can store a value it was never sent.

What the Storage Architecture Means at Scale

Industrial monitoring produces a lot of values. A site logging 100,000 points once a minute generates 144 million of them a day.

Platforms built on general-purpose databases slow down as that archive grows. The usual responses are to reduce polling frequency, discard older data, or limit how many points get connected in the first place.

Because the historian here is purpose-built for time-series rather than adapted from a general-purpose database, those responses are not necessary.

You canRather than
Connect every system on a siteSelecting a subset worth monitoring
Retain history over long periodsDiscarding older data to keep queries fast
Poll at the interval the equipment supportsPolling at the interval the database can survive

This is also what makes a portfolio-wide view practical rather than theoretical. Showing one building well is a different problem from holding dozens of sites in a single view, with equipment from different manufacturers installed across two decades, and doing it without the system slowing down.

Radix IoT Angle

Mango by Radix IoT uses two databases: a relational one for configuration, users, events and audit records, and a separate purpose-built time-series database for point-value history. Both install with the platform in a standard deployment, so there is no database to procure, size or tune before monitoring can begin. The free tier is the exception and stores point values in the relational database instead.

Retention is one year by default for point values, and one year separately for events and alarms, configurable globally, per data source, or per individual point, in periods down to minutes. Backups are a different guarantee: nightly configuration and database backups keep the last 10 files by count rather than by age, so they are for recovery rather than for history.

ClickHouse and TimescaleDB are available as alternative historian backends and ship in the standard bundle, disabled by default. Choosing one means provisioning and running that database yourself, and retention configuration moves to the database level.

The platform reads live values into its own historian and does not retrieve historical records from devices or third-party servers, so the record starts when Mango by Radix IoT starts reading a point.

Common questions

Do I need a database administrator to run Mango by Radix IoT?

Not for a standard install. The embedded configuration database and the built-in historian both install with the platform. Moving configuration to PostgreSQL or MySQL, or history to ClickHouse or TimescaleDB, brings those databases under whatever administration you already have.

Is the historian a separate module?

It is a module, and it ships enabled in the standard and Enterprise packages, so there is nothing to add or configure. Mango Free does not include it.

Does choosing PostgreSQL mean my point history goes into PostgreSQL?

No. PostgreSQL is an option for the configuration database. Point history goes to the time-series database, which is a separate choice. TimescaleDB is the option that puts history into PostgreSQL infrastructure.

Do the nightly backups mean I have a year of history in them?

No. Backups keep the last 10 files by count, not by age, so how far back they reach depends on how often they run. Retention determines how much history you can query.

Can I move to ClickHouse or TimescaleDB later?

Yes. They are alternative backends rather than a different product, so the decision does not have to be made at the start. Two things change when you do: you provision and run that database yourself, and retention configuration moves to the database level.

Will Mango by Radix IoT pull history out of my existing systems when I connect them?

No. It reads live values from the point it connects onward. Existing history stays where it is, in the system that recorded it.

What happens to my data if a site loses connectivity?

Values from the outage window are not recovered. The record resumes when the connection does.

See how Mango by Radix IoT handles storage and retention in your environment. Your protocols, your point counts, your retention requirements.

We honored your browser’s Global Privacy Control signal — optional cookies are off and nothing is tracked.