일체 포함
TIDB for agentic AI
Database-for-Agentic-Al
에이전트형 AI용 데이터베이스 에이전트 메모리, 상태 및 다중 홉 추론을 위해 특별히 설계되었습니다.
Vector-Search-RAG
벡터 검색 및 RAG 네이티브 벡터 인덱싱 및 검색 증강 생성 파이프라인
Quick-Start
빠른 시작: 에이전트 기반 메모리 영구 에이전트 메모리를 몇 초 만에 생성 - 설정 필요 없음
Build-AI-Applications
AI 애플리케이션 구축 AI 앱을 빠르게 출시하기 위한 SDK, 가이드 및 템플릿
제품
logo-TiDB-1

혁신가들이 트랜잭션, 인공지능 및 기타 최신 애플리케이션에 활용하기 위해 신뢰하는 오픈 소스 분산 SQL 데이터베이스입니다.

제품 개요

배포 옵션 TiDB Cloud TiDB Self-Managed 가격
생태계 통합 TiKV mem9 drive9 OSS Insight
솔루션
고객 성공 사례

전 세계 혁신 선도 기업들이 신뢰하고 검증한 제품입니다.

산업별 일체 포함 핀테크 전자상거래 SaaS Logistics & Supply Chain
사용 사례별 인프라 비용 절감 운영 인텔리전스 활성화 MySQL 워크로드 현대화 GenAI 애플리케이션 구축
자원
학습하기 블로그 전자책 및 백서 동영상 및 다시보기 Compare Databases Playbooks
관계를 맺다 이벤트 및 웨비나 디스코드 커뮤니티 개발자 허브 TiDB 스케일
핑캡 대학교 행동 핸즈온 랩 인증
회사
트러스트 허브

TiDB가 데이터의 기밀성과 가용성을 어떻게 보장하는지 알아보세요.

에 대한 보도 자료 및 뉴스 회사 소개 채용 파트너 문의하기
문서
로그인 무료로 시작하세요
TIDB for agentic AI
에이전트형 AI용 데이터베이스 벡터 검색 및 RAG 빠른 시작: 에이전트 기반 메모리 AI 애플리케이션 구축
logo-TiDB-1

혁신가들이 트랜잭션, 인공지능 및 기타 최신 애플리케이션에 활용하기 위해 신뢰하는 오픈 소스 분산 SQL 데이터베이스입니다.

제품 개요

배포 옵션
TiDB Cloud TiDB Self-Managed 가격
생태계
통합 TiKV mem9 drive9 OSS Insight
고객 성공 사례

전 세계 혁신 선도 기업들이 신뢰하고 검증한 제품입니다.

산업별
일체 포함 핀테크 전자상거래 SaaS Logistics & Supply Chain
사용 사례별
인프라 비용 절감 운영 인텔리전스 활성화 MySQL 워크로드 현대화 GenAI 애플리케이션 구축
학습하기
블로그 전자책 및 백서 동영상 및 다시보기 Compare Databases Playbooks
관계를 맺다
이벤트 및 웨비나 디스코드 커뮤니티 개발자 허브 TiDB 스케일
핑캡 대학교
행동 핸즈온 랩 인증
트러스트 허브

TiDB가 데이터의 기밀성과 가용성을 어떻게 보장하는지 알아보세요.

에 대한
보도 자료 및 뉴스 회사 소개 채용 파트너 문의하기
문서
로그인
무료로 시작하세요

TiDB Community Edition

The open source TiDB platform released under the Apache 2.0 license, and supported by the community


Select your favorite way to deploy TiDB online

Deploy TiDB on bare-metal using TiUP

See Full Doc >

TiUP is a cluster operation and maintenance tool that makes it easy to deploy TiDB clusters. The following commands will deploy a simple local cluster using TiUP’s “playground” component. Refer to the TiUP documentation for more information about how to use TiUP to deploy a cluster across multiple hosts.

1. Deploy TiDB

tiup playground

2. Access TiDB

mysql --host 127.0.0.1 --port 4000 -u root

Join the TiDB Community Slack 또는 Discord

Deploy TiDB on Kubernetes

See Full Doc >

TiDB can be easily deployed in a Kubernetes environment using TiDB Operator. These commands will install the TiDB Operator CRDs into an existing Kubernetes cluster and deploy a basic TiDB cluster. Refer to the TiDB Operator documentation for more information about how to customize a deployment.

1. Install TiDB Operator

kubectl apply -f https://raw.githubusercontent.com/pingcap/tidb-operator/{tidb-operator version}/manifests/crd.yaml
helm repo add pingcap https://charts.pingcap.org/
helm install tidb-operator pingcap/tidb-operator --version {​tidb-operator version}

2. Deploy TiDB and TiDB Monitor

kubectl apply -f https://raw.githubusercontent.com/pingcap/tidb-operator/master/examples/basic/tidb-cluster.yaml
kubectl apply -f https://raw.githubusercontent.com/pingcap/tidb-operator/master/examples/basic/tidb-monitor.yaml

3. Access the database

kubectl port-forward svc/basic-tidb 4000 > pf4000.out &
mysql -h 127.0.0.1 -P 4000 -u root

Deploy TiDB on AWS EKS

See Full Doc >

TiDB can be easily deployed to AWS EKS using TiDB Operator and included Terraform scripts to manage EKS infrastructure. These commands will create a basic EKS cluster, install TiDB Operator, and deploy a basic TiDB cluster. Consult the TiDB Operator documentation for more information about how to customize your deployment.

1. Deploy EKS, TiDB Operator, and TiDB cluster node pool

git clone --depth=1 https://github.com/pingcap/tidb-operator && cd tidb-operator/deploy/aws
cp demo.tfvars terraform.tfvars
terraform init
terraform apply

2. Deploy TiDB cluster and monitor

sed "s/CLUSTER_NAME/${cluster_name}/g" manifests/db.yaml.example > db.yaml
sed "s/CLUSTER_NAME/${cluster_name}/g" manifests/db-monitor.yaml.example > db-monitor.yaml
kubectl --kubeconfig credentials/kubeconfig_${eks_name} create -f db.yaml
kubectl --kubeconfig credentials/kubeconfig_${eks_name} create -f db-monitor.yaml

3. Access the database

ssh -i credentials/${eks_name}.pem centos@${bastion_ip}
mysql -h ${tidb_lb} -P 4000 -u root

Deploy TiDB on Google Cloud GKE

See Full Doc >

TiDB can be easily deployed to Google Cloud GKE using TiDB Operator and included Terraform scripts to manage GKE infrastructure. These commands will create a basic GKE cluster, install TiDB Operator, and deploy a basic TiDB cluster. Consult the TiDB Operator documentation for more information about how to customize your deployment.

1. Deploy GKE, TiDB Operator, and TiDB cluster node pool

git clone --depth=1 https://github.com/pingcap/tidb-operator && cd tidb-operator/deploy/gcp
cat small.tfvars >> terraform.tfvars
terraform init
terraform apply

2. Deploy TiDB cluster and monitor

sed "s/CLUSTER_NAME/tidb-cluster/g" manifests/db.yaml.example > db.yaml
sed "s/CLUSTER_NAME/tidb-cluster/g" manifests/db-monitor.yaml.example > db-monitor.yaml
kubectl --kubeconfig credentials/kubeconfig_${gke_name} create -f db.yaml
kubectl --kubeconfig credentials/kubeconfig_${gke_name} create -f db-monitor.yaml

3. Access the database

gcloud compute ssh ${gke_cluster_name}-bastion --zone ${zone}
mysql -h ${tidb_lb} -P 4000 -u root
View on GitHub

TiDB Cloud

TiDB Cloud makes deploying, managing, and maintaining your TiDB clusters even simpler with a fully managed cloud instance that you control through an intuitive dashboard. You’ll be able to easily deploy on AWS, Google Cloud, Azure, or Alibaba Cloud to quickly build mission critical applications.

시작하기

TiDB Self-Managed

TiDB Self-Managed is the recommended option to run TiDB on your own infrastructure with complete flexibility, which gives you 24/7 technical support from the PingCAP engineers who created TiDB.

Try TiDB Self-Managed
영어
일본어
제품
제품 개요 TiDB Cloud TiDB Self-Managed 가격
영어
일본어
생태계
통합 TiKV mem9 drive9 OSS Insight
자원
블로그 아티클 이벤트 및 웨비나 TiDB 스케일 문서 개발자 가이드 자주 묻는 질문 지원(Support)
회사
회사 소개 뉴스 채용 문의하기 파트너 트러스트 허브 보안 릴리스 지원 브랜드 가이드라인
이메일을 입력하세요

정기적인 업데이트를 받으려면 가입하세요.
새로운 기능 출시 소식을 이메일로 받아보세요.

© 2026 PingCAP. 모든 권리 보유.
개인정보 보호정책 합법적인