layout: doc_page title: “Apache Druid (incubating) extensions”

Apache Druid (incubating) extensions

Druid implements an extension system that allows for adding functionality at runtime. Extensions are commonly used to add support for deep storages (like HDFS and S3), metadata stores (like MySQL and PostgreSQL), new aggregators, new input formats, and so on.

Production clusters will generally use at least two extensions; one for deep storage and one for a metadata store. Many clusters will also use additional extensions.

Including extensions

Please see here.

Core extensions

Core extensions are maintained by Druid committers.

NameDescriptionDocs
druid-avro-extensionsSupport for data in Apache Avro data format.link
druid-basic-securitySupport for Basic HTTP authentication and role-based access control.link
druid-bloom-filterSupport for providing Bloom filters in druid queries.link
druid-caffeine-cacheA local cache implementation backed by Caffeine.link
druid-datasketchesSupport for approximate counts and set operations with DataSketches.link
druid-hdfs-storageHDFS deep storage.link
druid-histogramApproximate histograms and quantiles aggregator. Deprecated, please use the DataSketches quantiles aggregator from the druid-datasketches extension instead.link
druid-kafka-eightKafka ingest firehose (high level consumer) for realtime nodes.link
druid-kafka-extraction-namespaceKafka-based namespaced lookup. Requires namespace lookup extension.link
druid-kafka-indexing-serviceSupervised exactly-once Kafka ingestion for the indexing service.link
druid-kinesis-indexing-serviceSupervised exactly-once Kinesis ingestion for the indexing service.link
druid-kerberosKerberos authentication for druid processes.link
druid-lookups-cached-globalA module for lookups providing a jvm-global eager caching for lookups. It provides JDBC and URI implementations for fetching lookup data.link
druid-lookups-cached-singlePer lookup caching module to support the use cases where a lookup need to be isolated from the global pool of lookupslink
druid-parquet-extensionsSupport for data in Apache Parquet data format. Requires druid-avro-extensions to be loaded.link
druid-protobuf-extensionsSupport for data in Protobuf data format.link
druid-s3-extensionsInterfacing with data in AWS S3, and using S3 as deep storage.link
druid-statsStatistics related module including variance and standard deviation.link
mysql-metadata-storageMySQL metadata store.link
postgresql-metadata-storagePostgreSQL metadata store.link
simple-client-sslcontextSimple SSLContext provider module to be used by Druid's internal HttpClient when talking to other Druid processes over HTTPS.link

Community Extensions

A number of community members have contributed their own extensions to Druid that are not packaged with the default Druid tarball. If you'd like to take on maintenance for a community extension, please post on dev@druid.apache.org to let us know!

All of these community extensions can be downloaded using pull-deps with the coordinate org.apache.druid.extensions.contrib:EXTENSION_NAME:LATEST_DRUID_STABLE_VERSION.

NameDescriptionDocs
ambari-metrics-emitterAmbari Metrics Emitterlink
druid-azure-extensionsMicrosoft Azure deep storage.link
druid-cassandra-storageApache Cassandra deep storage.link
druid-cloudfiles-extensionsRackspace Cloudfiles deep storage and firehose.link
druid-distinctcountDistinctCount aggregatorlink
druid-kafka-eight-simpleConsumerKafka ingest firehose (low level consumer).link
druid-orc-extensionsSupport for data in Apache Orc data format.link
druid-rabbitmqRabbitMQ firehose.link
druid-redis-cacheA cache implementation for Druid based on Redis.link
druid-rocketmqRocketMQ firehose.link
druid-time-min-maxMin/Max aggregator for timestamp.link
druid-google-extensionsGoogle Cloud Storage deep storage.link
sqlserver-metadata-storageMicrosoft SqlServer deep storage.link
graphite-emitterGraphite metrics emitterlink
statsd-emitterStatsD metrics emitterlink
kafka-emitterKafka metrics emitterlink
druid-thrift-extensionsSupport thrift ingestionlink
druid-opentsdb-emitterOpenTSDB metrics emitterlink

Promoting Community Extension to Core Extension

Please post on dev@druid.apache.org if you'd like an extension to be promoted to core. If we see a community extension actively supported by the community, we can promote it to core based on community feedback.

Creating your own Extensions

For information how to create your own extension, please see here.