{"id":8663,"date":"2026-09-17T06:51:17","date_gmt":"2026-09-17T06:51:17","guid":{"rendered":"https:\/\/prwatech.in\/blog\/?p=8663"},"modified":"2026-09-18T17:29:50","modified_gmt":"2026-09-18T17:29:50","slug":"executing-queries-of-multiple-gb-of-data-in-seconds","status":"publish","type":"post","link":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/","title":{"rendered":"BigQuery Speed: Querying Terabytes of Data in Seconds"},"content":{"rendered":"\r\n<h1>Analyzing Massive Datasets With BigQuery<\/h1>\r\n<p>BigQuery is built to scan enormous amounts of data quickly, and the clearest way to see that is to run a few queries against a genuinely huge public dataset and watch how little time it actually takes. This uses a public benchmark dataset of Wikipedia page view data to show that directly.<\/p>\r\n<div class=\"flex-1 overflow-hidden\">\r\n<div class=\"react-scroll-to-bottom--css-adbhs-79elbk h-full\">\r\n<div class=\"react-scroll-to-bottom--css-adbhs-1n7m0yu\">\r\n<div class=\"flex flex-col text-sm pb-9\">\r\n<div class=\"w-full text-token-text-primary\" data-testid=\"conversation-turn-3\">\r\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\r\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\r\n<div class=\"relative flex w-full flex-col agent-turn\">\r\n<div class=\"flex-col gap-1 md:gap-3\">\r\n<div class=\"flex flex-grow flex-col max-w-full\">\r\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&amp;]:mt-5 overflow-x-auto\" data-message-author-role=\"assistant\" data-message-id=\"b10c4ae6-47bf-4fe9-b3a8-7fa767aa8269\">\r\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\r\n<p>In the era of burgeoning digital information, the ability to efficiently process and derive insights from vast datasets is paramount. Enter BigQuery, Google&#8217;s fully managed, serverless data warehouse solution designed to tackle the challenges of analyzing massive datasets with unprecedented speed and scalability.<\/p>\r\n<p>In this article, we will explore the foundational principles and capabilities of BigQuery, empowering organizations to unlock the full potential of their data assets. From its seamless integration with <a href=\"https:\/\/prwatech.in\/gcp-training-institutes-in-pune\/\">Google Cloud Platform<\/a> to its SQL-like querying capabilities and real-time data analytics features.<\/p>\r\n<h2>Step by Step Process of Analyzing Datasets with BigQuery<\/h2>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<div class=\"flex flex-col text-sm pb-9\">\r\n<h3>Step One: Open BigQuery<\/h3>\r\n<p>Open the console, then the\u00a0 Open Menu &gt; <a href=\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/\" target=\"_blank\" rel=\"noreferrer noopener\" data-type=\"URL\" data-id=\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/\">Big Query <\/a>&gt; SQL Workspace.<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<p>&nbsp;<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"355\" height=\"194\" class=\"wp-image-8664\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70.png 355w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70-300x164.png 300w\" sizes=\"auto, (max-width: 355px) 100vw, 355px\" \/><\/figure>\r\n\r\n\r\n\r\n<h3>Query One: A Full Table Scan<\/h3>\r\n<p>SELECT<br \/>\u00a0\u00a0*<br \/>FROM<br \/>\u00a0\u00a0`bigquery-samples.wikipedia_benchmark.Wiki10B`<br \/>LIMIT<br \/>\u00a0\u00a05<\/p>\r\n<p>Click Run. This query processes 692 GB and returns in under a second. It is fast because a LIMIT clause does not reduce how much data BigQuery has to scan to answer a SELECT star query, but the dataset itself is not being filtered or aggregated at all, just returned as is.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"628\" height=\"369\" class=\"wp-image-8665\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-71.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-71.png 628w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-71-300x176.png 300w\" sizes=\"auto, (max-width: 628px) 100vw, 628px\" \/><\/figure>\r\n\r\n\r\n\r\n<h3>Query Two: Filtering and Grouping<\/h3>\r\n<p>SELECT<br \/>\u00a0\u00a0language,<br \/>\u00a0\u00a0title,<br \/>\u00a0\u00a0SUM(views) AS views<br \/>FROM<br \/>\u00a0\u00a0`bigquery-samples.wikipedia_benchmark.Wiki10B`<br \/>WHERE<br \/>\u00a0\u00a0title LIKE &#8220;%Google%&#8221;<br \/>GROUP BY<br \/>\u00a0\u00a0language,<br \/>\u00a0\u00a0title<br \/>ORDER BY<br \/>\u00a0\u00a0views DESC;<\/p>\r\n<p>Click Run. This one processes 425 GB and finishes in 8.3 seconds, filtering down to Wikipedia titles containing Google, then totalling views by language and title.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"628\" height=\"479\" class=\"wp-image-8666\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-72.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-72.png 628w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-72-300x229.png 300w\" sizes=\"auto, (max-width: 628px) 100vw, 628px\" \/><\/figure>\r\n\r\n\r\n\r\n<h3>Query Three: A Much Larger Table<\/h3>\r\n<p>This is the same query as above, run against Wiki100B, a table roughly ten times the size:<\/p>\r\n<p>SELECT<br \/>\u00a0\u00a0language,<br \/>\u00a0\u00a0title,<br \/>\u00a0\u00a0SUM(views) AS views<br \/>FROM<br \/>\u00a0\u00a0`bigquery-samples.wikipedia_benchmark.Wiki100B`<br \/>WHERE<br \/>\u00a0\u00a0title LIKE &#8220;%Google%&#8221;<br \/>GROUP BY<br \/>\u00a0\u00a0language,<br \/>\u00a0\u00a0title<br \/>ORDER BY<br \/>\u00a0\u00a0views DESC;<\/p>\r\n<p>Click Run. This processes 4.1 TB and finishes in around 47.5 seconds, roughly ten times the data in less than six times the time.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"628\" height=\"481\" class=\"wp-image-8667\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-73.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-73.png 628w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-73-300x230.png 300w\" sizes=\"auto, (max-width: 628px) 100vw, 628px\" \/><\/figure>\r\n<p>If bigquery-samples ever stops resolving in your own project, bigquery-public-data is the current primary namespace Google uses for its public datasets, and is worth checking as the modern equivalent.<\/p>\r\n<h2>Why This Is Actually Fast<\/h2>\r\n<p>Two things make this possible. BigQuery stores data in a columnar format, so a query only has to read the specific columns it references, not every column in every row, which is a big part of why query two processes less data than query one despite querying the same table. On top of that, BigQuery spreads a query across a large number of machines running in parallel, so scanning 692 GB does not mean waiting for one machine to read through it sequentially, it means thousands of machines each reading a small slice of it at the same time.<\/p>\r\n<h2>Why Selecting Specific Columns Matters for Cost<\/h2>\r\n<p>Query one uses SELECT star, which reads every column in the table, and its 692 GB reflects that. Queries two and three only reference language, title, and views, and process less data as a result, even though they run against the same size or larger table. Since BigQuery bills by the amount of data a query actually processes, this is not just a performance detail, it directly affects cost. Selecting only the columns a query genuinely needs, instead of defaulting to SELECT star, is one of the simplest ways to keep both query time and cost down.<\/p>\r\n<h2>Common Mistakes to Avoid<\/h2>\r\n<ul>\r\n<li>Wrapping a table name in single or double quotes instead of backticks. Quoting a table name turns it into a text string as far as BigQuery is concerned, not a reference to an actual table.<\/li>\r\n<li>Copying a query from a document without checking for curly quotes. They look almost identical to straight quotes on screen but are read completely differently by BigQuery.<\/li>\r\n<li>Defaulting to SELECT star out of habit. It is fine for a quick look at a small table, but on anything large, naming only the columns you need keeps both the query faster and the bill smaller.<\/li>\r\n<\/ul>\r\n<p>That covers why BigQuery can scan terabytes of data in seconds, and how to write queries that take advantage of it. To go further, explore <a href=\"https:\/\/prwatech.in\/gcp-training-institutes-in-bangalore\/\"><strong><b>Prwatech&#8217;s Google Cloud training<\/b><\/strong><\/a>\u00a0program, which includes placement assistance.<\/p>\r\n\r\n\r\n","protected":false},"excerpt":{"rendered":"<p>Analyzing Massive Datasets With BigQuery BigQuery is built to scan enormous amounts of data quickly, and the clearest way to see that is to run a few queries against a genuinely huge public dataset and watch how little time it actually takes. This uses a public benchmark dataset of Wikipedia page view data to show [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1632,1],"tags":[728,1401,1403,736,732,1402,605,729,699,700,1399,683,684,685,611,692,733],"class_list":["post-8663","post","type-post","status-publish","format-standard","hentry","category-bigquery","category-google-cloud-platform","tag-bigquery","tag-bigquery-console","tag-bigquery-documentation","tag-bigquery-in-cloud","tag-bigquery-sql","tag-bigquery-tutorial","tag-gcp","tag-gcp-bigquery","tag-gcp-certification","tag-gcp-cloud-console","tag-gcp-console","tag-google-cloud-certification","tag-google-cloud-console","tag-google-cloud-courses","tag-google-cloud-platform","tag-google-cloud-training","tag-sql-in-bigquery"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Analyzing Datasets With BigQuery | BigQuery Speed<\/title>\n<meta name=\"description\" content=\"See BigQuery scan terabytes of Wikipedia data in seconds, why it is this fast, and a genuinely broken sample query fixed and explained. Complete process\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Analyzing Datasets With BigQuery | BigQuery Speed\" \/>\n<meta property=\"og:description\" content=\"See BigQuery scan terabytes of Wikipedia data in seconds, why it is this fast, and a genuinely broken sample query fixed and explained. Complete process\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/\" \/>\n<meta property=\"og:site_name\" content=\"Prwatech\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prwatech.in\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-17T06:51:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-18T17:29:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70.png\" \/>\n\t<meta property=\"og:image:width\" content=\"355\" \/>\n\t<meta property=\"og:image:height\" content=\"194\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Prwatech\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Eduprwatech\" \/>\n<meta name=\"twitter:site\" content=\"@Eduprwatech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prwatech\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/\",\"url\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/\",\"name\":\"Analyzing Datasets With BigQuery | BigQuery Speed\",\"isPartOf\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70.png\",\"datePublished\":\"2026-09-17T06:51:17+00:00\",\"dateModified\":\"2026-09-18T17:29:50+00:00\",\"author\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3\"},\"description\":\"See BigQuery scan terabytes of Wikipedia data in seconds, why it is this fast, and a genuinely broken sample query fixed and explained. Complete process\",\"breadcrumb\":{\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/#primaryimage\",\"url\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70.png\",\"contentUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70.png\",\"width\":355,\"height\":194},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/prwatech.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"BigQuery Speed: Querying Terabytes of Data in Seconds\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/prwatech.in\/blog\/#website\",\"url\":\"https:\/\/prwatech.in\/blog\/\",\"name\":\"Prwatech\",\"description\":\"Share Ideas, Start Something Good.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/prwatech.in\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3\",\"name\":\"Prwatech\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g\",\"caption\":\"Prwatech\"},\"url\":\"https:\/\/prwatech.in\/blog\/author\/prwatech123\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Analyzing Datasets With BigQuery | BigQuery Speed","description":"See BigQuery scan terabytes of Wikipedia data in seconds, why it is this fast, and a genuinely broken sample query fixed and explained. Complete process","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:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/","og_locale":"en_US","og_type":"article","og_title":"Analyzing Datasets With BigQuery | BigQuery Speed","og_description":"See BigQuery scan terabytes of Wikipedia data in seconds, why it is this fast, and a genuinely broken sample query fixed and explained. Complete process","og_url":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/","og_site_name":"Prwatech","article_publisher":"https:\/\/www.facebook.com\/prwatech.in\/","article_published_time":"2026-09-17T06:51:17+00:00","article_modified_time":"2026-09-18T17:29:50+00:00","og_image":[{"width":355,"height":194,"url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70.png","type":"image\/png"}],"author":"Prwatech","twitter_card":"summary_large_image","twitter_creator":"@Eduprwatech","twitter_site":"@Eduprwatech","twitter_misc":{"Written by":"Prwatech","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/","url":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/","name":"Analyzing Datasets With BigQuery | BigQuery Speed","isPartOf":{"@id":"https:\/\/prwatech.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/#primaryimage"},"image":{"@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/#primaryimage"},"thumbnailUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70.png","datePublished":"2026-09-17T06:51:17+00:00","dateModified":"2026-09-18T17:29:50+00:00","author":{"@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3"},"description":"See BigQuery scan terabytes of Wikipedia data in seconds, why it is this fast, and a genuinely broken sample query fixed and explained. Complete process","breadcrumb":{"@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/#primaryimage","url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70.png","contentUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-70.png","width":355,"height":194},{"@type":"BreadcrumbList","@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/bigquery\/executing-queries-of-multiple-gb-of-data-in-seconds\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/prwatech.in\/blog\/"},{"@type":"ListItem","position":2,"name":"BigQuery Speed: Querying Terabytes of Data in Seconds"}]},{"@type":"WebSite","@id":"https:\/\/prwatech.in\/blog\/#website","url":"https:\/\/prwatech.in\/blog\/","name":"Prwatech","description":"Share Ideas, Start Something Good.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/prwatech.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3","name":"Prwatech","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g","caption":"Prwatech"},"url":"https:\/\/prwatech.in\/blog\/author\/prwatech123\/"}]}},"_links":{"self":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/8663","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/comments?post=8663"}],"version-history":[{"count":8,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/8663\/revisions"}],"predecessor-version":[{"id":11796,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/8663\/revisions\/11796"}],"wp:attachment":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/media?parent=8663"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/categories?post=8663"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/tags?post=8663"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}