{"id":1329,"date":"2017-02-14T20:35:48","date_gmt":"2017-02-14T20:35:48","guid":{"rendered":"http:\/\/nenadnoveljic.com\/blog\/?p=1329"},"modified":"2020-08-21T12:20:31","modified_gmt":"2020-08-21T12:20:31","slug":"ora-04036-parsing","status":"publish","type":"post","link":"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/","title":{"rendered":"Large Memory Allocations due to Query Parsing"},"content":{"rendered":"<p>I&#8217;ve recently been alerted because of an ORA-04036 (PGA memory allocation limit) error on a 12.1 Oracle database. As the problem originated in the test environment and hence was not classified as urgent, I decided to investigate the root-cause instead of simply increasing the <em>pga_aggregate_limit<\/em>. It turned out to be a good decision, because the analysis revealed an underlying parsing issue.<\/p>\n<p>In this blog post, I&#8217;ll describe the troubleshooting methodology which is underpinned by ASH dictionary views (subject to licensing!), <a href=\"https:\/\/jonathanlewis.wordpress.com\/2016\/10\/06\/my-session-workload\/\" target=\"_blank\" rel=\"noopener noreferrer\">Jonathan Lewis&#8217; My Session Workload<\/a> tool, <a href=\"http:\/\/dtrace.org\/blogs\/about\/\" target=\"_blank\" rel=\"noopener noreferrer\">DTrace<\/a> and <a href=\"http:\/\/www.brendangregg.com\/flamegraphs.html\" target=\"_blank\" rel=\"noopener noreferrer\">Flame Graphs<\/a>.<\/p>\n<p>First, I selected the samples from <em>v$active_session_history<\/em> and aggregated the size of the allocated pga memory based on&nbsp;<em>force_matching_signature<\/em>.<\/p>\n<pre><code>select a.force_matching_signature,max(pga_allocated),count(*) \n from v$active_session_history a \n where\n sample_time between\n to_date('10.02.2017 15:34:30','dd.mm.yyyy hh24:mi:ss') and\n to_date('10.02.2017 15:34:32','dd.mm.yyyy hh24:mi:ss')\n group by a.force_matching_signature \n order by max(pga_allocated) desc ;\n\nFORCE_MATCHING_SIGNATURE    MAX(PGA_ALLOCATED)\tCOUNT(*)\n7.92426005037451E18\t    4544622592\t       28<\/code><\/pre>\n<p>Second, I found out the SQL text of the largest PGA consumer by querying the shared pool based on <em>force_matching_signature<\/em> obtained in the first step:<\/p>\n<pre><code>select distinct to_char(sql_fulltext) from v$sql s , v$active_session_history a  \n  where s.force_matching_signature = a.force_matching_signature and\n    sample_time between\n      to_date('10.02.2017 15:34:30','dd.mm.yyyy hh24:mi:ss') and\n      to_date('10.02.2017 15:34:32','dd.mm.yyyy hh24:mi:ss')\n;\n\nselect ...<\/code><\/pre>\n<p><em>Note: I replaced the query text with select&#8230; in the entire post, because the SQL is application-specific anyway and as such wouldn&#8217;t provide any useful information for explaining the troubleshooting methodology.<\/em><\/p>\n<p>Third, I reproduced the problem by running the query in question:<\/p>\n<pre><code>set serveroutput on size 1000000\nexec snap_my_stats.start_snap ;\nselect  ... ;\nexec snap_my_stats.end_snap ;\n\nName                            Value\n----                            -----\n<span style=\"color: #ff0000;\">DB time                         517\nsession pga memory max          275,644,416\nparse time elapsed              431<\/span><\/code><\/pre>\n<p><em>Note: the package snap_my_stats is a part of <a href=\"https:\/\/jonathanlewis.wordpress.com\/2016\/10\/06\/my-session-workload\/\" target=\"_blank\" rel=\"noopener noreferrer\">Jonathan Lewis&#8217; My Session Workload<\/a> tool.<\/em><\/p>\n<p>By looking at the statistics above, we can draw following conclusions:<\/p>\n<ul>\n<li>the test confirmed the high PGA usage observed in <em>v$active_session_history<\/em><\/li>\n<li>the parse time is significantly higher than the execution time<br \/>\n( <em>execution time =<\/em> <em>DB time &#8211; parse time elapsed <\/em>)<\/li>\n<\/ul>\n<p>At that point, I wondered whether the PGA memory was used for parsing or for execution. This question was easily answered by collecting the statistics for <em>explain for select&#8230;<\/em> instead for the query execution:<\/p>\n<pre><code>set serveroutput on size 1000000\nexec snap_my_stats.start_snap ;\n<span style=\"color: #ff0000;\">explain plan for<\/span> select ...\nexec snap_my_stats.end_snap ;\n\nName                            Value\n----                            -----\n<span style=\"color: #ff0000;\">session pga memory max          182,386,688<\/span>\nparse time elapsed              452<\/code><\/pre>\n<p>As we can see, the largest part of the used pga was allocated during parsing. To obtain some additional insight, I collected Oracle kernel functions stacks during the query optimization by using following DTrace script:<\/p>\n<pre><code>profile:::profile-997Hz\n\/ pid == $target \/\n{\n  @[ustack()] = count() ;\n}<\/code><\/pre>\n<p>After spooling the stacks in the output file<em> ustacks.out<\/em>, I generated <a href=\"http:\/\/www.brendangregg.com\/flamegraphs.html\" target=\"_blank\" rel=\"noopener noreferrer\">Flame Graphs<\/a>:<\/p>\n<pre><code>stackcollapse.pl ustacks.out &gt; ustacks.folded\nflamegraph.pl ustacks.folded &gt; ustacks.svg<\/code><\/pre>\n<p><em>Note: Since the flame graph is a heavy file which would massively slow down a browser, I didn&#8217;t embed it here. I&#8217;m including the download link&nbsp;instead. However, I recommend download the file and looking into it on a device with more processing power. <\/em><a href=\"http:\/\/nenadnoveljic.com\/downloads\/ustacks.svg\">Right click here<\/a> <em>to download the flame graph<\/em>.<\/p>\n<p>The function that stands out in the Flame Graph is <em>kkojnp<\/em>. The search on MOS Knowledge Base with &#8220;slow parsing kkojnp&#8221; as the key words returned the <a href=\"https:\/\/support.oracle.com\/epmos\/faces\/BugDisplay?id=22225899\" target=\"_blank\" rel=\"noopener noreferrer\">Bug 22225899 : SLOW PARSE FOR COMPLEX QUERY<\/a>. The bug note suggests setting the hidden parameter<em> _optimizer_squ_bottomup<\/em> to <em>FALSE<\/em> as a workaround.<\/p>\n<p>Indeed, the workaround reduced the parse time from 4.52 seconds to just 270 msec. Furthermore, the PGA usage dropped from 174 MB to 19 MB.<\/p>\n<pre><code>alter session set <span style=\"color: #ff0000;\">\"_optimizer_squ_bottomup\" = FALSE<\/span> ;\n\nset serveroutput on size 1000000\nexec snap_my_stats.start_snap ;\nexplain plan for select...\nexec snap_my_stats.end_snap ;\n\nName                            Value\n----                            -----\n<span style=\"color: #ff0000;\">session pga memory max          19,791,872\nparse time elapsed              27\n<\/span><\/code><\/pre>\n<p>I knew so far, that disabling <em>_optimizer_squ_bottomup<\/em> helped in both reducing the parsing time and memory footprint, but did it introduce any inefficiencies into the execution plan? To answer this question, I compared consistent gets of both execution plans:<\/p>\n<pre><code>-- <span style=\"color: #ff0000;\">without the workaround<\/span>\nset serveroutput on size 1000000\nexec snap_my_stats.start_snap ;\nselect ...\nexec snap_my_stats.end_snap ;\n\nName                            Value\n----                            -----\nDB time                         543\n<span style=\"color: #ff0000;\">consistent gets                 312,986<\/span>\n\n\n-- <span style=\"color: #ff0000;\">with the workaround<\/span>\nalter session set <span style=\"color: #ff0000;\">\"_optimizer_squ_bottomup\" = FALSE<\/span> ;\n\nset serveroutput on size 1000000\nexec snap_my_stats.start_snap ;\nselect  ...\nexec snap_my_stats.end_snap ;\n\nName                            Value\n----                            -----\nDB time                         23\n<span style=\"color: #ff0000;\">consistent gets                 2,369\n<\/span><\/code><\/pre>\n<p>Not only did the workaround reduce the parsing time, but the execution plan that was produced more quickly was superior to the original execution plan. In this particular case, I observed the problem on a Informatica Powercenter repository database and decided to disable <em>_optimizer_squ_bottomup<\/em> in the spfile.<\/p>\n<p>However, please don&#8217;t take the result of this case study as a general recommendation to disable <em>optimizer_squ_bottomup<\/em> on all your databases. Instead, consider it only as a possible solution if you hit severe parsing issues. Should you do so, make sure that you thoroughly test the application for any side effects.<\/p>\n<p>Last but not least, if you liked this post, you might be also interested in another article about query parsing performance: <a href=\"http:\/\/nenadnoveljic.com\/blog\/excessive-query-parsing-time-with-long-in-lists-and-extended-statistics\/\">http:\/\/nenadnoveljic.com\/blog\/excessive-query-parsing-time-with-long-in-lists-and-extended-statistics\/<\/a> .<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Troubleshooting high PGA memory allocations which escalated in ORA-04036 error. High memory consuption was related to a parsing problem. <a href=\"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/\" class=\"more-link\">Continue Reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[8,11,24,5,35,20],"tags":[],"class_list":["post-1329","post","type-post","status-publish","format-standard","hentry","category-12c","category-cost-based-optimizer","category-dtrace","category-oracle","category-pga","category-slow-parsing"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Large Memory Allocations due to Query Parsing - All-round Database Topics<\/title>\n<meta name=\"description\" content=\"Troubleshooting high PGA memory allocations which escalated in ORA-04036 error. High memory consuption was related to a parsing problem.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Large Memory Allocations due to Query Parsing - All-round Database Topics\" \/>\n<meta property=\"og:description\" content=\"Troubleshooting high PGA memory allocations which escalated in ORA-04036 error. High memory consuption was related to a parsing problem.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/\" \/>\n<meta property=\"og:site_name\" content=\"All-round Database Topics\" \/>\n<meta property=\"article:published_time\" content=\"2017-02-14T20:35:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-21T12:20:31+00:00\" \/>\n<meta name=\"author\" content=\"Nenad Noveljic\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@NenadNoveljic\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nenad Noveljic\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/ora-04036-parsing\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/ora-04036-parsing\\\/\"},\"author\":{\"name\":\"Nenad Noveljic\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\"},\"headline\":\"Large Memory Allocations due to Query Parsing\",\"datePublished\":\"2017-02-14T20:35:48+00:00\",\"dateModified\":\"2020-08-21T12:20:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/ora-04036-parsing\\\/\"},\"wordCount\":631,\"commentCount\":11,\"articleSection\":[\"12c\",\"cost based optimizer\",\"DTrace\",\"Oracle\",\"PGA\",\"slow parsing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/ora-04036-parsing\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/ora-04036-parsing\\\/\",\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/ora-04036-parsing\\\/\",\"name\":\"Large Memory Allocations due to Query Parsing - All-round Database Topics\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-02-14T20:35:48+00:00\",\"dateModified\":\"2020-08-21T12:20:31+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\"},\"description\":\"Troubleshooting high PGA memory allocations which escalated in ORA-04036 error. High memory consuption was related to a parsing problem.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/ora-04036-parsing\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/ora-04036-parsing\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/ora-04036-parsing\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Large Memory Allocations due to Query Parsing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/\",\"name\":\"All-round Database Topics\",\"description\":\"Nenad Noveljic\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\",\"name\":\"Nenad Noveljic\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"caption\":\"Nenad Noveljic\"},\"sameAs\":[\"nenad-noveljic-9b746a6\",\"https:\\\/\\\/x.com\\\/NenadNoveljic\"],\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/author\\\/nenad\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Large Memory Allocations due to Query Parsing - All-round Database Topics","description":"Troubleshooting high PGA memory allocations which escalated in ORA-04036 error. High memory consuption was related to a parsing problem.","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:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/","og_locale":"en_US","og_type":"article","og_title":"Large Memory Allocations due to Query Parsing - All-round Database Topics","og_description":"Troubleshooting high PGA memory allocations which escalated in ORA-04036 error. High memory consuption was related to a parsing problem.","og_url":"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/","og_site_name":"All-round Database Topics","article_published_time":"2017-02-14T20:35:48+00:00","article_modified_time":"2020-08-21T12:20:31+00:00","author":"Nenad Noveljic","twitter_card":"summary_large_image","twitter_creator":"@NenadNoveljic","twitter_misc":{"Written by":"Nenad Noveljic","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/#article","isPartOf":{"@id":"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/"},"author":{"name":"Nenad Noveljic","@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa"},"headline":"Large Memory Allocations due to Query Parsing","datePublished":"2017-02-14T20:35:48+00:00","dateModified":"2020-08-21T12:20:31+00:00","mainEntityOfPage":{"@id":"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/"},"wordCount":631,"commentCount":11,"articleSection":["12c","cost based optimizer","DTrace","Oracle","PGA","slow parsing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/","url":"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/","name":"Large Memory Allocations due to Query Parsing - All-round Database Topics","isPartOf":{"@id":"https:\/\/nenadnoveljic.com\/blog\/#website"},"datePublished":"2017-02-14T20:35:48+00:00","dateModified":"2020-08-21T12:20:31+00:00","author":{"@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa"},"description":"Troubleshooting high PGA memory allocations which escalated in ORA-04036 error. High memory consuption was related to a parsing problem.","breadcrumb":{"@id":"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nenadnoveljic.com\/blog\/ora-04036-parsing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nenadnoveljic.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Large Memory Allocations due to Query Parsing"}]},{"@type":"WebSite","@id":"https:\/\/nenadnoveljic.com\/blog\/#website","url":"https:\/\/nenadnoveljic.com\/blog\/","name":"All-round Database Topics","description":"Nenad Noveljic","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nenadnoveljic.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa","name":"Nenad Noveljic","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","caption":"Nenad Noveljic"},"sameAs":["nenad-noveljic-9b746a6","https:\/\/x.com\/NenadNoveljic"],"url":"https:\/\/nenadnoveljic.com\/blog\/author\/nenad\/"}]}},"_links":{"self":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/1329","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/comments?post=1329"}],"version-history":[{"count":1,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/1329\/revisions"}],"predecessor-version":[{"id":3261,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/1329\/revisions\/3261"}],"wp:attachment":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/media?parent=1329"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/categories?post=1329"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/tags?post=1329"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}