Source configuration
Quickwit can insert data into an index from one or multiple sources.
A source can be added after index creation using the CLI command quickwit source create
.
It can also be enabled or disabled with the quickwit source enable/disable
subcommands.
A source is declared using an object called source config, which defines the source's settings. It consists of multiple parameters:
- source ID
- source type
- source parameters
- input_format
- maximum number of pipelines per indexer (optional)
- desired number of pipelines (optional)
- transform parameters (optional)
Source ID
The source ID is a string that uniquely identifies the source within an index. It may only contain uppercase or lowercase ASCII letters, digits, hyphens (-
), and underscores (_
). Finally, it must start with a letter and contain at least 3 characters but no more than 255.
Source type
The source type designates the kind of source being configured. As of version 0.5, available source types are ingest-api
, kafka
, kinesis
, and pulsar
. The file
type is also supported but only for local ingestion from the CLI.
Source parameters
The source parameters indicate how to connect to a data store and are specific to the source type.
File source
A file source reads data from files containing JSON objects separated by newlines (NDJSON). Gzip compression is supported provided that the file name ends with the .gz
suffix.
Ingest a single file (CLI only)
To ingest a specific file, run the indexing directly in an adhoc CLI process with:
./quickwit tool local-ingest --index <index> --input-path <input-path>
Both local and object files are supported, provided that the environment is configured with the appropriate permissions. A tutorial is available here.
Notification based file ingestion (beta)
Quickwit can automatically ingest all new files that are uploaded to an S3 bucket. This requires creating and configuring an SQS notification queue. A complete example can be found in this tutorial.
The notifications
parameter takes an array of notification settings. Currently one notifier can be configured per source and only the SQS notification type
is supported.
Required fields for the SQS notifications
parameter items:
type
:sqs
queue_url
: complete URL of the SQS queue (e.ghttps://sqs.us-east-1.amazonaws.com/123456789012/queue-name
)message_type
: format of the message payload, eithers3_notification
: an S3 event notificationraw_uri
: a message containing just the file object URI (e.g.s3://mybucket/mykey
)deduplication_window_duration_sec
: maximum duration for which ingested files checkpoints are kept (default 3600)deduplication_window_max_messages
: maximum number of ingested file checkpoints kept (default 100k)deduplication_cleanup_interval_secs
: frequency at which outdated file checkpoints are cleaned up
Adding a file source with SQS notifications to an index with the CLI
cat << EOF > source-config.yaml
version: 0.8
source_id: my-sqs-file-source
source_type: file
num_pipelines: 2
params:
notifications:
- type: sqs
queue_url: https://sqs.us-east-1.amazonaws.com/123456789012/queue-name
message_type: s3_notification
EOF
./quickwit source create --index my-index --source-config source-config.yaml
- Quickwit does not automatically delete the source files after a successful ingestion. You can use S3 object expiration to configure how long they should be retained in the bucket.
- Configure the notification to only forward events of type
s3:ObjectCreated:*
. Other events are acknowledged by the source without further processing and an warning is logged. - We strongly recommend using a dead letter queue to receive all messages that couldn't be processed by the file source. A
maxReceiveCount
of 5 is a good default value. Here are some common situations where the notification message ends up in the dead letter queue:- the notification message could not be parsed (e.g it is not a valid S3 notification)
- the file was not found
- the file is corrupted (e.g unexpected compression)
- AWS S3 notifications and AWS SQS provide "at least once" delivery guaranties. To avoid duplicates, the file source includes a mechanism that prevents the same file from being ingested twice. It works by storing checkpoints in the metastore that track the indexing progress for each file. You can decrease
deduplication_window_*
or increasededuplication_cleanup_interval_secs
to reduce the load on the metastore.
Ingest API source
An ingest API source reads data from the Ingest API. This source is automatically created at the index creation and cannot be deleted nor disabled.
Kafka source
A Kafka source reads data from a Kafka stream. Each message in the stream must hold a JSON object.
A tutorial is available here.
Kafka source parameters
The Kafka source consumes a topic
using the client library librdkafka and forwards the key-value pairs carried by the parameter client_params
to the underlying librdkafka consumer. Common client_params
options are bootstrap servers (bootstrap.servers
), or security protocol (security.protocol
). Please, refer to Kafka and librdkafka documentation pages for more advanced options.
Property | Description | Default value |
---|---|---|
topic | Name of the topic to consume. | required |
client_log_level | librdkafka client log level. Possible values are: debug, info, warn, error. | info |
client_params | librdkafka client configuration parameters. | {} |
enable_backfill_mode | Backfill mode stops the source after reaching the end of the topic. | false |
Kafka client parameters
bootstrap.servers
Comma-separated list of host and port pairs that are the addresses of a subset of the Kafka brokers in the Kafka cluster.auto.offset.reset
Defines the behavior of the source when consuming a partition for which there is no initial offset saved in the checkpoint.earliest
consumes from the beginning of the partition, whereaslatest
(default) consumes from the end.enable.auto.commit
This setting is ignored because the Kafka source manages commit offsets internally using the checkpoint API and forces auto-commits to be disabled.group.id
Kafka-based distributed indexing relies on consumer groups. Unless overridden in the client parameters, the default group ID assigned to each consumer managed by the source isquickwit-{index_uid}-{source_id}
.max.poll.interval.ms
Short max poll interval durations may cause a source to crash when back pressure from the indexer occurs. Therefore, Quickwit recommends using the default value of300000
(5 minutes).
Adding a Kafka source to an index with the CLI
cat << EOF > source-config.yaml
version: 0.8
source_id: my-kafka-source
source_type: kafka
num_pipelines: 2
params:
topic: my-topic
client_params:
bootstrap.servers: localhost:9092
security.protocol: SSL
EOF
./quickwit source create --index my-index --source-config source-config.yaml
Kinesis source
A Kinesis source reads data from an Amazon Kinesis stream. Each message in the stream must hold a JSON object.
A tutorial is available here.
Kinesis source parameters
The Kinesis source consumes a stream identified by a stream_name
and a region
.
Property | Description | Default value |
---|---|---|
stream_name | Name of the stream to consume. | required |
region | The AWS region of the stream. Mutually exclusive with endpoint . | us-east-1 |
endpoint | Custom endpoint for use with AWS-compatible Kinesis service. Mutually exclusive with region . | optional |
If no region is specified, Quickwit will attempt to find one in multiple other locations and with the following order of precedence:
Environment variables (
AWS_REGION
thenAWS_DEFAULT_REGION
)Config file, typically located at
~/.aws/config
or otherwise specified by theAWS_CONFIG_FILE
environment variable if set and not empty.Amazon EC2 instance metadata service determining the region of the currently running Amazon EC2 instance.
Default value:
us-east-1
Adding a Kinesis source to an index with the CLI
cat << EOF > source-config.yaml
version: 0.7
source_id: my-kinesis-source
source_type: kinesis
params:
stream_name: my-stream
EOF
quickwit source create --index my-index --source-config source-config.yaml
Pulsar source
A Puslar source reads data from one or several Pulsar topics. Each message in topic(s) must hold a JSON object.
A tutorial is available here.
Pulsar source parameters
The Pulsar source consumes topics
using the client library pulsar-rs.
Property | Description | Default value |
---|---|---|
topics | List of topics to consume. | required |
address | Pulsar URL (pulsar:// and pulsar+ssl://). | required |
consumer_name | The consumer name to register with the pulsar source. | quickwit |
Adding a Pulsar source to an index with the CLI
cat << EOF > source-config.yaml
version: 0.7
source_id: my-pulsar-source
source_type: pulsar
params:
topics:
- my-topic
address: pulsar://localhost:6650
EOF
./quickwit source create --index my-index --source-config source-config.yaml
Number of pipelines
The num_pipelines
parameter is only available for distributed sources like Kafka, GCP PubSub, and Pulsar.
It defines the number of pipelines to run on a cluster for the source. The actual placement of these pipelines on the different indexer will be decided by the control plane.
Note that distributing the indexing load of partitioned sources like Kafka is done by assigning the different partitions to different pipelines. As a result, it is important to ensure that the number of partitions is a multiple of num_pipelines
.
Also, assuming you are only indexing a single Kafka source in your Quickwit cluster, you should set the number of pipelines to a multiple of the number of indexers. Finally, if your indexing throughput is high, you should provision between 2 and 4 vCPUs per pipeline.
For instance, assume you want to index a 60-partition topic, with each partition receiving a throughput of 10 MB/s. If you measured that Quickwit can index your data at a pace of 40MB/s per pipeline, a possible setting could be:
- 5 indexers with 8 vCPUs each
- 15 pipelines
Each indexer will then be in charge of 3 pipelines, and each pipeline will cover 4 partitions.
Transform parameters
For all source types but the ingest-api
, ingested documents can be transformed before being indexed using Vector Remap Language (VRL) scripts.
Property | Description | Default value |
---|---|---|
script | Source code of the VRL program executed to transform documents. | required |
timezone | Timezone used in the VRL program for date and time manipulations. It must be a valid name in the TZ database | UTC |
# Your source config here
# ...
transform:
script: |
.message = downcase(string!(.message))
.timestamp = now()
del(.username)
timezone: local
Input format
The input_format
parameter specifies the expected data format of the source. The formats currently supported are:
json
(default)otlp_logs_json
otlp_logs_proto
otlp_traces_json
otlp_traces_proto
plain_text
OTLP formats
When ingesting OTLP data into an OTLP logs or traces index with a source other than the native OTEL endpoints, use this parameter to specify whether the exported logs or traces will be serialized in JSON or Protobuf. When possible, prefer the latter, which is a more compact encoding.
Plaint text format
Use this parameter for unstructured text data. Internally, Quickwit can only index JSON data. To allow the ingestion of plain text documents, Quickwit transform them on the fly into JSON objects of the following form: {"plain_text": "<original plain text document>"}
. Then, they can be optionally transformed into more complex documents using a VRL script. (see transform feature).
The following is an example of how one could parse and transform a CSV dataset containing a list of users described by 3 attributes: first name, last name, and age.
# Your source config here
# ...
input_format: plain_text
transform:
script: |
user = parse_csv!(.plain_text)
.first_name = user[0]
.last_name = user[1]
.age = to_int!(user[2])
del(.plain_text)
Enabling/disabling a source from an index
A source can be enabled or disabled from an index using the CLI command quickwit source enable
or quickwit source disable
:
quickwit source disable --index my-index --source my-source
A source is enabled by default. When disabling a source, the related indexing pipelines will be shut down on each relevant indexer and indexing for this source will be paused.
Deleting a source from an index
A source can be removed from an index using the CLI command quickwit source delete
:
quickwit source delete --index my-index --source my-source
When deleting a source, the checkpoint associated with the source is also removed.