Import Data
This document describes how to import data into a TiDB cluster on Kubernetes using TiDB Lightning.
In Kubernetes, the tidb-lightning is in a separate Helm chart and deployed as a Job
.
TiDB Lightning supports two backends: Local-backend
, and TiDB-backend
. For the differences of these backends and how to choose backends, see TiDB Lightning Backends.
For
Local-backend
, only tidb-lightning needs to be deployed.For
TiDB-backend
, only tidb-lightning needs to be deployed, and it is recommended to import data using CustomResourceDefinition (CRD) in TiDB Operator v1.1 and later versions. For details, refer to Restore Data from GCS Using TiDB Lightning or Restore Data from S3-Compatible Storage Using TiDB Lightning
Deploy TiDB Lightning
Step 1. Configure TiDB Lightning
Use the following command to save the default configuration of TiDB Lightning to the tidb-lightning-values.yaml
file:
helm inspect values pingcap/tidb-lightning --version=${chart_version} > tidb-lightning-values.yaml
Configure the backend
field in the configuration file depending on your needs. The optional values are local
and tidb
.
# The delivery backend used to import data (valid options include `local` and `tidb`).
# If set to `local`, then the following `sortedKV` should be set.
backend: local
If you use the local
backend, you must set sortedKV
in values.yaml
to create the corresponding PVC. The PVC is used for local KV sorting.
# For `local` backend, an extra PV is needed for local KV sorting.
sortedKV:
storageClassName: local-storage
storage: 100Gi
Configure checkpoint
Starting from v1.1.10, the tidb-lightning Helm chart saves the TiDB Lightning checkpoint information in the directory of the source data. When the a new tidb-lightning job is running, it can resume the data import according to the checkpoint information.
For versions earlier than v1.1.10, you can modify config
in values.yaml
to save the checkpoint information in the target TiDB cluster, other MySQL-compatible databases or a shared storage directory. For more information, refer to TiDB Lightning checkpoint.
Configure TLS
If TLS between components has been enabled on the target TiDB cluster (spec.tlsCluster.enabled: true
), refer to Generate certificates for components of the TiDB cluster to genereate a server-side certificate for TiDB Lightning, and configure tlsCluster.enabled: true
in values.yaml
to enable TLS between components.
If the target TiDB cluster has enabled TLS for the MySQL client (spec.tidb.tlsClient.enabled: true
), and the corresponding client-side certificate is configured (the Kubernetes Secret object is ${cluster_name}-tidb-client-secret
), you can configure tlsClient.enabled: true
in values.yaml
to enable TiDB Lightning to connect to the TiDB server using TLS.
To use different client certificates to connect to the TiDB server, refer to Issue two sets of certificates for the TiDB cluster to generate the client-side certificate for TiDB Lightning, and configure the corresponding Kubernetes secret object in tlsCluster.tlsClientSecretName
in values.yaml
.
Step 2. Configure the data source
The tidb-lightning Helm chart supports both local and remote data sources. The three types of data sources correspond to three modes: local, remote, and ad hoc. The three modes cannot be used together. You can only configure one mode.
Local
In the local mode, tidb-lightning reads the backup data from a directory in one of the Kubernetes node.
dataSource:
local:
nodeName: kind-worker3
hostPath: /data/export-20190820
The descriptions of the related fields are as follows:
dataSource.local.nodeName
: the node name that the directory is located at.dataSource.local.hostPath
: the path of the backup data. The path must contain a file namedmetadata
.
Remote
Unlike the local mode, the remote mode uses rclone to download the backup tarball file or the backup directory from a network storage to a PV. Any cloud storage supported by rclone should work, but currently only the following have been tested: Google Cloud Storage (GCS), Amazon S3, Ceph Object Storage.
To restore backup data from the remote source, take the following steps:
Grant permissions to the remote storage.
If you use Amazon S3 as the storage, refer to AWS account Permissions. The configuration varies with different methods.
If you use Ceph as the storage, you can only grant permissions by importing AccessKey and SecretKey. See Grant permissions by AccessKey and SecretKey.
If you use GCS as the storage, refer to GCS account permissions.
Grant permissions by importing AccessKey and SecretKey
Create a
Secret
configuration filesecret.yaml
containing the rclone configuration. A sample configuration is listed below. Only one cloud storage configuration is required.apiVersion: v1 kind: Secret metadata: name: cloud-storage-secret type: Opaque stringData: rclone.conf: | [s3] type = s3 provider = AWS env_auth = false access_key_id = ${access_key} secret_access_key = ${secret_key} region = us-east-1 [ceph] type = s3 provider = Ceph env_auth = false access_key_id = ${access_key} secret_access_key = ${secret_key} endpoint = ${endpoint} region = :default-placement [gcs] type = google cloud storage # The service account must include Storage Object Viewer role # The content can be retrieved by `cat ${service-account-file} | jq -c .` service_account_credentials = ${service_account_json_file_content}Execute the following command to create
Secret
:kubectl apply -f secret.yaml -n ${namespace}
Grant permissions by associating IAM with Pod or with ServiceAccount
If you use Amazon S3 as the storage, you can grant permissions by associating IAM with Pod or with ServiceAccount, in which
s3.access_key_id
ands3.secret_access_key
can be ignored.Save the following configurations as
secret.yaml
.apiVersion: v1 kind: Secret metadata: name: cloud-storage-secret type: Opaque stringData: rclone.conf: | [s3] type = s3 provider = AWS env_auth = true access_key_id = secret_access_key = region = us-east-1Execute the following command to create
Secret
:kubectl apply -f secret.yaml -n ${namespace}
Configure the
dataSource
field. For example:dataSource: remote: rcloneImage: rclone/rclone:1.55.1 storageClassName: local-storage storage: 100Gi secretName: cloud-storage-secret path: s3:bench-data-us/sysbench/sbtest_16_1e7.tar.gz # directory: s3:bench-data-usThe descriptions of the related fields are as follows:
dataSource.remote.storageClassName
: the name of StorageClass used to create PV.dataSource.remote.secretName
: the name of the Secret created in the previous step.dataSource.remote.path
: If the backup data is packaged as a tarball file, use this field to indicate the path to the tarball file.dataSource.remote.directory
: If the backup data is in a directory, use this field to specify the path to the directory.
Ad hoc
When restoring data from remote storage, sometimes the restore process is interrupted due to the exception. In such cases, if you do not want to download backup data from the network storage repeatedly, you can use the ad hoc mode to directly recover the data that has been downloaded and decompressed into PV in the remote mode.
For example:
dataSource:
adhoc:
pvcName: tidb-cluster-scheduled-backup
backupName: scheduled-backup-20190822-041004
The descriptions of the related fields are as follows:
dataSource.adhoc.pvcName
: the PVC name used in restoring data from remote storage. The PVC must be deployed in the same namespace as Tidb-Lightning.dataSource.adhoc.backupName
: the name of the original backup data, such as:backup-2020-12-17T10:12:51Z
(Does not contain the '. tgz' suffix of the compressed file name on network storage).
Step 3. Deploy TiDB Lightning
The method of deploying TiDB Lightning varies with different methods of granting permissions and with different storages.
For Local Mode, Ad hoc Mode, and Remote Mode (only for remote modes that meet one of the three requirements: using Amazon S3 AccessKey and SecretKey permission granting methods, using Ceph as the storage backend, or using GCS as the storage backend), run the following command to deploy TiDB Lightning.
helm install ${release_name} pingcap/tidb-lightning --namespace=${namespace} --set failFast=true -f tidb-lightning-values.yaml --version=${chart_version}For Remote Mode, if you grant permissions by associating Amazon S3 IAM with Pod, take the following steps:
Create the IAM role:
Create an IAM role for the account, and grant the required permission to the role. The IAM role requires the
AmazonS3FullAccess
permission because TiDB Lightning needs to access Amazon S3 storage.Modify
tidb-lightning-values.yaml
, and add theiam.amazonaws.com/role: arn:aws:iam::123456789012:role/user
annotation in theannotations
field.Deploy TiDB Lightning:
helm install ${release_name} pingcap/tidb-lightning --namespace=${namespace} --set failFast=true -f tidb-lightning-values.yaml --version=${chart_version}
For Remote Mode, if you grant permissions by associating Amazon S3 with ServiceAccount, take the following steps:
Enable the IAM role for the service account on the cluster:
To enable the IAM role permission on the EKS cluster, see AWS Documentation.
Create the IAM role:
Create an IAM role. Grant the
AmazonS3FullAccess
permission to the role, and editTrust relationships
of the role.Associate IAM with the ServiceAccount resources:
kubectl annotate sa ${servieaccount} -n ${namespace} eks.amazonaws.com/role-arn=arn:aws:iam::123456789012:role/userDeploy TiDB Lightning:
helm install ${release_name} pingcap/tidb-lightning --namespace=${namespace} --set-string failFast=true,serviceAccount=${servieaccount} -f tidb-lightning-values.yaml --version=${chart_version}
Destroy TiDB Lightning
Currently, TiDB Lightning only supports restoring data offline. After the restore, if the TiDB cluster needs to provide service for external applications, you can destroy TiDB Lightning to save cost.
To destroy tidb-lightning, execute the following command:
helm uninstall ${release_name} -n ${namespace}
Troubleshoot TiDB Lightning
When TiDB Lightning fails to restore data, you cannot simply restart it. Manual intervention is required. Therefore, the TiDB Lightning's Job
restart policy is set to Never
.
If TiDB Lightning fails to restore data, and if you have configured to persist the checkpoint information in the target TiDB cluster, other MySQL-compatible databases or a shared storage directory, follow the steps below to do manual intervention:
View the log by executing the following command:
kubectl logs -n ${namespace} ${pod_name}If you restore data using the remote data source, and the error occurs when TiDB Lightning downloads data from remote storage:
- Address the problem according to the log.
- Deploy tidb-lightning again and retry the data restore.
For other cases, refer to the following steps.
Refer to TiDB Lightning Troubleshooting and learn the solutions to different issues.
Address the issues accordingly:
If
tidb-lightning-ctl
is required:Configure
dataSource
invalues.yaml
. Make sure the newJob
uses the data source and checkpoint information of the failedJob
:- In the local or ad hoc mode, you do not need to modify
dataSource
. - In the remote mode, modify
dataSource
to the ad hoc mode.dataSource.adhoc.pvcName
is the PVC name created by the original Helm chart.dataSource.adhoc.backupName
is the backup name of the data to be restored.
- In the local or ad hoc mode, you do not need to modify
Modify
failFast
invalues.yaml
tofalse
, and create aJob
used fortidb-lightning-ctl
.- Based on the checkpoint information, TiDB Lightning checks whether the last data restore encountered an error. If yes, TiDB Lightning pauses the restore automatically.
- TiDB Lightning uses the checkpoint information to avoid repeatedly restoring the same data. Therefore, creating the
Job
does not affect data correctness.
After the Pod corresponding to the new
Job
is running, view the log by runningkubectl logs -n ${namespace} ${pod_name}
and confirm tidb-lightning in the newJob
already stops data restore. If the log has the following message, the data restore is stopped:tidb lightning encountered error
tidb lightning exit
Enter the container by running
kubectl exec -it -n ${namespace} ${pod_name} -it -- sh
.Obtain the starting script by running
cat /proc/1/cmdline
.Get the command-line parameters from the starting script. Refer to TiDB Lightning Troubleshooting and troubleshoot using
tidb-lightning-ctl
.After the troubleshooting, modify
failFast
invalues.yaml
totrue
and create a newJob
to resume data restore.
If
tidb-lightning-ctl
is not required:Configure
dataSource
invalues.yaml
. Make sure the newJob
uses the data source and checkpoint information of the failedJob
:- In the local or ad hoc mode, you do not need to modify
dataSource
. - In the remote mode, modify
dataSource
to the ad hoc mode.dataSource.adhoc.pvcName
is the PVC name created by the original Helm chart.dataSource.adhoc.backupName
is the backup name of the data to be restored.
- In the local or ad hoc mode, you do not need to modify
Create a new
Job
using the modifiedvalues.yaml
file and resume data restore.
After the troubleshooting and data restore is completed, delete the
Job
s for data restore and troubleshooting.