{"id":8956,"date":"2021-05-30T06:09:23","date_gmt":"2021-05-30T06:09:23","guid":{"rendered":"https:\/\/prwatech.in\/blog\/?p=8956"},"modified":"2024-03-20T06:58:16","modified_gmt":"2024-03-20T06:58:16","slug":"working-with-dataproc-in-console","status":"publish","type":"post","link":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/","title":{"rendered":"Working with dataproc in console"},"content":{"rendered":"\r\n<h2><span data-sheets-root=\"1\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Submitting Spark Jobs to Your Dataproc Clusters&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\">Submitting Spark Jobs to Your Dataproc Clusters<\/span><\/h2>\r\n<p>Working with Dataproc in the Google Cloud Console provides users with a user-friendly interface to manage, configure, and monitor their managed Apache Hadoop and Apache Spark clusters. Dataproc simplifies big data processing by automating cluster management tasks, allowing users to focus on analyzing and deriving insights from their data.<\/p>\r\n<p>Within the Google Cloud Console, users can create, configure, and delete Dataproc clusters with just a few clicks. The console provides intuitive wizards to guide users through the cluster creation process, allowing them to specify parameters such as the cluster name, machine type, number of worker nodes, and software components (such as Hadoop, Spark, or Hive) to be installed on the cluster.<\/p>\r\n<h3><strong>Prerequisites<\/strong><\/h3>\r\n\r\n\r\n\r\n<p><a href=\"https:\/\/www.prwatech.com\/course\/gcptraining\" target=\"_blank\" rel=\"noreferrer noopener\" data-type=\"URL\" data-id=\"https:\/\/www.prwatech.com\/course\/gcptraining\">GCP<\/a> account<\/p>\r\n\r\n\r\n\r\n<p>Open Notepad\/Text editor in your machine.<\/p>\r\n\r\n\r\n\r\n<p>Paste the below code.<\/p>\r\n\r\n\r\n\r\n<p>from pyspark import SparkConf, SparkContext<\/p>\r\n\r\n\r\n\r\n<p>import collections<\/p>\r\n\r\n\r\n\r\n<p>conf = SparkConf().setMaster(&#8220;local&#8221;).setAppName(&#8220;Ratings&#8221;)<\/p>\r\n\r\n\r\n\r\n<p>sc = SparkContext(conf = conf)<\/p>\r\n\r\n\r\n\r\n<p>lines = sc.textFile(&#8220;\/user\/&lt;userid&gt;\/sparkdata\/u.data&#8221;)<\/p>\r\n\r\n\r\n\r\n<p>ratings = lines.map(lambda x: x.split( )[2])<\/p>\r\n\r\n\r\n\r\n<p>result = ratings.countByValue()<\/p>\r\n\r\n\r\n\r\n<p>sortedResults = collections.OrderedDict(sorted(result.items()))<\/p>\r\n\r\n\r\n\r\n<p>for key, value in sortedResults.items():<\/p>\r\n\r\n\r\n\r\n<p>\u00a0\u00a0\u00a0 print(&#8220;%s %i&#8221; % (key, value))<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"628\" height=\"319\" class=\"wp-image-8957\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320.png 628w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320-300x152.png 300w\" sizes=\"auto, (max-width: 628px) 100vw, 628px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Give your user ID of console.<\/p>\r\n\r\n\r\n\r\n<p>To get your user ID, Open cloud shell.<\/p>\r\n\r\n\r\n\r\n<p>$\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 pwd\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 #It will show path with your user ID<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"546\" height=\"90\" class=\"wp-image-8959\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-322.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-322.png 546w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-322-300x49.png 300w\" sizes=\"auto, (max-width: 546px) 100vw, 546px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Save file as ratingscounter.py<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"628\" height=\"274\" class=\"wp-image-8958\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-321.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-321.png 628w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-321-300x131.png 300w\" sizes=\"auto, (max-width: 628px) 100vw, 628px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Open Cloud Console<\/p>\r\n\r\n\r\n\r\n<p>Open Cloud Storage &gt; Browser<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"379\" height=\"261\" class=\"wp-image-8960\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-323.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-323.png 379w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-323-300x207.png 300w\" sizes=\"auto, (max-width: 379px) 100vw, 379px\" \/><\/figure>\r\n\r\n\r\n\r\n<p><a href=\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/adding-and-deleting-files-in-bucket\/\" target=\"_blank\" rel=\"noreferrer noopener\" data-type=\"URL\" data-id=\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/adding-and-deleting-files-in-bucket\/\">Upload the created file into bucket.<\/a><\/p>\r\n\r\n\r\n\r\n<p>Click on the file.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"489\" height=\"293\" class=\"wp-image-8961\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-324.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-324.png 489w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-324-300x180.png 300w\" sizes=\"auto, (max-width: 489px) 100vw, 489px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Copy the URI of file.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"628\" height=\"391\" class=\"wp-image-8962\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-325.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-325.png 628w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-325-300x187.png 300w\" sizes=\"auto, (max-width: 628px) 100vw, 628px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Open Menu &gt; <a href=\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc-cluster-creation\/\" target=\"_blank\" rel=\"noreferrer noopener\" data-type=\"URL\" data-id=\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc-cluster-creation\/\">Dataproc<\/a> &gt; Jobs<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"451\" height=\"350\" class=\"wp-image-8963\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-326.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-326.png 451w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-326-300x233.png 300w\" sizes=\"auto, (max-width: 451px) 100vw, 451px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Click on Submit Job<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"338\" height=\"71\" class=\"wp-image-8964\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-327.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-327.png 338w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-327-300x63.png 300w\" sizes=\"auto, (max-width: 338px) 100vw, 338px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Give the Job ID.<\/p>\r\n\r\n\r\n\r\n<p>Region will be automatically selected.<\/p>\r\n\r\n\r\n\r\n<p>Choose the cluster.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"532\" height=\"241\" class=\"wp-image-8965\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-328.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-328.png 532w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-328-300x136.png 300w\" sizes=\"auto, (max-width: 532px) 100vw, 532px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Choose the job type as PySpark<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"547\" height=\"283\" class=\"wp-image-8966\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-329.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-329.png 547w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-329-300x155.png 300w\" sizes=\"auto, (max-width: 547px) 100vw, 547px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Paste the URI of python file.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"539\" height=\"387\" class=\"wp-image-8967\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-330.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-330.png 539w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-330-300x215.png 300w\" sizes=\"auto, (max-width: 539px) 100vw, 539px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Click Submit.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"185\" height=\"322\" class=\"wp-image-8968\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-331.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-331.png 185w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-331-172x300.png 172w\" sizes=\"auto, (max-width: 185px) 100vw, 185px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>It will execute the job and give the result.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"628\" height=\"408\" class=\"wp-image-8969\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-332.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-332.png 628w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-332-300x195.png 300w\" sizes=\"auto, (max-width: 628px) 100vw, 628px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>&nbsp;<\/p>\r\n<p>Submitting Spark Jobs to Your Dataproc Clusters<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>Submitting Spark Jobs to Your Dataproc Clusters Working with Dataproc in the Google Cloud Console provides users with a user-friendly interface to manage, configure, and monitor their managed Apache Hadoop and Apache Spark clusters. Dataproc simplifies big data processing by automating cluster management tasks, allowing users to focus on analyzing and deriving insights from their [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1634,1],"tags":[1415,1412,1413,1414,1411,605,699,700,984,617,683,684,685,611,1400,692],"class_list":["post-8956","post","type-post","status-publish","format-standard","hentry","category-dataproc","category-google-cloud-platform","tag-dataproc","tag-dataproc-cluster","tag-dataproc-cluster-creation","tag-dataproc-cluster-properties","tag-dataproc-in-gcp","tag-gcp","tag-gcp-certification","tag-gcp-cloud-console","tag-gcp-course","tag-google-cloud","tag-google-cloud-certification","tag-google-cloud-console","tag-google-cloud-courses","tag-google-cloud-platform","tag-google-cloud-platform-tutorial","tag-google-cloud-training"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Submitting Spark Jobs to Your Dataproc Clusters - Prwatech<\/title>\n<meta name=\"description\" content=\"Master Submitting Spark Jobs to Your Dataproc Clusters - Prwatech - Dive deep with our expert instructors and comprehensive curriculum.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Submitting Spark Jobs to Your Dataproc Clusters - Prwatech\" \/>\n<meta property=\"og:description\" content=\"Master Submitting Spark Jobs to Your Dataproc Clusters - Prwatech - Dive deep with our expert instructors and comprehensive curriculum.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/\" \/>\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=\"2021-05-30T06:09:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-20T06:58:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320.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\/dataproc\/working-with-dataproc-in-console\/\",\"url\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/\",\"name\":\"Submitting Spark Jobs to Your Dataproc Clusters - Prwatech\",\"isPartOf\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320.png\",\"datePublished\":\"2021-05-30T06:09:23+00:00\",\"dateModified\":\"2024-03-20T06:58:16+00:00\",\"author\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3\"},\"description\":\"Master Submitting Spark Jobs to Your Dataproc Clusters - Prwatech - Dive deep with our expert instructors and comprehensive curriculum.\",\"breadcrumb\":{\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/#primaryimage\",\"url\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320.png\",\"contentUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320.png\",\"width\":628,\"height\":319},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/prwatech.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Working with dataproc in console\"}]},{\"@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":"Submitting Spark Jobs to Your Dataproc Clusters - Prwatech","description":"Master Submitting Spark Jobs to Your Dataproc Clusters - Prwatech - Dive deep with our expert instructors and comprehensive curriculum.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Submitting Spark Jobs to Your Dataproc Clusters - Prwatech","og_description":"Master Submitting Spark Jobs to Your Dataproc Clusters - Prwatech - Dive deep with our expert instructors and comprehensive curriculum.","og_url":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/","og_site_name":"Prwatech","article_publisher":"https:\/\/www.facebook.com\/prwatech.in\/","article_published_time":"2021-05-30T06:09:23+00:00","article_modified_time":"2024-03-20T06:58:16+00:00","og_image":[{"url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320.png","type":"","width":"","height":""}],"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\/dataproc\/working-with-dataproc-in-console\/","url":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/","name":"Submitting Spark Jobs to Your Dataproc Clusters - Prwatech","isPartOf":{"@id":"https:\/\/prwatech.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/#primaryimage"},"image":{"@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/#primaryimage"},"thumbnailUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320.png","datePublished":"2021-05-30T06:09:23+00:00","dateModified":"2024-03-20T06:58:16+00:00","author":{"@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3"},"description":"Master Submitting Spark Jobs to Your Dataproc Clusters - Prwatech - Dive deep with our expert instructors and comprehensive curriculum.","breadcrumb":{"@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/#primaryimage","url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320.png","contentUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/05\/image-320.png","width":628,"height":319},{"@type":"BreadcrumbList","@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/dataproc\/working-with-dataproc-in-console\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/prwatech.in\/blog\/"},{"@type":"ListItem","position":2,"name":"Working with dataproc in console"}]},{"@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\/8956","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=8956"}],"version-history":[{"count":4,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/8956\/revisions"}],"predecessor-version":[{"id":10995,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/8956\/revisions\/10995"}],"wp:attachment":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/media?parent=8956"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/categories?post=8956"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/tags?post=8956"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}