Overview
A Restore is used to restore messages from cold storage to a message source like Kafka.
It has many different configuration options to allow for a wide range of use cases. You can use it to restore data from multiple topics in parallel, restore data until a certain point in time or until a certain offset.
Another use case is to restore or migrate data from one cluster to another cluster. It supports mapping schemas between topics, renaming topics, and much more.
Usage
Restore resources can be managed using the kubectl command line tool,
and are available by the name restore or restores.
$ kubectl get restoresNAME          STATUS         AGEmy-restore    🚀 Restoring   1sRestore Status
A Restore can have the following statuses:
- Draft The Restore has been created but no topic mappings have been defined yet;
- Ready The Restore is configured but it has not been started yet;
- Invalid The Restore’s configuration is invalid;
- Initializing The Restore Job is being created;
- Restoring The Restore is running and restoring to the event hub;
- Failed The Restore has failed;
- Done The Restore is complete.
Additionally,
a Restore resource exposes a JobCompleted Condition to report on the state of the underlying Job.
This condition’s status can either be ‘True’ or ‘False’,
and the reason field gives additional context:
- JobInitializing the job is being started;
- JobRunning the job is running;
- JobCompleted the job has completed successfully;
- JobFailed the job has failed.
Creating a Restore
The following is an example of a Restore.
It will restore 2 topics from the my-volume-storage Storage to the my-kafka-cluster Endpoint.
apiVersion: kannika.io/v1alphakind: Restoremetadata:  name: restore-examplespec:  source: "my-volume-storage"  sink: "my-kafka-cluster"  enabled: true  config:    topics:      - target: target-topicA        source: source-topicA      - target: target-topicB        source: source-topicBIn this example:
- 
A Restore named restore-exampleis created, indicated by the.metadata.namefield. This name will become the basis for the Kubernetes Job (and other resources) which are created later.
- 
The Restore will connect to the my-volume-storageStorage to fetch data, indicated by the.spec.sourcefield. The Restore will restore data to themy-kafka-clusterEvent Hub Endpoint defined in thespec.sinkfield.
- 
The .spec.config.topicsfield contains the mapping between the source and target topics. In this example, the topicssource-topicAandsource-topicBwill be restored totarget-topicAandtarget-topicBrespectively.
- 
The .spec.enabledfield indicates whether the Restore should be enabled or not. Note that this field is optional and defaults tofalse. This means that the Restore will not be started unless this field is explicitly set totrue. Please check the Drafting and starting a Restore section for more information.
Drafting and starting a Restore
The following is an example of a Draft Restore.
apiVersion: kannika.io/v1alphakind: Restoremetadata:  name: restore-examplespec:  source: "my-volume-storage"  sink: "my-kafka-cluster"  enabled: false  config: {}This is a minimal Restore definition.
In this state,
the Restore will not be started (the Job will not be created yet)
because the .spec.enabled field is not set to true.
The Restore is in a Draft state.
At this stage of the Restore lifecycle, the Restore can act as a working document, and be edited and modified as needed. More importantly, topics can be imported and mapped to target topics, or removed.
To start the Restore,
the .spec.enabled field must be set to true.
Restore to multiple topics in parallel
The following is an example of a draft Restore that can restore to multiple topics in parallel.
apiVersion: kannika.io/v1alphakind: Restoremetadata:  name: parallel-examplespec:  source: "my-volume-storage"  sink: "my-sink"  enabled: true  config:    parallelism: 3In this example,
the .spec.config.parallelism field is set to 3.
This means that the Restore will restore 3 topics in parallel.
Use cases where this is useful:
- when restoring a large number of topics
- when restoring large, single partition topics
By default, a Restore will use a single producer at any given time. This may limit the amount of concurrency achievable if the target topics are configured in a way that requires different producer configurations.
At this time,
a matching value of message.max.bytes is the only cluster-side topic setting considered for sharing a producer,
but more may be used in the future.
To increase the number of producers a Restore is allowed to use concurrently,
set the spec.config.maxProducers attribute:
apiVersion: kannika.io/v1alphakind: Restoremetadata:  name: parallel-examplespec:  source: "my-volume-storage"  sink: "my-sink"  enabled: true  config:    parallelism: 3    maxProducers: 2In this example,
the .spec.config.parallelism field is set to 3
and .spec.config.maxProducers is set to 2.
This means that the Restore will restore up to 3 topics in parallel
and that it is allowed to create an additional producer if required.
Adding the legacy offset to the headers
You can add the original offsets to the headers of the restored messages. The value of the header will be the original offset as a string.
The following is an example of a Restore that adds the original offset to the headers of the restored message.
apiVersion: kannika.io/v1alphakind: Restoremetadata:  name: legacy-offset-header-examplespec:  source: "my-volume-storage"  sink: "sink"  enabled: true  config:    legacyOffsetHeader: "original-offset"    topics:      - target: target-topic        source: source-topicIn this example,
the .spec.config.legacyOffsetHeader field is set to original-offset.
This means that the original offset will be added to the headers of the restored messages with the key original-offset.
If you wish to add the header only to a specific topic and not to all topics, you must split the Restore into multiple Restores.
Restoring data between two dates
It is possible to restore records whose timestamp is within some time period.
Two settings are available to achieve this:
- restoreFromDateTime: start restoring from the given datetime
- restoreUntilDateTime: restore data up to the given datetime
When used together, those settings define a time window.
The following is an example of a Restore that restores the data up to the start of the year 2021:
apiVersion: kannika.io/v1alphakind: Restoremetadata:  name: restore-until-examplespec:  source: "my-volume-storage"  sink: "sink"  enabled: true  config:    restoreUntilDateTime: "2021-01-01T00:00:00Z"    topics:      - target: target-topic        source: source-topicIn this example,
the .spec.config.restoreUntilDateTime field is set to 2021-01-01T00:00:00Z.
This means that the Restore job will only restore data with a timestamp earlier than January 1st, 2021.
Any messages with a timestamp from this point in time will not be restored.
In the next example, we define a time window using both parameters in order to restore 1 month worth of data:
apiVersion: kannika.io/v1alphakind: Restoremetadata:  name: restore-window-examplespec:  source: "my-volume-storage"  sink: "sink"  enabled: true  config:    restoreFromDateTime: "2021-01-01T00:00:00Z"    restoreUntilDateTime: "2021-02-01T00:00:00Z"    topics:      - target: target-topic        source: source-topicIn this example,
the .spec.config.restoreFromDateTime and .spec.config.restoreUntilDateTime are used together to instruct the Restore to select only records from the month of January 2021.
Selecting offsets to restore
For each partition of a given topic, you can define a range of offsets to restore.
The following is an example of a Restore using multiple filtering rules:
apiVersion: kannika.io/v1alphakind: Restoremetadata:  name: restore-until-examplespec:  source: "source"  sink: "sink"  enabled: true  config:    topics:      - target: target-topic        source: source-topic        partitions:          - number: 0            restoreUntilOffset: 100          - number: 1            restoreFromOffset: 50            restoreUntilOffset: 1500          - number: 2In this example, we’ve defined various combinations of parameters to request different filtering rules.
The Restore job will only restore:
- offsets from 0 (inclusive) to 100 (exclusive) from partition #0;
- offsets from 50 (inclusive) to 1500 (exclusive) from partition #1;
- everything from partition #2;
- nothing from every other partition (if any).
Preflight checks
A Restore performs preflight checks before starting the restore process for each topic. These checks are used to ensure that topic can be restored without any issues.
The current checks are:
- Check if the target topic exists
- Check if the partition count of the source and target topics are the same
Future checks that are planned are:
- Check if the target topic is empty
- Check if the target topic has the same configuration as the source topic
Check the roadmap for more information.
Disabling preflight checks
In some cases, it can be necessary to disable the preflight checks.
Fine-grained control over the preflight checks is not available yet,
but you can disable all preflight checks for a specific topic by setting the disablePreflightChecks field to true in the mapping configuration.
Example:
apiVersion: kannika.io/v1alphakind: Restoremetadata:  name: restore-without-preflight-checksspec:  sink: "sink"  source: "source"  enabled: true  config:    topics:      - target: target-topic-name        source: source-topic-name        disablePreflightChecks: true    # Disable preflight checks for this topicMapping schemas
You can map schemas between the source and target topics when restoring data. Check the Schema Mapping page for more details
 
 