Tutorial: Writing an ingestion spec

This tutorial will guide the reader through the process of defining an ingestion spec, pointing out key considerations and guidelines.

For this tutorial, we’ll assume you’ve already downloaded Apache Druid as described in the single-machine quickstart and have it running on your local machine.

It will also be helpful to have finished Tutorial: Loading a file, Tutorial: Querying data, and Tutorial: Rollup.

Example data

Suppose we have the following network flow data:

  • srcIP: IP address of sender
  • srcPort: Port of sender
  • dstIP: IP address of receiver
  • dstPort: Port of receiver
  • protocol: IP protocol number
  • packets: number of packets transmitted
  • bytes: number of bytes transmitted
  • cost: the cost of sending the traffic
  1. {"ts":"2018-01-01T01:01:35Z","srcIP":"1.1.1.1", "dstIP":"2.2.2.2", "srcPort":2000, "dstPort":3000, "protocol": 6, "packets":10, "bytes":1000, "cost": 1.4}
  2. {"ts":"2018-01-01T01:01:51Z","srcIP":"1.1.1.1", "dstIP":"2.2.2.2", "srcPort":2000, "dstPort":3000, "protocol": 6, "packets":20, "bytes":2000, "cost": 3.1}
  3. {"ts":"2018-01-01T01:01:59Z","srcIP":"1.1.1.1", "dstIP":"2.2.2.2", "srcPort":2000, "dstPort":3000, "protocol": 6, "packets":30, "bytes":3000, "cost": 0.4}
  4. {"ts":"2018-01-01T01:02:14Z","srcIP":"1.1.1.1", "dstIP":"2.2.2.2", "srcPort":5000, "dstPort":7000, "protocol": 6, "packets":40, "bytes":4000, "cost": 7.9}
  5. {"ts":"2018-01-01T01:02:29Z","srcIP":"1.1.1.1", "dstIP":"2.2.2.2", "srcPort":5000, "dstPort":7000, "protocol": 6, "packets":50, "bytes":5000, "cost": 10.2}
  6. {"ts":"2018-01-01T01:03:29Z","srcIP":"1.1.1.1", "dstIP":"2.2.2.2", "srcPort":5000, "dstPort":7000, "protocol": 6, "packets":60, "bytes":6000, "cost": 4.3}
  7. {"ts":"2018-01-01T02:33:14Z","srcIP":"7.7.7.7", "dstIP":"8.8.8.8", "srcPort":4000, "dstPort":5000, "protocol": 17, "packets":100, "bytes":10000, "cost": 22.4}
  8. {"ts":"2018-01-01T02:33:45Z","srcIP":"7.7.7.7", "dstIP":"8.8.8.8", "srcPort":4000, "dstPort":5000, "protocol": 17, "packets":200, "bytes":20000, "cost": 34.5}
  9. {"ts":"2018-01-01T02:35:45Z","srcIP":"7.7.7.7", "dstIP":"8.8.8.8", "srcPort":4000, "dstPort":5000, "protocol": 17, "packets":300, "bytes":30000, "cost": 46.3}

Save the JSON contents above into a file called ingestion-tutorial-data.json in quickstart/.

Let’s walk through the process of defining an ingestion spec that can load this data.

For this tutorial, we will be using the native batch indexing task. When using other task types, some aspects of the ingestion spec will differ, and this tutorial will point out such areas.

Defining the schema

The core element of a Druid ingestion spec is the dataSchema. The dataSchema defines how to parse input data into a set of columns that will be stored in Druid.

Let’s start with an empty dataSchema and add fields to it as we progress through the tutorial.

Create a new file called ingestion-tutorial-index.json in quickstart/ with the following contents:

  1. "dataSchema" : {}

We will be making successive edits to this ingestion spec as we progress through the tutorial.

Datasource name

The datasource name is specified by the dataSource parameter in the dataSchema.

  1. "dataSchema" : {
  2. "dataSource" : "ingestion-tutorial",
  3. }

Let’s call the tutorial datasource ingestion-tutorial.

Time column

The dataSchema needs to know how to extract the main timestamp field from the input data.

The timestamp column in our input data is named “ts”, containing ISO 8601 timestamps, so let’s add a timestampSpec with that information to the dataSchema:

  1. "dataSchema" : {
  2. "dataSource" : "ingestion-tutorial",
  3. "timestampSpec" : {
  4. "format" : "iso",
  5. "column" : "ts"
  6. }
  7. }

Column types

Now that we’ve defined the time column, let’s look at definitions for other columns.

Druid supports the following column types: String, Long, Float, Double. We will see how these are used in the following sections.

Before we move on to how we define our other non-time columns, let’s discuss rollup first.

Rollup

When ingesting data, we must consider whether we wish to use rollup or not.

  • If rollup is enabled, we will need to separate the input columns into two categories, “dimensions” and “metrics”. “Dimensions” are the grouping columns for rollup, while “metrics” are the columns that will be aggregated.

  • If rollup is disabled, then all columns are treated as “dimensions” and no pre-aggregation occurs.

For this tutorial, let’s enable rollup. This is specified with a granularitySpec on the dataSchema.

  1. "dataSchema" : {
  2. "dataSource" : "ingestion-tutorial",
  3. "timestampSpec" : {
  4. "format" : "iso",
  5. "column" : "ts"
  6. },
  7. "granularitySpec" : {
  8. "rollup" : true
  9. }
  10. }

Choosing dimensions and metrics

For this example dataset, the following is a sensible split for “dimensions” and “metrics”:

  • Dimensions: srcIP, srcPort, dstIP, dstPort, protocol
  • Metrics: packets, bytes, cost

The dimensions here are a group of properties that identify a unidirectional flow of IP traffic, while the metrics represent facts about the IP traffic flow specified by a dimension grouping.

Let’s look at how to define these dimensions and metrics within the ingestion spec.

Dimensions

Dimensions are specified with a dimensionsSpec inside the dataSchema.

  1. "dataSchema" : {
  2. "dataSource" : "ingestion-tutorial",
  3. "timestampSpec" : {
  4. "format" : "iso",
  5. "column" : "ts"
  6. },
  7. "dimensionsSpec" : {
  8. "dimensions": [
  9. "srcIP",
  10. { "name" : "srcPort", "type" : "long" },
  11. { "name" : "dstIP", "type" : "string" },
  12. { "name" : "dstPort", "type" : "long" },
  13. { "name" : "protocol", "type" : "string" }
  14. ]
  15. },
  16. "granularitySpec" : {
  17. "rollup" : true
  18. }
  19. }

Each dimension has a name and a type, where type can be “long”, “float”, “double”, or “string”.

Note that srcIP is a “string” dimension; for string dimensions, it is enough to specify just a dimension name, since “string” is the default dimension type.

Also note that protocol is a numeric value in the input data, but we are ingesting it as a “string” column; Druid will coerce the input longs to strings during ingestion.

Strings vs. Numerics

Should a numeric input be ingested as a numeric dimension or as a string dimension?

Numeric dimensions have the following pros/cons relative to String dimensions:

  • Pros: Numeric representation can result in smaller column sizes on disk and lower processing overhead when reading values from the column
  • Cons: Numeric dimensions do not have indices, so filtering on them will often be slower than filtering on an equivalent String dimension (which has bitmap indices)

Metrics

Metrics are specified with a metricsSpec inside the dataSchema:

  1. "dataSchema" : {
  2. "dataSource" : "ingestion-tutorial",
  3. "timestampSpec" : {
  4. "format" : "iso",
  5. "column" : "ts"
  6. },
  7. "dimensionsSpec" : {
  8. "dimensions": [
  9. "srcIP",
  10. { "name" : "srcPort", "type" : "long" },
  11. { "name" : "dstIP", "type" : "string" },
  12. { "name" : "dstPort", "type" : "long" },
  13. { "name" : "protocol", "type" : "string" }
  14. ]
  15. },
  16. "metricsSpec" : [
  17. { "type" : "count", "name" : "count" },
  18. { "type" : "longSum", "name" : "packets", "fieldName" : "packets" },
  19. { "type" : "longSum", "name" : "bytes", "fieldName" : "bytes" },
  20. { "type" : "doubleSum", "name" : "cost", "fieldName" : "cost" }
  21. ],
  22. "granularitySpec" : {
  23. "rollup" : true
  24. }
  25. }

When defining a metric, it is necessary to specify what type of aggregation should be performed on that column during rollup.

Here we have defined long sum aggregations on the two long metric columns, packets and bytes, and a double sum aggregation for the cost column.

Note that the metricsSpec is on a different nesting level than dimensionSpec or parseSpec; it belongs on the same nesting level as parser within the dataSchema.

Note that we have also defined a count aggregator. The count aggregator will track how many rows in the original input data contributed to a “rolled up” row in the final ingested data.

No rollup

If we were not using rollup, all columns would be specified in the dimensionsSpec, e.g.:

  1. "dimensionsSpec" : {
  2. "dimensions": [
  3. "srcIP",
  4. { "name" : "srcPort", "type" : "long" },
  5. { "name" : "dstIP", "type" : "string" },
  6. { "name" : "dstPort", "type" : "long" },
  7. { "name" : "protocol", "type" : "string" },
  8. { "name" : "packets", "type" : "long" },
  9. { "name" : "bytes", "type" : "long" },
  10. { "name" : "srcPort", "type" : "double" }
  11. ]
  12. },

Define granularities

At this point, we are done defining the parser and metricsSpec within the dataSchema and we are almost done writing the ingestion spec.

There are some additional properties we need to set in the granularitySpec:

  • Type of granularitySpec: uniform and arbitrary are the two supported types. For this tutorial, we will use a uniform granularity spec, where all segments have uniform interval sizes (for example, all segments cover an hour’s worth of data).
  • The segment granularity: what size of time interval should a single segment contain data for? e.g., DAY, WEEK
  • The bucketing granularity of the timestamps in the time column (referred to as queryGranularity)

Segment granularity

Segment granularity is configured by the segmentGranularity property in the granularitySpec. For this tutorial, we’ll create hourly segments:

  1. "dataSchema" : {
  2. "dataSource" : "ingestion-tutorial",
  3. "timestampSpec" : {
  4. "format" : "iso",
  5. "column" : "ts"
  6. },
  7. "dimensionsSpec" : {
  8. "dimensions": [
  9. "srcIP",
  10. { "name" : "srcPort", "type" : "long" },
  11. { "name" : "dstIP", "type" : "string" },
  12. { "name" : "dstPort", "type" : "long" },
  13. { "name" : "protocol", "type" : "string" }
  14. ]
  15. },
  16. "metricsSpec" : [
  17. { "type" : "count", "name" : "count" },
  18. { "type" : "longSum", "name" : "packets", "fieldName" : "packets" },
  19. { "type" : "longSum", "name" : "bytes", "fieldName" : "bytes" },
  20. { "type" : "doubleSum", "name" : "cost", "fieldName" : "cost" }
  21. ],
  22. "granularitySpec" : {
  23. "type" : "uniform",
  24. "segmentGranularity" : "HOUR",
  25. "rollup" : true
  26. }
  27. }

Our input data has events from two separate hours, so this task will generate two segments.

Query granularity

The query granularity is configured by the queryGranularity property in the granularitySpec. For this tutorial, let’s use minute granularity:

  1. "dataSchema" : {
  2. "dataSource" : "ingestion-tutorial",
  3. "timestampSpec" : {
  4. "format" : "iso",
  5. "column" : "ts"
  6. },
  7. "dimensionsSpec" : {
  8. "dimensions": [
  9. "srcIP",
  10. { "name" : "srcPort", "type" : "long" },
  11. { "name" : "dstIP", "type" : "string" },
  12. { "name" : "dstPort", "type" : "long" },
  13. { "name" : "protocol", "type" : "string" }
  14. ]
  15. },
  16. "metricsSpec" : [
  17. { "type" : "count", "name" : "count" },
  18. { "type" : "longSum", "name" : "packets", "fieldName" : "packets" },
  19. { "type" : "longSum", "name" : "bytes", "fieldName" : "bytes" },
  20. { "type" : "doubleSum", "name" : "cost", "fieldName" : "cost" }
  21. ],
  22. "granularitySpec" : {
  23. "type" : "uniform",
  24. "segmentGranularity" : "HOUR",
  25. "queryGranularity" : "MINUTE",
  26. "rollup" : true
  27. }
  28. }

To see the effect of the query granularity, let’s look at this row from the raw input data:

  1. {"ts":"2018-01-01T01:03:29Z","srcIP":"1.1.1.1", "dstIP":"2.2.2.2", "srcPort":5000, "dstPort":7000, "protocol": 6, "packets":60, "bytes":6000, "cost": 4.3}

When this row is ingested with minute queryGranularity, Druid will floor the row’s timestamp to minute buckets:

  1. {"ts":"2018-01-01T01:03:00Z","srcIP":"1.1.1.1", "dstIP":"2.2.2.2", "srcPort":5000, "dstPort":7000, "protocol": 6, "packets":60, "bytes":6000, "cost": 4.3}

Define an interval (batch only)

For batch tasks, it is necessary to define a time interval. Input rows with timestamps outside of the time interval will not be ingested.

The interval is also specified in the granularitySpec:

  1. "dataSchema" : {
  2. "dataSource" : "ingestion-tutorial",
  3. "timestampSpec" : {
  4. "format" : "iso",
  5. "column" : "ts"
  6. },
  7. "dimensionsSpec" : {
  8. "dimensions": [
  9. "srcIP",
  10. { "name" : "srcPort", "type" : "long" },
  11. { "name" : "dstIP", "type" : "string" },
  12. { "name" : "dstPort", "type" : "long" },
  13. { "name" : "protocol", "type" : "string" }
  14. ]
  15. },
  16. "metricsSpec" : [
  17. { "type" : "count", "name" : "count" },
  18. { "type" : "longSum", "name" : "packets", "fieldName" : "packets" },
  19. { "type" : "longSum", "name" : "bytes", "fieldName" : "bytes" },
  20. { "type" : "doubleSum", "name" : "cost", "fieldName" : "cost" }
  21. ],
  22. "granularitySpec" : {
  23. "type" : "uniform",
  24. "segmentGranularity" : "HOUR",
  25. "queryGranularity" : "MINUTE",
  26. "intervals" : ["2018-01-01/2018-01-02"],
  27. "rollup" : true
  28. }
  29. }

Define the task type

We’ve now finished defining our dataSchema. The remaining steps are to place the dataSchema we created into an ingestion task spec, and specify the input source.

The dataSchema is shared across all task types, but each task type has its own specification format. For this tutorial, we will use the native batch ingestion task:

  1. {
  2. "type" : "index_parallel",
  3. "spec" : {
  4. "dataSchema" : {
  5. "dataSource" : "ingestion-tutorial",
  6. "timestampSpec" : {
  7. "format" : "iso",
  8. "column" : "ts"
  9. },
  10. "dimensionsSpec" : {
  11. "dimensions": [
  12. "srcIP",
  13. { "name" : "srcPort", "type" : "long" },
  14. { "name" : "dstIP", "type" : "string" },
  15. { "name" : "dstPort", "type" : "long" },
  16. { "name" : "protocol", "type" : "string" }
  17. ]
  18. },
  19. "metricsSpec" : [
  20. { "type" : "count", "name" : "count" },
  21. { "type" : "longSum", "name" : "packets", "fieldName" : "packets" },
  22. { "type" : "longSum", "name" : "bytes", "fieldName" : "bytes" },
  23. { "type" : "doubleSum", "name" : "cost", "fieldName" : "cost" }
  24. ],
  25. "granularitySpec" : {
  26. "type" : "uniform",
  27. "segmentGranularity" : "HOUR",
  28. "queryGranularity" : "MINUTE",
  29. "intervals" : ["2018-01-01/2018-01-02"],
  30. "rollup" : true
  31. }
  32. }
  33. }
  34. }

Define the input source

Now let’s define our input source, which is specified in an ioConfig object. Each task type has its own type of ioConfig. To read input data, we need to specify an inputSource. The example netflow data we saved earlier needs to be read from a local file, which is configured below:

  1. "ioConfig" : {
  2. "type" : "index_parallel",
  3. "inputSource" : {
  4. "type" : "local",
  5. "baseDir" : "quickstart/",
  6. "filter" : "ingestion-tutorial-data.json"
  7. }
  8. }

Define the format of the data

Since our input data is represented as JSON strings, we’ll use a inputFormat to json format:

  1. "ioConfig" : {
  2. "type" : "index_parallel",
  3. "inputSource" : {
  4. "type" : "local",
  5. "baseDir" : "quickstart/",
  6. "filter" : "ingestion-tutorial-data.json"
  7. },
  8. "inputFormat" : {
  9. "type" : "json"
  10. }
  11. }
  1. {
  2. "type" : "index_parallel",
  3. "spec" : {
  4. "dataSchema" : {
  5. "dataSource" : "ingestion-tutorial",
  6. "timestampSpec" : {
  7. "format" : "iso",
  8. "column" : "ts"
  9. },
  10. "dimensionsSpec" : {
  11. "dimensions": [
  12. "srcIP",
  13. { "name" : "srcPort", "type" : "long" },
  14. { "name" : "dstIP", "type" : "string" },
  15. { "name" : "dstPort", "type" : "long" },
  16. { "name" : "protocol", "type" : "string" }
  17. ]
  18. },
  19. "metricsSpec" : [
  20. { "type" : "count", "name" : "count" },
  21. { "type" : "longSum", "name" : "packets", "fieldName" : "packets" },
  22. { "type" : "longSum", "name" : "bytes", "fieldName" : "bytes" },
  23. { "type" : "doubleSum", "name" : "cost", "fieldName" : "cost" }
  24. ],
  25. "granularitySpec" : {
  26. "type" : "uniform",
  27. "segmentGranularity" : "HOUR",
  28. "queryGranularity" : "MINUTE",
  29. "intervals" : ["2018-01-01/2018-01-02"],
  30. "rollup" : true
  31. }
  32. },
  33. "ioConfig" : {
  34. "type" : "index_parallel",
  35. "inputSource" : {
  36. "type" : "local",
  37. "baseDir" : "quickstart/",
  38. "filter" : "ingestion-tutorial-data.json"
  39. },
  40. "inputFormat" : {
  41. "type" : "json"
  42. }
  43. }
  44. }
  45. }

Additional tuning

Each ingestion task has a tuningConfig section that allows users to tune various ingestion parameters.

As an example, let’s add a tuningConfig that sets a target segment size for the native batch ingestion task:

  1. "tuningConfig" : {
  2. "type" : "index_parallel",
  3. "maxRowsPerSegment" : 5000000
  4. }

Note that each ingestion task has its own type of tuningConfig.

Final spec

We’ve finished defining the ingestion spec, it should now look like the following:

  1. {
  2. "type" : "index_parallel",
  3. "spec" : {
  4. "dataSchema" : {
  5. "dataSource" : "ingestion-tutorial",
  6. "timestampSpec" : {
  7. "format" : "iso",
  8. "column" : "ts"
  9. },
  10. "dimensionsSpec" : {
  11. "dimensions": [
  12. "srcIP",
  13. { "name" : "srcPort", "type" : "long" },
  14. { "name" : "dstIP", "type" : "string" },
  15. { "name" : "dstPort", "type" : "long" },
  16. { "name" : "protocol", "type" : "string" }
  17. ]
  18. },
  19. "metricsSpec" : [
  20. { "type" : "count", "name" : "count" },
  21. { "type" : "longSum", "name" : "packets", "fieldName" : "packets" },
  22. { "type" : "longSum", "name" : "bytes", "fieldName" : "bytes" },
  23. { "type" : "doubleSum", "name" : "cost", "fieldName" : "cost" }
  24. ],
  25. "granularitySpec" : {
  26. "type" : "uniform",
  27. "segmentGranularity" : "HOUR",
  28. "queryGranularity" : "MINUTE",
  29. "intervals" : ["2018-01-01/2018-01-02"],
  30. "rollup" : true
  31. }
  32. },
  33. "ioConfig" : {
  34. "type" : "index_parallel",
  35. "inputSource" : {
  36. "type" : "local",
  37. "baseDir" : "quickstart/",
  38. "filter" : "ingestion-tutorial-data.json"
  39. },
  40. "inputFormat" : {
  41. "type" : "json"
  42. }
  43. },
  44. "tuningConfig" : {
  45. "type" : "index_parallel",
  46. "maxRowsPerSegment" : 5000000
  47. }
  48. }
  49. }

Submit the task and query the data

From the apache-druid-0.20.1 package root, run the following command:

  1. bin/post-index-task --file quickstart/ingestion-tutorial-index.json --url http://localhost:8081

After the script completes, we will query the data.

Let’s run bin/dsql and issue a select * from "ingestion-tutorial"; query to see what data was ingested.

  1. $ bin/dsql
  2. Welcome to dsql, the command-line client for Druid SQL.
  3. Type "\h" for help.
  4. dsql> select * from "ingestion-tutorial";
  5. ┌──────────────────────────┬───────┬──────┬───────┬─────────┬─────────┬─────────┬──────────┬─────────┬─────────┐
  6. __time bytes cost count dstIP dstPort packets protocol srcIP srcPort
  7. ├──────────────────────────┼───────┼──────┼───────┼─────────┼─────────┼─────────┼──────────┼─────────┼─────────┤
  8. 2018-01-01T01:01:00.000Z 6000 4.9 3 2.2.2.2 3000 60 6 1.1.1.1 2000
  9. 2018-01-01T01:02:00.000Z 9000 18.1 2 2.2.2.2 7000 90 6 1.1.1.1 5000
  10. 2018-01-01T01:03:00.000Z 6000 4.3 1 2.2.2.2 7000 60 6 1.1.1.1 5000
  11. 2018-01-01T02:33:00.000Z 30000 56.9 2 8.8.8.8 5000 300 17 7.7.7.7 4000
  12. 2018-01-01T02:35:00.000Z 30000 46.3 1 8.8.8.8 5000 300 17 7.7.7.7 4000
  13. └──────────────────────────┴───────┴──────┴───────┴─────────┴─────────┴─────────┴──────────┴─────────┴─────────┘
  14. Retrieved 5 rows in 0.12s.
  15. dsql>