{"id":11471,"date":"2023-04-13T02:52:51","date_gmt":"2023-04-13T09:52:51","guid":{"rendered":"https:\/\/www.pingcap.com\/?p=11471"},"modified":"2024-06-06T21:56:44","modified_gmt":"2024-06-07T04:56:44","slug":"streamline-data-workflows-with-tidb-cloud-and-zapier","status":"publish","type":"post","link":"https:\/\/www.pingcap.com\/ko\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/","title":{"rendered":"Streamline Data Workflows with TiDB Cloud and Zapier"},"content":{"rendered":"<p>In today&#8217;s data-driven world, businesses must manage and process vast amounts of data from diverse sources. Integrating various systems has become critical and painful.&nbsp;<\/p>\n\n\n\n<p>In this blog, we\u2019ll introduce a new integration of <a href=\"https:\/\/www.pingcap.com\/ko\/tidb-cloud\/\">TiDB Cloud<\/a> and Zapier that lets businesses connect multiple data-intensive applications with streamlined workflows and receive informed business insights in real time.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"TiDB_Cloud_and_Zapier_integration_solves_business_problems\"><\/span>TiDB Cloud and Zapier integration solves business problems<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p><a href=\"https:\/\/zapier.com\/\">Zapier<\/a> is a powerful no-code platform that lets you connect data sources and automate workflows without any coding experience. TiDB Cloud is the fully-managed service of <a href=\"https:\/\/www.pingcap.com\/ko\/tidb\/\">\ud2f0DB<\/a>, an advanced, open-source, distributed SQL database that provides real-time data access with low latency and horizontal scalability. TiDB Cloud also has Hybrid Transactional and Analytical Processing (HTAP) capabilities, making it ideal for businesses with hybrid workloads.&nbsp;<\/p>\n\n\n\n<p>With these two powerful tools integrated, companies in different industries can automate repetitive and also gain real-time insights into business operations. The results? Better performance and higher efficiency.&nbsp;<\/p>\n\n\n\n<p>This integration can solve a lot of real world business problems. For example, in the retail industry, this integration helps optimize retail business operations, allowing retailers to focus on business growth. In the healthcare industry, clinics and hospitals can improve their patient management and billing processes, resulting in more revenue and improved patient satisfaction.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"TiDB_Cloud_and_Zapier_integration_in_action\"><\/span>TiDB Cloud and Zapier integration in action<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>We\u2019ll now examine how to use Zapier to connect Google Sheets with TiDB Cloud. We will also share how Chat2Query, the AI powered SQL generator in TiDB Cloud, can help you automatically generate SQL scripts to aggregate data from TiDB Cloud. Finally, we&#8217;ll explore how you can leverage analytics and business intelligence tools like Grafana to visualize and gain insights from your aggregated data. Let&#8217;s dive in!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<p>Before you begin, make sure you have the following accounts.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/zapier.com\/app\/login\">Zapier<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/tidbcloud.com\/free-trial\/\">TiDB Cloud.<\/a> After you create the account, create a free Serverless Tier cluster. For details, see<a href=\"https:\/\/docs.pingcap.com\/tidbcloud\/tidb-cloud-quickstart#step-1-create-a-tidb-cluster\"> TiDB Cloud Quick Start<\/a>.<\/li>\n\n\n\n<li><a href=\"https:\/\/grafana.com\/get\/\">Grafana<\/a><\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Set up TiDB Cloud<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Create API Keys<\/h4>\n\n\n\n<p>To create API Keys, do the following:&nbsp;<\/p>\n\n\n\n<p><figure class=\"wp-block-image\"><\/figure><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>On the TiDB Cloud page, click the <strong>Organization <\/strong>icon.&nbsp;<\/li>\n\n\n\n<li>On the scroll-down menu, select the <strong>Organization Settings option<\/strong>.&nbsp;<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"313\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13050346\/image-2-1024x313.png\" alt=\"\" class=\"wp-image-11499\" srcset=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13050346\/image-2-1024x313.png 1024w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050346\/image-2-300x92.png 300w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050346\/image-2-768x235.png 768w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050346\/image-2-1536x469.png 1536w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050346\/image-2-1440x440.png 1440w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050346\/image-2.png 1600w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><\/li>\n\n\n\n<li>Click <strong>Create API Key<\/strong> and enter a description, for example <strong>New Zapier Key<\/strong>.&nbsp;<\/li>\n\n\n\n<li>Click <strong>Done<\/strong>.&nbsp;<\/li>\n<\/ol>\n\n\n\n<p>TiDB Cloud automatically creates the public and private keys. Copy and save them for later use.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Create a table<\/h4>\n\n\n\n<p>Use the <a href=\"https:\/\/docs.pingcap.com\/tidbcloud\/explore-data-with-chat2query#access-chat2query\">Chat2Query editor<\/a> to execute a SQL script to create a `nces_avg_cost` table. The sample dataset will be stored in this table later.&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE TABLE test.nces_avg_cost\n\n(\n\n&nbsp;&nbsp;&nbsp;id bigint AUTO_RANDOM primary key,\n\n&nbsp;&nbsp;&nbsp;Year int,\n\n&nbsp;&nbsp;&nbsp;State varchar(25) NOT NULL,\n\n&nbsp;&nbsp;&nbsp;Type varchar(25) NOT NULL,\n\n&nbsp;&nbsp;&nbsp;Length varchar(10) NOT NULL,\n\n&nbsp;&nbsp;&nbsp;Expense varchar(50) NOT NULL,\n\n&nbsp;&nbsp;&nbsp;Amount&nbsp; double NOT NULL&nbsp;&nbsp;\n\n)<\/code><\/pre>\n\n\n\n<p>For this example, we\u2019ll use the National Center for Education Statistics (NCES) data as a sample dataset. This dataset contains college tuition fee data for different states in the US.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"323\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13050443\/image-3-1024x323.png\" alt=\"\" class=\"wp-image-11500\" srcset=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13050443\/image-3-1024x323.png 1024w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050443\/image-3-300x95.png 300w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050443\/image-3-768x242.png 768w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050443\/image-3-1536x485.png 1536w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050443\/image-3-1440x455.png 1440w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050443\/image-3.png 1600w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Set up Google Sheets<\/h3>\n\n\n\n<p>Next, sign into your Google Docs account and create a new spreadsheet with the columns as shown below. Alternatively, you can <a href=\"https:\/\/docs.google.com\/spreadsheets\/d\/1PcNP8v32tigD40U66tINwocFlP9zuHJ6WEWi3MwYBbk\/edit?usp=sharing\">copy this Google spreadsheet<\/a>. You can also add a row of data to the spreadsheet. This will help us when we test our Zap trigger later.&nbsp;<br><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"172\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13050454\/image-4-1024x172.png\" alt=\"\" class=\"wp-image-11501\" srcset=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13050454\/image-4-1024x172.png 1024w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050454\/image-4-300x50.png 300w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050454\/image-4-768x129.png 768w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050454\/image-4-1536x257.png 1536w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050454\/image-4-1440x241.png 1440w, https:\/\/static.pingcap.com\/files\/2023\/04\/13050454\/image-4.png 1600w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><strong>Note<\/strong>: The sheet contains only columns. The column names match the table columns that we created earlier.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Create a Zap: connecting Google Sheets with TiDB Cloud<\/h3>\n\n\n\n<p>You\u2019ve created a Google Sheet and a TiDB Cloud instance. Now, we&#8217;ll use Zapier to connect them. Zapier lets you automate workflows by creating &#8220;Zaps&#8221; that consist of triggers and actions. In this case, we\u2019ll create a Zap that triggers an action in TiDB Cloud whenever a new row is added to our Google Sheet. This will ensure that the TiDB Cloud database has the latest data from the Google Sheet, without requiring any manual effort.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Create a new Zap<\/h4>\n\n\n\n<p>To create a new Zap:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Log in to your Zapier account and navigate to the dashboard. (As an alternative, you can access this Integration by logging into your TiDB Cloud account and navigating to the <strong>\ud1b5\ud569<\/strong> page.)<\/li>\n\n\n\n<li>On the <strong>Make a Zap <\/strong>page<strong>,<\/strong> select <strong>Google Sheets<\/strong> to connect with <strong>TiDB Cloud<\/strong>.&nbsp;<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"401\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13052404\/image-5-1024x401.png\" alt=\"\" class=\"wp-image-11502\" srcset=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13052404\/image-5-1024x401.png 1024w, https:\/\/static.pingcap.com\/files\/2023\/04\/13052404\/image-5-300x118.png 300w, https:\/\/static.pingcap.com\/files\/2023\/04\/13052404\/image-5-768x301.png 768w, https:\/\/static.pingcap.com\/files\/2023\/04\/13052404\/image-5-1536x602.png 1536w, https:\/\/static.pingcap.com\/files\/2023\/04\/13052404\/image-5-1440x564.png 1440w, https:\/\/static.pingcap.com\/files\/2023\/04\/13052404\/image-5.png 1600w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><\/li>\n\n\n\n<li>Create the trigger and action. Select <strong>New Spreadsheet Row<\/strong> to <strong>Create Row<\/strong>. This tells Zapier to create a new row in the TiDB Cloud database whenever a new row is added to your Google Sheets.&nbsp;<\/li>\n\n\n\n<li>Click<strong> Try it<\/strong>.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">Configure the trigger<\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Click the<strong> Edit <\/strong>icon and name the Zap <strong>NCES Data Integration<\/strong>.&nbsp;<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13052450\/image-6-1024x455.png\" alt=\"\"><\/figure><\/li>\n\n\n\n<li>Configure the trigger. Leave <strong>Choose app &amp; event <\/strong>with their default values.&nbsp;<\/li>\n\n\n\n<li>Choose an account. Click <strong>Connect a new account. <\/strong>Specify the Google account that has your Google Sheets.<\/li>\n\n\n\n<li>Set up a trigger. Choose the <strong>Spreadsheet<\/strong> \uadf8\ub9ac\uace0 <strong>Worksheet <\/strong>that has column headers.<\/li>\n\n\n\n<li>Test the trigger. Select the row from the drop-down list and click <strong>Continue<\/strong>.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">Configure the action<\/h4>\n\n\n\n<p>After you configure the Zap, you can configure the action.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Leave <strong>Choose app &amp; event<\/strong> with their default values.<\/li>\n\n\n\n<li>Choose an account. Click<strong> Connect a new account<\/strong>.<\/li>\n\n\n\n<li>Enter the <strong>Public Key <\/strong>\uadf8\ub9ac\uace0<strong> Private Key<\/strong> information that you obtained from TiDB Cloud earlier and then click <strong>Yes, Continue<\/strong>.<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13052610\/image-7-1024x577.png\" alt=\"\"><\/figure><\/li>\n\n\n\n<li>In the <strong>Set up action <\/strong>section, enter<a href=\"https:\/\/docs.pingcap.com\/tidbcloud\/connect-via-standard-connection#serverless-tier\"> TiDB Cloud Connection information<\/a>.<figure class=\"wp-block-image\"><\/figure><\/li>\n\n\n\n<li>Map the Google Sheet columns with the columns from the`nces_avg_cost` table.&nbsp;<p><strong>Note<\/strong>: Leave the<strong> Id<\/strong> column blank. It\u2019s configured to be an auto-generated column in the table.<\/p><figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13053123\/image-10-1024x474.png\" alt=\"\" style=\"\"><\/figure><\/li>\n\n\n\n<li>Once the mapping is done, click <strong>Continue<\/strong>.<\/li>\n\n\n\n<li>Test it to ensure that it&#8217;s working properly. This will create a single row in TiDB Cloud.&nbsp;<\/li>\n\n\n\n<li>If everything looks good, click <strong>Publish Zap<\/strong>.<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13053216\/image-11.png\" alt=\"\"><\/figure><\/li>\n<\/ol>\n\n\n\n<p>With your Zap published and running, you can test it by adding new records to your Google Sheets. You can find free sample datasets on<a href=\"https:\/\/www.kaggle.com\/datasets\/kfoster150\/nces-avg-cost-of-undergraduate-college-by-state\"> Kaggle<\/a> or use our<a href=\"https:\/\/docs.google.com\/spreadsheets\/d\/1PcNP8v32tigD40U66tINwocFlP9zuHJ6WEWi3MwYBbk\/edit#gid=79800595\"> sample data sheet<\/a>.<\/p>\n\n\n\n<p>To explore and review the data generated by our TiDB Cloud Zap, we\u2019ll use datasets from 2020 and 2021 for five US states.<\/p>\n\n\n\n<p><strong>Note:<\/strong> Zapier\u2019s free tier only runs Zaps every 15 minutes, so you may need to wait up to 15 minutes for the new rows to be added to TiDB Cloud. If you are on a Professional or Team Plan, the updates will be triggered instantly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Exploring_and_reviewing_data\"><\/span>Exploring and reviewing data<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Now that we have successfully integrated Google Sheets with TiDB Cloud, and data is automatically updated in the database, it&#8217;s time to explore and review that data. We&#8217;ll use TiDB&#8217;s <a href=\"https:\/\/www.pingcap.com\/ko\/chat2query-an-innovative-ai-powered-sql-generator-for-faster-insights\/\">AI-powered Chat2Query feature<\/a> to generate a SQL query that aggregates and summarizes the data. We will be looking at the year-on-year tuition fees in each state for a 4-year program.&nbsp; Then we&#8217;ll use a popular visualization tool, Grafana, to create a dashboard to display that data so it\u2019s easy to understand and analyze.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Data exploration with Chat2Query<\/h3>\n\n\n\n<p>To access Chat2Query:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Navigate to the<a href=\"https:\/\/tidbcloud.com\/console\/clusters\"> <strong>TiDB Cloud <\/strong><strong>Clusters<\/strong><\/a> page and select the target cluster.&nbsp;<\/li>\n\n\n\n<li>Open the query editor. In the left navigation panel, click <strong>Chat2Query<\/strong>.&nbsp;<\/li>\n\n\n\n<li>Ask a question to generate a query. As an example, we can ask Chat2Query to generate a query that retrieves the tuition fees for each state for a four-year program.<img decoding=\"async\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13184533\/chat2query-zapier.gif\" alt=\"This image has an empty alt attribute; its file name is chat2query-zapier.gif\"><\/li>\n<\/ol>\n\n\n\n<p>After Chat2Query generates the query, you can modify it as needed to ensure that the output matches your visualization requirements.&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT&nbsp; Year, CONCAT(State, ' - ', Year) AS State, SUM(Amount) AS Tuition\n\nFROM test.nces_avg_cost\n\nWHERE Length like '%4%'\n\nGROUP BY&nbsp; Year,State\n\nORDER BY State, Year DESC<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Data visualization<\/h3>\n\n\n\n<p>After you use Chat2Query to generate the SQL query and tweak it to fit your needs, you can use Grafana (or other MySQL-compatible visualization tool) to visualize the data. To connect Grafana to your TiDB cluster, follow the steps in<a href=\"https:\/\/www.techrepublic.com\/article\/how-to-connect-grafana-to-a-remote-mysql-database\/#:~:text=Log%20into%20your%20Grafana%20instance,data%20connection%20(Figure%20A).\"> How to connect Grafana to a remote MySQL database<\/a>.<\/p>\n\n\n\n<p>Grafana lets you create charts and dashboards that help you better understand your data. In our case, we\u2019ll create a bar chart that shows the year-over-year tuition fees for four-year programs in the five states we selected. As you can see from the chart, most states had a significant decrease in tuition between 2020 and 2021. A few others remained relatively stable. With this visualization, we can quickly gain insights and make data-driven decisions that impact our educational choices.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"354\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13060225\/image-12-1024x354.png\" alt=\"\" class=\"wp-image-11511\" srcset=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13060225\/image-12-1024x354.png 1024w, https:\/\/static.pingcap.com\/files\/2023\/04\/13060225\/image-12-300x104.png 300w, https:\/\/static.pingcap.com\/files\/2023\/04\/13060225\/image-12-768x265.png 768w, https:\/\/static.pingcap.com\/files\/2023\/04\/13060225\/image-12.png 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Summary\"><\/span>Summary<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Integrating TiDB Cloud and Zapier offers a powerful solution for businesses to manage their data and streamline their workflows. This integration also allows businesses to gain valuable insights from their data, make more informed decisions, and improve overall efficiency.<\/p>\n\n\n\n<p>We hope you find this blog useful. If you\u2019re interested in this integration, you are welcome to sign in to (or sign up for) your <a href=\"https:\/\/tidbcloud.com\/free-trial\/\">TiDB Cloud<\/a> \uadf8\ub9ac\uace0 <a href=\"https:\/\/zapier.com\/\">Zapier<\/a> accounts and give them a try.&nbsp;If you want more deployment details for this integration, see <a href=\"https:\/\/docs.pingcap.com\/tidbcloud\/integrate-tidbcloud-with-zapier\">our documentation<\/a>. If you have any questions, feel free to contact us through <a href=\"https:\/\/twitter.com\/PingCAP\">Twitter<\/a>, <a href=\"https:\/\/www.linkedin.com\/company\/pingcap\/mycompany\/\">LinkedIn<\/a>, or our <a href=\"https:\/\/slack.tidb.io\/invite?team=tidb-community&amp;channel=everyone&amp;ref=pingcap\">Slack Channel<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Learn how to connect multiple data-intensive applications with streamlined workflows and receive informed business insights in real time using TiDB Cloud and Zapier.\u00a0<\/p>","protected":false},"author":216,"featured_media":11483,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ub_ctt_via":"","footnotes":""},"categories":[13],"tags":[11,31],"class_list":["post-11471","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-product","tag-real-time-analytics","tag-tidb-cloud"],"acf":[],"featured_image_src":"https:\/\/static.pingcap.com\/files\/2023\/04\/13024432\/20230413-174356.jpeg","author_info":{"display_name":"Arun Vijayraghavan","author_link":"https:\/\/www.pingcap.com\/ko\/blog\/author\/arun-vijayraghavan\/"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Streamline Data Workflows with TiDB Cloud and Zapier | TiDB<\/title>\n<meta name=\"description\" content=\"Learn how to connect multiple data-intensive applications and receive informed business insights in real time using TiDB Cloud and Zapier.\u00a0\" \/>\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\/streamline-data-workflows-with-tidb-cloud-and-zapier\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Streamline Data Workflows with TiDB Cloud and Zapier | TiDB\" \/>\n<meta property=\"og:description\" content=\"Learn how to connect multiple data-intensive applications and receive informed business insights in real time using TiDB Cloud and Zapier.\u00a0\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pingcap.com\/ko\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/\" \/>\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=\"2023-04-13T09:52:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-07T04:56:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13024659\/zapier-social.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Arun Vijayraghavan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13024659\/zapier-social.jpg\" \/>\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=\"Arun Vijayraghavan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/\"},\"author\":{\"name\":\"Arun Vijayraghavan\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/person\/8a9e54493a2a21018fd222e0a32b1ffd\"},\"headline\":\"Streamline Data Workflows with TiDB Cloud and Zapier\",\"datePublished\":\"2023-04-13T09:52:51+00:00\",\"dateModified\":\"2024-06-07T04:56:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/\"},\"wordCount\":1429,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.pingcap.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/static.pingcap.com\/files\/2023\/04\/13024432\/20230413-174356.jpeg\",\"keywords\":[\"Real-time analytics\",\"TiDB Cloud\"],\"articleSection\":[\"Product\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/\",\"url\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/\",\"name\":\"Streamline Data Workflows with TiDB Cloud and Zapier | TiDB\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/static.pingcap.com\/files\/2023\/04\/13024432\/20230413-174356.jpeg\",\"datePublished\":\"2023-04-13T09:52:51+00:00\",\"dateModified\":\"2024-06-07T04:56:44+00:00\",\"description\":\"Learn how to connect multiple data-intensive applications and receive informed business insights in real time using TiDB Cloud and Zapier.\u00a0\",\"breadcrumb\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#primaryimage\",\"url\":\"https:\/\/static.pingcap.com\/files\/2023\/04\/13024432\/20230413-174356.jpeg\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2023\/04\/13024432\/20230413-174356.jpeg\",\"width\":1600,\"height\":534},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.pingcap.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Streamline Data Workflows with TiDB Cloud and Zapier\"}]},{\"@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\/8a9e54493a2a21018fd222e0a32b1ffd\",\"name\":\"Arun Vijayraghavan\",\"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\":\"Arun Vijayraghavan\"},\"description\":\"TiDB Cloud Product Manager\",\"url\":\"https:\/\/www.pingcap.com\/ko\/blog\/author\/arun-vijayraghavan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Streamline Data Workflows with TiDB Cloud and Zapier | TiDB","description":"Learn how to connect multiple data-intensive applications and receive informed business insights in real time using TiDB Cloud and Zapier.\u00a0","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\/streamline-data-workflows-with-tidb-cloud-and-zapier\/","og_locale":"ko_KR","og_type":"article","og_title":"Streamline Data Workflows with TiDB Cloud and Zapier | TiDB","og_description":"Learn how to connect multiple data-intensive applications and receive informed business insights in real time using TiDB Cloud and Zapier.\u00a0","og_url":"https:\/\/www.pingcap.com\/ko\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/","og_site_name":"TiDB","article_publisher":"https:\/\/facebook.com\/pingcap2015","article_published_time":"2023-04-13T09:52:51+00:00","article_modified_time":"2024-06-07T04:56:44+00:00","og_image":[{"width":1600,"height":800,"url":"https:\/\/static.pingcap.com\/files\/2023\/04\/13024659\/zapier-social.jpg","type":"image\/jpeg"}],"author":"Arun Vijayraghavan","twitter_card":"summary_large_image","twitter_image":"https:\/\/static.pingcap.com\/files\/2023\/04\/13024659\/zapier-social.jpg","twitter_creator":"@PingCAP","twitter_site":"@PingCAP","twitter_misc":{"Written by":"Arun Vijayraghavan","Est. reading time":"8\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#article","isPartOf":{"@id":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/"},"author":{"name":"Arun Vijayraghavan","@id":"https:\/\/www.pingcap.com\/#\/schema\/person\/8a9e54493a2a21018fd222e0a32b1ffd"},"headline":"Streamline Data Workflows with TiDB Cloud and Zapier","datePublished":"2023-04-13T09:52:51+00:00","dateModified":"2024-06-07T04:56:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/"},"wordCount":1429,"commentCount":0,"publisher":{"@id":"https:\/\/www.pingcap.com\/#organization"},"image":{"@id":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#primaryimage"},"thumbnailUrl":"https:\/\/static.pingcap.com\/files\/2023\/04\/13024432\/20230413-174356.jpeg","keywords":["Real-time analytics","TiDB Cloud"],"articleSection":["Product"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/","url":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/","name":"Streamline Data Workflows with TiDB Cloud and Zapier | TiDB","isPartOf":{"@id":"https:\/\/www.pingcap.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#primaryimage"},"image":{"@id":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#primaryimage"},"thumbnailUrl":"https:\/\/static.pingcap.com\/files\/2023\/04\/13024432\/20230413-174356.jpeg","datePublished":"2023-04-13T09:52:51+00:00","dateModified":"2024-06-07T04:56:44+00:00","description":"Learn how to connect multiple data-intensive applications and receive informed business insights in real time using TiDB Cloud and Zapier.\u00a0","breadcrumb":{"@id":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#primaryimage","url":"https:\/\/static.pingcap.com\/files\/2023\/04\/13024432\/20230413-174356.jpeg","contentUrl":"https:\/\/static.pingcap.com\/files\/2023\/04\/13024432\/20230413-174356.jpeg","width":1600,"height":534},{"@type":"BreadcrumbList","@id":"https:\/\/www.pingcap.com\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pingcap.com\/"},{"@type":"ListItem","position":2,"name":"Streamline Data Workflows with TiDB Cloud and Zapier"}]},{"@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\/8a9e54493a2a21018fd222e0a32b1ffd","name":"Arun Vijayraghavan","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":"Arun Vijayraghavan"},"description":"TiDB Cloud Product Manager","url":"https:\/\/www.pingcap.com\/ko\/blog\/author\/arun-vijayraghavan\/"}]}},"grav_blocks":false,"card_markup":"<a class=\"card-resource bg-white\" href=\"https:\/\/www.pingcap.com\/ko\/blog\/streamline-data-workflows-with-tidb-cloud-and-zapier\/\"><div class=\"card-resource__image-container\"><img class=\"card-resource__image\" alt=\"20230413-174356\" src=\"https:\/\/static.pingcap.com\/files\/2023\/04\/13024432\/20230413-174356.jpeg\" loading=\"lazy\" width=1600 height=534 \/><\/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\">Streamline Data Workflows with TiDB Cloud and Zapier<\/h5><\/div><\/a>","_links":{"self":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/11471","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\/216"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/comments?post=11471"}],"version-history":[{"count":13,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/11471\/revisions"}],"predecessor-version":[{"id":17567,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/11471\/revisions\/17567"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media\/11483"}],"wp:attachment":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media?parent=11471"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/categories?post=11471"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/tags?post=11471"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}