2021-06-17 19:45:43 +00:00
---
title: InfluxDB Enterprise features
description: Users, clustering, and other InfluxDB Enterprise features.
aliases:
- /enterprise/v1.8/features/
menu:
2023-09-13 05:33:31 +00:00
enterprise_influxdb_v1:
2021-06-17 19:45:43 +00:00
name: Enterprise features
weight: 60
---
2022-01-11 22:07:59 +00:00
InfluxDB Enterprise has additional capabilities that enhance
[availability ](#clustering ),
[scalability ](#clustering ), and
[security ](#security ),
and provide [eventual consistency ](#eventual-consistency ).
## Clustering
InfluxDB Enterprise runs on a network of independent servers, a *cluster* ,
to provide fault tolerance, availability, and horizontal scalability of the database.
While many InfluxDB Enterprise features are available
2023-11-27 16:32:55 +00:00
when run with a single meta node and a single data node, this configuration does not take advantage of the clustering capability
or ensure high availability.
2022-01-11 22:07:59 +00:00
Nodes can be added to an existing cluster to improve database performance for querying and writing data.
Certain configurations (e.g., 3 meta and 2 data node) provide high-availability assurances
2023-11-27 16:32:55 +00:00
while making certain tradeoffs in query performance when compared to a single node.
2022-01-11 22:07:59 +00:00
Further increasing the number of nodes can improve performance in both respects.
2023-09-13 05:33:31 +00:00
For example, a cluster with 4 data nodes and a [replication factor ](https://docs.influxdata.com/enterprise_influxdb/v1/concepts/glossary/#replication-factor )
2022-01-11 22:07:59 +00:00
of 2 can support a higher volume of write traffic than a single node could.
It can also support a higher *query* workload, as the data is replicated
in two locations. Performance of the queries may be on par with a single
node in cases where the query can be answered directly by the node which
receives the query.
2023-09-13 05:33:31 +00:00
For more information on clustering, see [Clustering in InfluxDB Enterprise ](/enterprise_influxdb/v1/concepts/clustering/ ).
2022-01-11 22:07:59 +00:00
## Security
2023-09-13 05:33:31 +00:00
Enterprise authorization uses an expanded set of [*16 user permissions and roles* ](/enterprise_influxdb/v1/features/users/ ).
2022-01-11 22:07:59 +00:00
(InfluxDB OSS only has `READ` and `WRITE` permissions.)
Administrators can give users permission to read and write to databases,
create and remove databases, rebalance a cluster, and manage particular resources.
2023-09-13 05:33:31 +00:00
Organizations can automate managing permissions with the [InfluxDB Enterprise Meta API ](/enterprise_influxdb/v1/administration/manage/security/authentication_and_authorization-api/ ).
2022-01-11 22:07:59 +00:00
2023-09-13 05:33:31 +00:00
[Fine-grained authorization ](/enterprise_influxdb/v1/guides/fine-grained-authorization/ )
2022-01-11 22:07:59 +00:00
for particular data is also available.
2023-09-13 05:33:31 +00:00
InfluxDB Enterprise can also use [LDAP for managing authentication ](/enterprise_influxdb/v1/administration/manage/security/ldap/ ).
2022-01-11 22:07:59 +00:00
2023-11-27 16:32:55 +00:00
For FIPS compliance, InfluxDB Enterprise password hashing algorithms are configurable.
2022-01-11 22:07:59 +00:00
{{% note %}}
Kapacitor OSS can also delegate its LDAP and security setup to InfluxDB Enterprise.
2023-09-13 05:33:31 +00:00
For details, see ["Set up InfluxDB Enterprise authorizations" ](/kapacitor/v1/administration/auth/influxdb-enterprise-auth/ ).
2022-01-11 22:07:59 +00:00
{{% /note %}}
## Eventual consistency
### Hinted handoff
Hinted handoff (HH) is how InfluxDB Enterprise deals with data node outages while writes are happening.
HH is essentially a durable disk based queue.
2023-09-13 05:33:31 +00:00
For more information, see ["Hinted handoff" ](/enterprise_influxdb/v1/concepts/clustering/#hinted-handoff ).
2022-01-11 22:07:59 +00:00
### Anti-entropy
Anti-entropy is an optional service to eliminate edge cases related to cluster consistency.
2023-09-13 05:33:31 +00:00
For more information, see ["Use Anti-Entropy service in InfluxDB Enterprise" ](/enterprise_influxdb/v1/administration/anti-entropy/ ).
2022-01-11 22:07:59 +00:00
---
{{< children hlevel = "h3" > }}