{"id":1532,"date":"2018-08-10T15:53:02","date_gmt":"2018-08-10T15:53:02","guid":{"rendered":"http:\/\/dbtut.com\/?p=1532"},"modified":"2018-11-09T22:37:40","modified_gmt":"2018-11-09T22:37:40","slug":"concurrent-mysql-client","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/","title":{"rendered":"Concurrent MySQL client"},"content":{"rendered":"<p><strong>CCQL:<\/strong><\/p>\n<p><span style=\"font-family: 'times new roman', times, serif;\">CCQL is a tool that allow user to connect multiple mysql server node Concurrently at the same time. It comes into picture when a user want to run a same operation on multiple server and it operational time.<\/span><\/p>\n<p><strong>How It works?<\/strong><\/p>\n<p>It connects to multiple MySQL servers at the same time with the given options &amp; credentials or in other way user and password should be same to runs given query. This saves operational time and gives better productivity.<\/p>\n<p>Download ccql binary from the following weblink:<br \/>\n<a href=\"https:\/\/github.com\/github\/ccql\/releases\">https:\/\/github.com\/github\/ccql\/releases<\/a><\/p>\n<p>Below is the Quick option which can be used while doing using CCQL<\/p>\n<div><strong>Usage of ccql:<\/strong><\/div>\n<div>\u00a0 -C string<\/div>\n<div>\u00a0 \u00a0 \u00a0 \u00a0 Credentials file, expecting [client] scope, with &#8216;user&#8217;, &#8216;password&#8217; fields. Overrides -u and -p<\/div>\n<div>\u00a0 -H string<\/div>\n<div>\u00a0 \u00a0 Hosts file, hostname[:port] comma or space or newline delimited format. If not given, hosts read from stdin<\/div>\n<div>\u00a0 -Q string<\/div>\n<div>\u00a0 \u00a0 Query\/queries input file<\/div>\n<div>\u00a0 -d string<\/div>\n<div>\u00a0 \u00a0 \u00a0 Default schema to use (default &#8220;information_schema&#8221;)<\/div>\n<div>\u00a0 -h string<\/div>\n<div>\u00a0 \u00a0 Comma or space delimited list of hosts in hostname[:port] format. If not given, hosts read from stdin<\/div>\n<div>\u00a0 -m uint<\/div>\n<div>\u00a0 \u00a0 Max concurrent connections (default 32)<\/div>\n<div>\u00a0 -p string<\/div>\n<div>\u00a0 \u00a0 MySQL password<\/div>\n<div>\u00a0 -q string<\/div>\n<div>\u00a0 \u00a0 Query\/queries to execute<\/div>\n<div>\u00a0 -s string<\/div>\n<div>\u00a0 \u00a0 \u00a0 List of databases to query from; overrides -d, prints schema name to output<\/div>\n<div>\u00a0 -t float<\/div>\n<div>\u00a0 \u00a0 Connect timeout seconds<\/div>\n<div>\u00a0 -u string<\/div>\n<div>\u00a0 \u00a0 MySQL username (default OS user)<\/div>\n<div><\/div>\n<div><strong><em>Lets see few example how it can be used.<\/em><\/strong><\/div>\n<div><\/div>\n<ol>\n<li><em>If a DBA want to check the version of all the servers whether they are exactly same or not.<\/em><\/li>\n<\/ol>\n<blockquote>\n<pre class=\"lang:default decode:true\">ccql -C \/anylocaltion\/.mypass.cnf -h \"host001,host003,host005\" -q \"SELECT VERSION();\"<\/pre>\n<\/blockquote>\n<blockquote><p>the above command<\/p><\/blockquote>\n<p>-C : we need to pass the credential file which contains login id password of the user which is common among all node<\/p>\n<pre class=\"lang:default decode:true \">[client]\r\n\r\nuser=\"userName\"\r\n\r\npassword=\"password\"<\/pre>\n<p>&nbsp;<\/p>\n<p>-h : You can either pass the hostname or pass the hostname file which It contains the list of host name that you want to connect.<\/p>\n<p>-q : the Query which you are going to pass to the servers.<\/p>\n<p>2. Even one can use Bash\/shell script predefined function with that command to filter the output<\/p>\n<p>&nbsp;<\/p>\n<p><strong>e.g<\/strong><\/p>\n<pre class=\"lang:default decode:true \">ccql -C \/anylocaltion\/.mypass.cnf -h hostname.txt -q \"SELECT \u00a0SLAVE STATUS\" | awk \u00a0' { print $1 } '<\/pre>\n<p>&nbsp;<\/p>\n<p>The given above are the basic example for the understanding there are lot of things a DBA can do using this tool and save operational time.<\/p>\n<p>More details are available on the given below Link.<\/p>\n<p>https:\/\/github.com\/github\/ccql<\/p>\n\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_1532\" class=\"pvc_stats all  \" data-element-id=\"1532\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>CCQL: CCQL is a tool that allow user to connect multiple mysql server node Concurrently at the same time. It comes into picture when a user want to run a same operation on multiple server and it operational time. How It works? It connects to multiple MySQL servers at the same time with the given &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_1532\" class=\"pvc_stats all  \" data-element-id=\"1532\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":76,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[7],"tags":[],"class_list":["post-1532","post","type-post","status-publish","format-standard","","category-mysql"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Concurrent MySQL client - Database Tutorials<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Concurrent MySQL client - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"CCQL: CCQL is a tool that allow user to connect multiple mysql server node Concurrently at the same time. It comes into picture when a user want to run a same operation on multiple server and it operational time. How It works? It connects to multiple MySQL servers at the same time with the given &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-10T15:53:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-11-09T22:37:40+00:00\" \/>\n<meta name=\"author\" content=\"Bharat Sahu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bharat Sahu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/\"},\"author\":{\"name\":\"Bharat Sahu\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/56c04c8c6aff9db578991dc48b16d1b0\"},\"headline\":\"Concurrent MySQL client\",\"datePublished\":\"2018-08-10T15:53:02+00:00\",\"dateModified\":\"2018-11-09T22:37:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/\"},\"wordCount\":379,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"articleSection\":[\"MySQL-MariaDB\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/\",\"name\":\"Concurrent MySQL client - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"datePublished\":\"2018-08-10T15:53:02+00:00\",\"dateModified\":\"2018-11-09T22:37:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Concurrent MySQL client\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/56c04c8c6aff9db578991dc48b16d1b0\",\"name\":\"Bharat Sahu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/de975dcfe61a1417ea16b3b843016df5aa7b325507b5997edb4fd9834d733015?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/de975dcfe61a1417ea16b3b843016df5aa7b325507b5997edb4fd9834d733015?s=96&d=mm&r=g\",\"caption\":\"Bharat Sahu\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/bharatsahu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Concurrent MySQL client - Database Tutorials","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:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/","og_locale":"en_US","og_type":"article","og_title":"Concurrent MySQL client - Database Tutorials","og_description":"CCQL: CCQL is a tool that allow user to connect multiple mysql server node Concurrently at the same time. It comes into picture when a user want to run a same operation on multiple server and it operational time. How It works? It connects to multiple MySQL servers at the same time with the given &hellip;","og_url":"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/","og_site_name":"Database Tutorials","article_published_time":"2018-08-10T15:53:02+00:00","article_modified_time":"2018-11-09T22:37:40+00:00","author":"Bharat Sahu","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Bharat Sahu","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/"},"author":{"name":"Bharat Sahu","@id":"https:\/\/dbtut.com\/#\/schema\/person\/56c04c8c6aff9db578991dc48b16d1b0"},"headline":"Concurrent MySQL client","datePublished":"2018-08-10T15:53:02+00:00","dateModified":"2018-11-09T22:37:40+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/"},"wordCount":379,"commentCount":1,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"articleSection":["MySQL-MariaDB"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/","url":"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/","name":"Concurrent MySQL client - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"datePublished":"2018-08-10T15:53:02+00:00","dateModified":"2018-11-09T22:37:40+00:00","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/10\/concurrent-mysql-client\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Concurrent MySQL client"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/56c04c8c6aff9db578991dc48b16d1b0","name":"Bharat Sahu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/de975dcfe61a1417ea16b3b843016df5aa7b325507b5997edb4fd9834d733015?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/de975dcfe61a1417ea16b3b843016df5aa7b325507b5997edb4fd9834d733015?s=96&d=mm&r=g","caption":"Bharat Sahu"},"url":"https:\/\/dbtut.com\/index.php\/author\/bharatsahu\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/1532","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/76"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=1532"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/1532\/revisions"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=1532"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=1532"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=1532"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}