{"id":17540,"date":"2015-02-25T12:53:39","date_gmt":"2015-02-25T07:23:39","guid":{"rendered":"http:\/\/www.tothenew.com\/blog\/?p=17540"},"modified":"2015-02-25T12:53:39","modified_gmt":"2015-02-25T07:23:39","slug":"log_output-table-vs-file-inside-amazon-rds","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/","title":{"rendered":"log_output TABLE vs FILE inside Amazon RDS"},"content":{"rendered":"<p>Amazon RDS provides us with three different types of logs :<\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">1) General Logs<\/h3>\n<h3 style=\"text-align: justify;color: #ff9900\">2) Slow Query Logs<\/h3>\n<h3 style=\"text-align: justify;color: #ff9900\">3) Error Logs<\/h3>\n<p>&nbsp;<\/p>\n<p>You can enable these logs by modifying the DB Parameter Group.<\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">1) Enable General Log<\/h3>\n<p>[js]<br \/>\nParameter Name : general_log<br \/>\nValue : set the value to 1. Default is 0.<br \/>\n[\/js]<\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">2) Enable Slowquery Log<\/h3>\n<p>[js]<br \/>\nParameter Name : slow_query_log<br \/>\nValue : set the value to 1. Default is 0.<br \/>\n[\/js]<\/p>\n<p>Once you enable these logs, Amazon RDS starts generating logs.<\/p>\n<p>Amazon RDS defines two output format ( TABLE or FILE )for logs storage :<\/p>\n<p>[js] Parameter : log_output [\/js]<\/p>\n<p>&nbsp;<\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">1) TABLE (default)<\/h3>\n<p><\/p>\n<p>&#8211;&gt; If log_output is set to TABLE, then Amazon RDS generates logs inside <strong>general log\/slow log<\/strong> inside <strong>mysql.general_log<\/strong> and <strong>mysql.slow_log TABLE<\/strong> respectively.<\/p>\n<p>&#8211;&gt; log contents are accessible through SQL commands. e.g<\/p>\n<p>[js]<br \/>\nmysql&gt; SELECT * FROM slow_log ORDER BY query_time DESC;<br \/>\n[\/js]<\/p>\n<p>&#8211;&gt; logs table are not automatically rotated.<\/p>\n<p>&#8211;&gt; Enabling log_output = TABLE increases amount of data written to database which decreases performance.<\/p>\n<p>&#8211;&gt; as the log file grows, we need to manually rotate the logs by calling below commands successively.<\/p>\n<p>&#8211;&gt; you will always receive this warning &#8220;[ <strong>The MySQL general and\/or slow logs of the DB Instance: rds-Instances are consuming a large amount of provisioned storage.<\/strong>]&#8221; under AWS RDS Events section if you use TABLE format log. As it keeps on writing logs to the databases table.<\/p>\n<p>&#8211;&gt; To manually rotate the general\/slowquery log, you will have to execute the below commands.<\/p>\n<p>[js]<br \/>\nmysql&gt; CALL mysql.rds_rotate_slow_log;<br \/>\nmysql&gt; CALL mysql.rds_rotate_general_log;<br \/>\n[\/js]<\/p>\n<p>Note : To remove logs completely and free the disk space, call the above command twice.<\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">2) FILE.<\/h3>\n<p><\/p>\n<p>&#8211;&gt; If log_output is set to FILE, then Amazon RDS writes the logs to the file system.<\/p>\n<p>&#8211;&gt; logs are automatically rotated every hours and logs file older than 24 hours are deleted automatically.<\/p>\n<p>&#8211;&gt; logs can be seen \/ downloaded directly from <strong>Amazon RDS API, Amazon RDS CLI, or AWS SDKs.<\/strong><\/p>\n<p>To Download logs directly from the AWS RDS Console, you have to execute the below API call.<\/p>\n<p>[js]<\/p>\n<p>aws rds download-db-log-file-portion &#8211;db-instance-identifier testing-RDS &#8211;log-file-name slowquery\/mysql-slowquery.log &#8211;output text &gt; file.txt<\/p>\n<p>[\/js]<\/p>\n<p>Note : It&#8217;s recommended to set the Value of Parameter &#8220;log_output&#8221; as FILE for the better performance, as it lowers the overheads of read and write on databases.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Amazon RDS provides us with three different types of logs : 1) General Logs 2) Slow Query Logs 3) Error Logs &nbsp; You can enable these logs by modifying the DB Parameter Group. 1) Enable General Log [js] Parameter Name : general_log Value : set the value to 1. Default is 0. [\/js] 2) Enable [&hellip;]<\/p>\n","protected":false},"author":100,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":97,"footnotes":""},"categories":[1174],"tags":[288,76,1442,646],"class_list":["post-17540","post","type-post","status-publish","format-standard","hentry","category-aws-2","tag-logging","tag-mysql","tag-rds","tag-sql-logging-for-method"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Amazon RDS provides us with three different types of logs : 1) General Logs 2) Slow Query Logs 3) Error Logs You can enable these logs by modifying the DB Parameter Group. 1) Enable General Log [js] Parameter Name : general_log Value : set the value to 1. Default is 0. [\/js] 2) Enable\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vikash Jha\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"log_output TABLE vs FILE inside Amazon RDS | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Amazon RDS provides us with three different types of logs : 1) General Logs 2) Slow Query Logs 3) Error Logs You can enable these logs by modifying the DB Parameter Group. 1) Enable General Log [js] Parameter Name : general_log Value : set the value to 1. Default is 0. [\/js] 2) Enable\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"log_output TABLE vs FILE inside Amazon RDS | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Amazon RDS provides us with three different types of logs : 1) General Logs 2) Slow Query Logs 3) Error Logs You can enable these logs by modifying the DB Parameter Group. 1) Enable General Log [js] Parameter Name : general_log Value : set the value to 1. Default is 0. [\/js] 2) Enable\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/log_output-table-vs-file-inside-amazon-rds\\\/#article\",\"name\":\"log_output TABLE vs FILE inside Amazon RDS | TO THE NEW Blog\",\"headline\":\"log_output TABLE vs FILE inside Amazon RDS\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-02-25T12:53:39+05:30\",\"dateModified\":\"2015-02-25T12:53:39+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/log_output-table-vs-file-inside-amazon-rds\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/log_output-table-vs-file-inside-amazon-rds\\\/#webpage\"},\"articleSection\":\"AWS, logging, MySql, RDS, sql logging for method\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/log_output-table-vs-file-inside-amazon-rds\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"name\":\"AWS\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"position\":2,\"name\":\"AWS\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/log_output-table-vs-file-inside-amazon-rds\\\/#listItem\",\"name\":\"log_output TABLE vs FILE inside Amazon RDS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/log_output-table-vs-file-inside-amazon-rds\\\/#listItem\",\"position\":3,\"name\":\"log_output TABLE vs FILE inside Amazon RDS\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"name\":\"AWS\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/\",\"name\":\"Vikash Jha\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/log_output-table-vs-file-inside-amazon-rds\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fa67f119919550cc9af23ac9542eb0ef48d4e69a6ad310fb29f55390d4662b36?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Vikash Jha\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/log_output-table-vs-file-inside-amazon-rds\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/log_output-table-vs-file-inside-amazon-rds\\\/\",\"name\":\"log_output TABLE vs FILE inside Amazon RDS | TO THE NEW Blog\",\"description\":\"Amazon RDS provides us with three different types of logs : 1) General Logs 2) Slow Query Logs 3) Error Logs You can enable these logs by modifying the DB Parameter Group. 1) Enable General Log [js] Parameter Name : general_log Value : set the value to 1. Default is 0. [\\\/js] 2) Enable\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/log_output-table-vs-file-inside-amazon-rds\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"datePublished\":\"2015-02-25T12:53:39+05:30\",\"dateModified\":\"2015-02-25T12:53:39+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"log_output TABLE vs FILE inside Amazon RDS | TO THE NEW Blog","description":"Amazon RDS provides us with three different types of logs : 1) General Logs 2) Slow Query Logs 3) Error Logs You can enable these logs by modifying the DB Parameter Group. 1) Enable General Log [js] Parameter Name : general_log Value : set the value to 1. Default is 0. [\/js] 2) Enable","canonical_url":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/#article","name":"log_output TABLE vs FILE inside Amazon RDS | TO THE NEW Blog","headline":"log_output TABLE vs FILE inside Amazon RDS","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/vikash-jha\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"datePublished":"2015-02-25T12:53:39+05:30","dateModified":"2015-02-25T12:53:39+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/#webpage"},"articleSection":"AWS, logging, MySql, RDS, sql logging for method"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.tothenew.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/aws-2\/#listItem","name":"AWS"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/aws-2\/#listItem","position":2,"name":"AWS","item":"https:\/\/www.tothenew.com\/blog\/category\/aws-2\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/#listItem","name":"log_output TABLE vs FILE inside Amazon RDS"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/#listItem","position":3,"name":"log_output TABLE vs FILE inside Amazon RDS","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/aws-2\/#listItem","name":"AWS"}}]},{"@type":"Organization","@id":"https:\/\/www.tothenew.com\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/www.tothenew.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.tothenew.com\/blog\/author\/vikash-jha\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/vikash-jha\/","name":"Vikash Jha","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/fa67f119919550cc9af23ac9542eb0ef48d4e69a6ad310fb29f55390d4662b36?s=96&d=mm&r=g","width":96,"height":96,"caption":"Vikash Jha"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/","name":"log_output TABLE vs FILE inside Amazon RDS | TO THE NEW Blog","description":"Amazon RDS provides us with three different types of logs : 1) General Logs 2) Slow Query Logs 3) Error Logs You can enable these logs by modifying the DB Parameter Group. 1) Enable General Log [js] Parameter Name : general_log Value : set the value to 1. Default is 0. [\/js] 2) Enable","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/vikash-jha\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/vikash-jha\/#author"},"datePublished":"2015-02-25T12:53:39+05:30","dateModified":"2015-02-25T12:53:39+05:30"},{"@type":"WebSite","@id":"https:\/\/www.tothenew.com\/blog\/#website","url":"https:\/\/www.tothenew.com\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"log_output TABLE vs FILE inside Amazon RDS | TO THE NEW Blog","og:description":"Amazon RDS provides us with three different types of logs : 1) General Logs 2) Slow Query Logs 3) Error Logs You can enable these logs by modifying the DB Parameter Group. 1) Enable General Log [js] Parameter Name : general_log Value : set the value to 1. Default is 0. [\/js] 2) Enable","og:url":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"log_output TABLE vs FILE inside Amazon RDS | TO THE NEW Blog","twitter:description":"Amazon RDS provides us with three different types of logs : 1) General Logs 2) Slow Query Logs 3) Error Logs You can enable these logs by modifying the DB Parameter Group. 1) Enable General Log [js] Parameter Name : general_log Value : set the value to 1. Default is 0. [\/js] 2) Enable","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"17540","title":"log_output TABLE vs FILE inside Amazon RDS | #site_title","description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 14:38:20","updated":"2024-02-29 09:21:22","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\/category\/aws-2\/\" title=\"AWS\">AWS<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tlog_output TABLE vs FILE inside Amazon RDS\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"AWS","link":"https:\/\/www.tothenew.com\/blog\/category\/aws-2\/"},{"label":"log_output TABLE vs FILE inside Amazon RDS","link":"https:\/\/www.tothenew.com\/blog\/log_output-table-vs-file-inside-amazon-rds\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/17540","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/100"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=17540"}],"version-history":[{"count":0,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/17540\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=17540"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=17540"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=17540"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}