{"id":1014,"date":"2020-03-18T00:00:00","date_gmt":"2020-03-18T00:00:00","guid":{"rendered":"https:\/\/en.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/"},"modified":"2025-03-04T06:06:36","modified_gmt":"2025-03-04T14:06:36","slug":"run-first-chaos-experiment-in-ten-minutes","status":"publish","type":"post","link":"https:\/\/www.pingcap.com\/ko\/blog\/run-first-chaos-experiment-in-ten-minutes\/","title":{"rendered":"Run Your First Chaos Experiment in 10 Minutes"},"content":{"rendered":"<p>Chaos Engineering is a way to test a production software system&#8217;s robustness by simulating unusual or disruptive conditions. For many people, however, the transition from learning Chaos Engineering to practicing it on their own systems is daunting. It sounds like one of those big ideas that require a fully-equipped team to plan ahead. Well, it doesn&#8217;t have to be. To get started with chaos experimenting, you may be just one suitable platform away.<\/p>\n<p><a href=\"https:\/\/github.com\/chaos-mesh\">Chaos Mesh<\/a> is an <strong>easy-to-use<\/strong>, open-source, cloud-native Chaos Engineering platform that orchestrates chaos in Kubernetes environments. This 10-minute tutorial will help you quickly get started with Chaos Engineering and run your first chaos experiment with Chaos Mesh.<\/p>\n<p>For more information about Chaos Mesh, refer to our <a href=\"https:\/\/www.pingcap.com\/ko\/blog\/chaos-mesh-your-chaos-engineering-solution-for-system-resiliency-on-kubernetes\/\">previous article<\/a> or the <a href=\"https:\/\/github.com\/chaos-mesh\">chaos-mesh project<\/a> on GitHub.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"A_preview_of_our_little_experiment\"><\/span>A preview of our little experiment<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Chaos experiments are similar to experiments we do in a science class. It&#8217;s perfectly fine to stimulate turbulent situations in a controlled environment. In our case here, we will be simulating network chaos on a small web application called <a href=\"https:\/\/github.com\/chaos-mesh\/web-show\">web-show<\/a>. To visualize the chaos effect, web-show records the latency from its pod to the kube-controller pod (under the namespace of <code>kube-system<\/code>) every 10 seconds.<\/p>\n<p>The following clip shows the process of installing Chaos Mesh, deploying web-show, and creating the chaos experiment within a few commands:<\/p>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full\" src=\"https:\/\/download.pingcap.com\/images\/blog\/whole-process-of-chaos-experiment.gif\" alt=\"whole-process-of-chaos-experiment\" width=\"800\" height=\"450\" \/>\n<div class=\"caption-center\">The whole process of the chaos experiment<\/div>\n<p>Now it&#8217;s your turn! It&#8217;s time to get your hands dirty.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Lets_get_started\"><\/span>Let&#8217;s get started!<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>For our simple experiment, we use Kubernetes in the Docker (<a href=\"https:\/\/kind.sigs.k8s.io\/\">Kind<\/a>) for Kubernetes development. You can feel free to use <a href=\"https:\/\/minikube.sigs.k8s.io\/\">Minikube<\/a> or any existing Kubernetes clusters to follow along.<\/p>\n<h3>Prepare the environment<\/h3>\n<p>Before moving forward, make sure you have <a href=\"https:\/\/git-scm.com\/\">Git<\/a> \uadf8\ub9ac\uace0 <a href=\"https:\/\/www.docker.com\/\">Docker<\/a> installed on your local computer, with Docker up and running. For macOS, it&#8217;s recommended to allocate at least 6 CPU cores to Docker. For details, see <a href=\"https:\/\/docs.docker.com\/docker-for-mac\/#advanced\">Docker configuration for Mac<\/a>.<\/p>\n<ol>\n<li>Get Chaos Mesh:\n<pre><code class=\"language-bash\">git clone https:\/\/github.com\/chaos-mesh\/chaos-mesh.git\ncd chaos-mesh\/\n<\/code><\/pre>\n<\/li>\n<li>Install Chaos Mesh with the <code>install.sh<\/code> script:\n<pre><code class=\"language-bash\">.\/install.sh --local kind\n<\/code><\/pre>\n<p><code>install.sh<\/code> is an automated shell script that checks your environment, installs Kind, launches Kubernetes clusters locally, and deploys Chaos Mesh. To see the detailed description of <code>install.sh<\/code>, you can include the <code>--help<\/code> option.<\/p>\n<blockquote><p><strong>Note:<\/strong><\/p>\n<p>If your local computer cannot pull images from <code>docker.io<\/code> \ub610\ub294 <code>gcr.io<\/code>, use the local gcr.io mirror and execute <code>.\/install.sh --local kind --docker-mirror<\/code> instead.<\/p><\/blockquote>\n<\/li>\n<li>Set the system environment variable:\n<pre><code class=\"language-bash\">source ~\/.bash_profile\n<\/code><\/pre>\n<\/li>\n<\/ol>\n<blockquote><p><strong>Note:<\/strong><\/p>\n<ul>\n<li>Depending on your network, these steps might take a few minutes.<\/li>\n<li>If you see an error message like this:\n<pre><code class=\"language-bash\">ERROR: failed to create cluster: failed to generate kubeadm config content: failed to get kubernetes version from node: failed to get file: command \"docker exec --privileged kind-control-plane cat \/kind\/version\" failed with error: exit status 1\n<\/code><\/pre>\n<p>increase the available resources for Docker on your local computer and execute the following command:<\/p>\n<pre><code class=\"language-bash\">.\/install.sh --local kind --force-local-kube\n<\/code><\/pre>\n<\/li>\n<\/ul>\n<\/blockquote>\n<p>When the process completes you will see a message indicating Chaos Mesh is successfully installed.<\/p>\n<h3>Deploy the application<\/h3>\n<p>The next step is to deploy the application for testing. In our case here, we choose web-show because it allows us to directly observe the effect of network chaos. You can also deploy your own application for testing.<\/p>\n<ol>\n<li>Deploy web-show with the <code>deploy.sh<\/code> script:\n<pre><code class=\"language-bash\"># Make sure you are in the Chaos Mesh directory\ncd examples\/web-show &amp;&amp;\n.\/deploy.sh\n<\/code><\/pre>\n<blockquote><p><strong>Note:<\/strong><\/p>\n<p>If your local computer cannot pull images from <code>docker.io<\/code>, use the <code>local gcr.io<\/code> mirror and execute <code>.\/deploy.sh --docker-mirror<\/code> instead.<\/p><\/blockquote>\n<\/li>\n<li>Access the web-show application. From your web browser, go to <code>http:\/\/localhost:8081<\/code>.<\/li>\n<\/ol>\n<h3>Create the chaos experiment<\/h3>\n<p>Now that everything is ready, it&#8217;s time to run your chaos experiment!<\/p>\n<p>Chaos Mesh uses <a href=\"https:\/\/kubernetes.io\/docs\/tasks\/access-kubernetes-api\/custom-resources\/custom-resource-definitions\/\">CustomResourceDefinitions<\/a> (CRD) to define chaos experiments. CRD objects are designed separately based on different experiment scenarios, which greatly simplifies the definition of CRD objects. Currently, CRD objects that have been implemented in Chaos Mesh include PodChaos, NetworkChaos, IOChaos, TimeChaos, and KernelChaos. Later, we&#8217;ll support more fault injection types.<\/p>\n<p>In this experiment, we are using <a href=\"https:\/\/github.com\/chaos-mesh\/chaos-mesh\/blob\/master\/examples\/web-show\/network-delay.yaml\">NetworkChaos<\/a> for the chaos experiment. The NetworkChaos configuration file, written in YAML, is shown below:<\/p>\n<pre><code>apiVersion: pingcap.com\/v1alpha1\nkind: NetworkChaos\nmetadata:\n  name: network-delay-example\nspec:\n  action: delay\n  mode: one\n  selector:\n    namespaces:\n      - default\n    labelSelectors:\n      \"app\": \"web-show\"\n  delay:\n    latency: \"10ms\"\n    correlation: \"100\"\n    jitter: \"0ms\"\n  duration: \"30s\"\n  scheduler:\n    cron: \"@every 60s\"\n<\/code><\/pre>\n<p>For detailed descriptions of NetworkChaos actions, see <a href=\"https:\/\/chaos-mesh.org\/docs\/simulate-network-chaos-on-kubernetes\/\">Chaos Mesh wiki<\/a>. Here, we just rephrase the configuration as:<\/p>\n<ul>\n<li>target: <code>web-show<\/code><\/li>\n<li>mission: inject a <code>10ms<\/code> network delay every <code>60s<\/code><\/li>\n<li>attack duration: <code>30s<\/code> each time<\/li>\n<\/ul>\n<p>To start NetworkChaos, do the following:<\/p>\n<ol>\n<li>Run <code>network-delay.yaml<\/code>:\n<pre><code class=\"language-bash\"># Make sure you are in the chaos-mesh\/examples\/web-show directory\nkubectl apply -f network-delay.yaml\n<\/code><\/pre>\n<\/li>\n<li>Access the web-show application. In your web browser, go to <code>http:\/\/localhost:8081<\/code>.\n<p>From the line graph, you can tell that there is a 10 ms network delay every 60 seconds.<\/li>\n<\/ol>\n<img loading=\"lazy\" decoding=\"async\" width=\"1600\" height=\"780\" class=\"wp-image-1015\" src=\"https:\/\/en.pingcap.com\/wp-content\/uploads\/2020\/03\/using-chaos-mesh-to-insert-delays-in-web-show.png\" alt=\"Using Chaos Mesh to insert delays in web-show\" srcset=\"https:\/\/static.pingcap.com\/files\/2020\/03\/using-chaos-mesh-to-insert-delays-in-web-show.png 1600w, https:\/\/static.pingcap.com\/files\/2020\/03\/using-chaos-mesh-to-insert-delays-in-web-show-300x146.png 300w, https:\/\/static.pingcap.com\/files\/2020\/03\/using-chaos-mesh-to-insert-delays-in-web-show-1024x499.png 1024w, https:\/\/static.pingcap.com\/files\/2020\/03\/using-chaos-mesh-to-insert-delays-in-web-show-768x374.png 768w, https:\/\/static.pingcap.com\/files\/2020\/03\/using-chaos-mesh-to-insert-delays-in-web-show-1536x749.png 1536w, https:\/\/static.pingcap.com\/files\/2020\/03\/using-chaos-mesh-to-insert-delays-in-web-show-1440x702.png 1440w\" sizes=\"auto, (max-width: 1600px) 100vw, 1600px\" \/>\n<div class=\"caption-center\">Using Chaos Mesh to insert delays in web-show<\/div>\n<p>Congratulations! You just stirred up a little bit of chaos. If you are intrigued and want to try out more chaos experiments with Chaos Mesh, check out <a href=\"https:\/\/github.com\/chaos-mesh\/chaos-mesh\/tree\/master\/examples\/web-show\">examples\/web-show<\/a>.<\/p>\n<h3>Delete the chaos experiment<\/h3>\n<p>Once you&#8217;re finished testing, terminate the chaos experiment.<\/p>\n<ol>\n<li>Delete <code>network-delay.yaml<\/code>:\n<pre><code class=\"language-bash\"># Make sure you are in the chaos-mesh\/examples\/web-show directory\nkubectl delete -f network-delay.yaml\n<\/code><\/pre>\n<\/li>\n<li>Access the web-show application. From your web browser, go to <code>http:\/\/localhost:8081<\/code>.<\/li>\n<\/ol>\n<p>From the line graph, you can see the network latency level is back to normal.<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1600\" height=\"794\" class=\"wp-image-1016\" src=\"https:\/\/en.pingcap.com\/wp-content\/uploads\/2020\/03\/network-latency-level-is-back-to-normal.png\" alt=\"Network latency level is back to normal\" srcset=\"https:\/\/static.pingcap.com\/files\/2020\/03\/network-latency-level-is-back-to-normal.png 1600w, https:\/\/static.pingcap.com\/files\/2020\/03\/network-latency-level-is-back-to-normal-300x149.png 300w, https:\/\/static.pingcap.com\/files\/2020\/03\/network-latency-level-is-back-to-normal-1024x508.png 1024w, https:\/\/static.pingcap.com\/files\/2020\/03\/network-latency-level-is-back-to-normal-768x381.png 768w, https:\/\/static.pingcap.com\/files\/2020\/03\/network-latency-level-is-back-to-normal-1536x762.png 1536w, https:\/\/static.pingcap.com\/files\/2020\/03\/network-latency-level-is-back-to-normal-1440x715.png 1440w\" sizes=\"auto, (max-width: 1600px) 100vw, 1600px\" \/>\n<div class=\"caption-center\">Network latency level is back to normal<\/div>\n<h3>Delete Kubernetes clusters<\/h3>\n<p>After you&#8217;re done with the chaos experiment, execute the following command to delete the Kubernetes clusters:<\/p>\n<pre><code class=\"language-bash\">kind delete cluster --name=kind\n<\/code><\/pre>\n<blockquote><p><strong>Note:<\/strong><\/p>\n<p>If you encounter the <code>kind: command not found<\/code> error, execute <code>source ~\/.bash_profile<\/code> command first and then delete the Kubernetes clusters.<\/p><\/blockquote>\n<h2><span class=\"ez-toc-section\" id=\"Cool_Whats_next\"><\/span>Cool! What&#8217;s next?<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Congratulations on your first successful journey into Chaos Engineering. How does it feel? Chaos Engineering is easy, right? But perhaps Chaos Mesh is not that easy-to-use. Command-line operation is inconvenient, writing YAML files manually is a bit tedious, or checking the experiment results is somewhat clumsy? Don&#8217;t worry, Chaos Dashboard is on its way! Running chaos experiments on the web sure does sound exciting! If you&#8217;d like to help us build testing standards for cloud platforms or make Chaos Mesh better, we&#8217;d love to hear from you!<\/p>\n<p>If you find a bug or think something is missing, feel free to file an issue, open a pull request (PR), or join us on the #sig-chaos-mesh channel in the <a href=\"https:\/\/slack.tidb.io\/invite?team=tidb-community&amp;channel=everyone&amp;ref=pingcap-blog\">TiDB Community<\/a> slack workspace.<\/p>\n<p>GitHub: <a href=\"https:\/\/github.com\/chaos-mesh\">https:\/\/github.com\/chaos-mesh<\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>In this 10-minute tutorial, we will help you to quickly get started with Chaos Engineering and run your first chaos experiment with Chaos Mesh.<\/p>","protected":false},"author":29,"featured_media":1018,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ub_ctt_via":"","footnotes":""},"categories":[13],"tags":[21,29],"class_list":["post-1014","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-product","tag-chaos-engineering","tag-tutorial"],"acf":[],"featured_image_src":"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg","author_info":{"display_name":"Cwen Yin","author_link":"https:\/\/www.pingcap.com\/ko\/blog\/author\/cwen-yin\/"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Run Your First Chaos Experiment in 10 Minutes | TiDB<\/title>\n<meta name=\"description\" content=\"Learn about the benefits of TiDB and the TiDB Cloud solutions from PingCAP. Read our latest post &quot;Run Your First Chaos Experiment in 10 Minutes&quot; here.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.pingcap.com\/ko\/blog\/run-first-chaos-experiment-in-ten-minutes\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Run Your First Chaos Experiment in 10 Minutes | TiDB\" \/>\n<meta property=\"og:description\" content=\"Learn about the benefits of TiDB and the TiDB Cloud solutions from PingCAP. Read our latest post &quot;Run Your First Chaos Experiment in 10 Minutes&quot; here.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pingcap.com\/ko\/blog\/run-first-chaos-experiment-in-ten-minutes\/\" \/>\n<meta property=\"og:site_name\" content=\"TiDB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/pingcap2015\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-18T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-04T14:06:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"333\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Cwen Yin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@PingCAP\" \/>\n<meta name=\"twitter:site\" content=\"@PingCAP\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Cwen Yin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/\"},\"author\":{\"name\":\"Cwen Yin\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/person\/70180f9db47fddbd4c46f25a40a3f071\"},\"headline\":\"Run Your First Chaos Experiment in 10 Minutes\",\"datePublished\":\"2020-03-18T00:00:00+00:00\",\"dateModified\":\"2025-03-04T14:06:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/\"},\"wordCount\":908,\"publisher\":{\"@id\":\"https:\/\/www.pingcap.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg\",\"keywords\":[\"Chaos Engineering\",\"Tutorial\"],\"articleSection\":[\"Product\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/\",\"url\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/\",\"name\":\"Run Your First Chaos Experiment in 10 Minutes | TiDB\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg\",\"datePublished\":\"2020-03-18T00:00:00+00:00\",\"dateModified\":\"2025-03-04T14:06:36+00:00\",\"description\":\"Learn about the benefits of TiDB and the TiDB Cloud solutions from PingCAP. Read our latest post \\\"Run Your First Chaos Experiment in 10 Minutes\\\" here.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#primaryimage\",\"url\":\"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg\",\"width\":1000,\"height\":333},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.pingcap.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Run Your First Chaos Experiment in 10 Minutes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.pingcap.com\/#website\",\"url\":\"https:\/\/www.pingcap.com\/\",\"name\":\"TiDB\",\"description\":\"TiDB | SQL at Scale\",\"publisher\":{\"@id\":\"https:\/\/www.pingcap.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.pingcap.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.pingcap.com\/#organization\",\"name\":\"PingCAP\",\"url\":\"https:\/\/www.pingcap.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png\",\"width\":811,\"height\":232,\"caption\":\"PingCAP\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/pingcap2015\",\"https:\/\/x.com\/PingCAP\",\"https:\/\/linkedin.com\/company\/pingcap\",\"https:\/\/youtube.com\/channel\/UCuq4puT32DzHKT5rU1IZpIA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/person\/70180f9db47fddbd4c46f25a40a3f071\",\"name\":\"Cwen Yin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/static.pingcap.com\/files\/2022\/10\/17234942\/avatar.jpg\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2022\/10\/17234942\/avatar.jpg\",\"caption\":\"Cwen Yin\"},\"url\":\"https:\/\/www.pingcap.com\/ko\/blog\/author\/cwen-yin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Run Your First Chaos Experiment in 10 Minutes | TiDB","description":"Learn about the benefits of TiDB and the TiDB Cloud solutions from PingCAP. Read our latest post \"Run Your First Chaos Experiment in 10 Minutes\" here.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.pingcap.com\/ko\/blog\/run-first-chaos-experiment-in-ten-minutes\/","og_locale":"ko_KR","og_type":"article","og_title":"Run Your First Chaos Experiment in 10 Minutes | TiDB","og_description":"Learn about the benefits of TiDB and the TiDB Cloud solutions from PingCAP. Read our latest post \"Run Your First Chaos Experiment in 10 Minutes\" here.","og_url":"https:\/\/www.pingcap.com\/ko\/blog\/run-first-chaos-experiment-in-ten-minutes\/","og_site_name":"TiDB","article_publisher":"https:\/\/facebook.com\/pingcap2015","article_published_time":"2020-03-18T00:00:00+00:00","article_modified_time":"2025-03-04T14:06:36+00:00","og_image":[{"width":1000,"height":333,"url":"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg","type":"image\/jpeg"}],"author":"Cwen Yin","twitter_card":"summary_large_image","twitter_creator":"@PingCAP","twitter_site":"@PingCAP","twitter_misc":{"Written by":"Cwen Yin","Est. reading time":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#article","isPartOf":{"@id":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/"},"author":{"name":"Cwen Yin","@id":"https:\/\/www.pingcap.com\/#\/schema\/person\/70180f9db47fddbd4c46f25a40a3f071"},"headline":"Run Your First Chaos Experiment in 10 Minutes","datePublished":"2020-03-18T00:00:00+00:00","dateModified":"2025-03-04T14:06:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/"},"wordCount":908,"publisher":{"@id":"https:\/\/www.pingcap.com\/#organization"},"image":{"@id":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#primaryimage"},"thumbnailUrl":"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg","keywords":["Chaos Engineering","Tutorial"],"articleSection":["Product"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/","url":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/","name":"Run Your First Chaos Experiment in 10 Minutes | TiDB","isPartOf":{"@id":"https:\/\/www.pingcap.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#primaryimage"},"image":{"@id":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#primaryimage"},"thumbnailUrl":"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg","datePublished":"2020-03-18T00:00:00+00:00","dateModified":"2025-03-04T14:06:36+00:00","description":"Learn about the benefits of TiDB and the TiDB Cloud solutions from PingCAP. Read our latest post \"Run Your First Chaos Experiment in 10 Minutes\" here.","breadcrumb":{"@id":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#primaryimage","url":"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg","contentUrl":"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg","width":1000,"height":333},{"@type":"BreadcrumbList","@id":"https:\/\/www.pingcap.com\/blog\/run-first-chaos-experiment-in-ten-minutes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pingcap.com\/"},{"@type":"ListItem","position":2,"name":"Run Your First Chaos Experiment in 10 Minutes"}]},{"@type":"WebSite","@id":"https:\/\/www.pingcap.com\/#website","url":"https:\/\/www.pingcap.com\/","name":"\ud2f0DB","description":"TiDB | SQL at Scale","publisher":{"@id":"https:\/\/www.pingcap.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pingcap.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/www.pingcap.com\/#organization","name":"PingCAP","url":"https:\/\/www.pingcap.com\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/","url":"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png","contentUrl":"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png","width":811,"height":232,"caption":"PingCAP"},"image":{"@id":"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/pingcap2015","https:\/\/x.com\/PingCAP","https:\/\/linkedin.com\/company\/pingcap","https:\/\/youtube.com\/channel\/UCuq4puT32DzHKT5rU1IZpIA"]},{"@type":"Person","@id":"https:\/\/www.pingcap.com\/#\/schema\/person\/70180f9db47fddbd4c46f25a40a3f071","name":"Cwen Yin","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/#\/schema\/person\/image\/","url":"https:\/\/static.pingcap.com\/files\/2022\/10\/17234942\/avatar.jpg","contentUrl":"https:\/\/static.pingcap.com\/files\/2022\/10\/17234942\/avatar.jpg","caption":"Cwen Yin"},"url":"https:\/\/www.pingcap.com\/ko\/blog\/author\/cwen-yin\/"}]}},"grav_blocks":false,"card_markup":"<a class=\"card-resource bg-white\" href=\"https:\/\/www.pingcap.com\/ko\/blog\/run-first-chaos-experiment-in-ten-minutes\/\"><div class=\"card-resource__image-container\"><img class=\"card-resource__image\" alt=\"run-first-chaos-experiment-in-ten-minutes.jpg\" src=\"https:\/\/static.pingcap.com\/files\/2020\/03\/run-first-chaos-experiment-in-ten-minutes.jpg\" loading=\"lazy\" width=1000 height=333 \/><\/div><div class=\"card-resource__content-container\"><div class=\"card-resource__content-head\"><div class=\"card-resource__category\">Product<\/div><\/div><h5 class=\"card-resource__title\">Run Your First Chaos Experiment in 10 Minutes<\/h5><\/div><\/a>","_links":{"self":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/1014","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/users\/29"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/comments?post=1014"}],"version-history":[{"count":2,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/1014\/revisions"}],"predecessor-version":[{"id":25472,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/1014\/revisions\/25472"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media\/1018"}],"wp:attachment":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media?parent=1014"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/categories?post=1014"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/tags?post=1014"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}