{"id":242643,"date":"2024-11-07T11:26:00","date_gmt":"2024-11-07T18:26:00","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=242643"},"modified":"2024-10-22T17:30:36","modified_gmt":"2024-10-23T00:30:36","slug":"getting-started-with-sysbench","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/","title":{"rendered":"Getting Started with Sysbench"},"content":{"rendered":"\n<p>MySQL remains one of the most popular relational databases due to its robustness, scalability, and ease of use. However, optimizing MySQL for better performance becomes crucial as your database grows and your system demands increase. Using Sysbench for MySQL benchmarking is a great way to evaluate the performance of your MySQL database under various workloads. Here&#8217;s a step-by-step guide to help you get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Install Sysbench<\/h2>\n\n\n\n<p>To get started, you need to install Sysbench and MySQL on your system. Sysbench can be easily installed using package managers like apt, yum, and dnf.<\/p>\n\n\n\n<p><strong>For RHEL\/CentOS:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo yum install epel-release\n$ sudo yum install sysbench<\/code><\/pre>\n\n\n\n<p><strong>For Ubuntu\/Debian:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo apt update\n$ sudo apt install sysbench<\/code><\/pre>\n\n\n\n<p>Once installed, create a test database and user in MySQL to be used by sysbench for benchmarking purposes. Grant the user the necessary permission to perform the required operations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Pick a Test&nbsp;<\/h2>\n\n\n\n<p>Sysbench offers several types of tests to evaluate different aspects of MySQL performance.<\/p>\n\n\n\n<p>Here are the main categories of tests you can run:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">OLTP Tests<\/h3>\n\n\n\n<p>These simulate online transaction processing workloads and include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>OLTP Read-Only:<\/strong> Measures the performance of read operations.<\/li>\n\n\n\n<li><strong>OLTP Read-Write:<\/strong> Measures performance with both read and write operations.<\/li>\n\n\n\n<li><strong>OLTP Write-Only:<\/strong> Focuses solely on write operations.<\/li>\n\n\n\n<li><strong>OLTP Point Select:<\/strong> Tests the performance of point-select queries.<\/li>\n\n\n\n<li><strong>OLTP Mixed:<\/strong> A combination of various read and write operations.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">File I\/O Tests<\/h3>\n\n\n\n<p>These measure file input\/output performance, which is crucial for understanding how well the underlying storage system performs:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>File I\/O:<\/strong> Simulates various read and write operations on files. You can customize the test to simulate sequential or random access patterns.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">CPU Tests<\/h3>\n\n\n\n<p>These focus on the CPU performance and can help identify CPU bottlenecks:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>CPU Benchmark:<\/strong> Measures the performance of CPU-bound tasks. It runs mathematical calculations to assess CPU throughput.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Memory Tests<\/h3>\n\n\n\n<p>These tests evaluate memory allocation and access performance:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Memory Benchmark:<\/strong> Measures how efficiently memory is allocated and accessed, which can help tune database configurations.<\/li>\n<\/ul>\n\n\n\n<p>Below is a comparison table summarizing the different Sysbench MySQL tests, their focus areas, and typical use cases:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Test Type<\/strong><\/td><td><strong>Focus Area<\/strong><\/td><td><strong>Use Case<\/strong><\/td><\/tr><tr><td>OLTP Read-Only<\/td><td>Read Performance<\/td><td>Evaluating performance for applications primarily reading data.<\/td><\/tr><tr><td>OLTP Read-Write<\/td><td>Overall Transaction Load<\/td><td>Testing real-world scenarios where both reads and writes occur.<\/td><\/tr><tr><td>OLTP Write-Only<\/td><td>Write Performance<\/td><td>Assessing the write capability of the database under load.<\/td><\/tr><tr><td>OLTP Point Select<\/td><td>Query Performance<\/td><td>Measuring how quickly single records can be retrieved.<\/td><\/tr><tr><td>OLTP Mixed<\/td><td>Mixed Workloads<\/td><td>Simulating complex workloads typical in multi-user environments.<\/td><\/tr><tr><td>File I\/O<\/td><td>I\/O Performance<\/td><td>Evaluating the performance of the underlying storage system.<\/td><\/tr><tr><td>CPU Benchmark<\/td><td>CPU Performance<\/td><td>Identifying CPU bottlenecks during heavy processing tasks.<\/td><\/tr><tr><td>Memory Benchmark<\/td><td>Memory Performance<\/td><td>Testing the efficiency of memory operations in the database.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Run the Benchmark<\/h2>\n\n\n\n<p>Most tests have these basic steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Prepare:<\/strong> configuring the test per desired parameters. Each test has its unique preparation actions.<\/li>\n\n\n\n<li><strong>Run: <\/strong>running the specified test by specifying the test as an option. The syntax below is an example of running a cpu test.<\/li>\n\n\n\n<li><strong>Cleanup:<\/strong> remove all the temporary files and data produced by the test.&nbsp;<\/li>\n<\/ol>\n\n\n\n<p><strong>Example Commands for Each Test Type<\/strong>:<\/p>\n\n\n\n<p><strong>OLTP Write-Only:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sysbench oltp_write_only --threads=50 --mysql-db=db_name --mysql-user=user --mysql-password=pass prepare\n\n$ sysbench oltp_write_only --threads=50 --mysql-db=db_name --mysql-user=user --mysql-password=pass run\n\n$ sysbench oltp_write_only --threads=50 --mysql-db=db_name --mysql-user=user --mysql-password=pass cleanup<\/code><\/pre>\n\n\n\n<p><strong>File I\/O:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sysbench fileio --file-total-size=1G prepare\n\n$ sysbench fileio --file-test-mode=rndrd --file-total-size=1G --time=60 --threads=4 run\n\n$ sysbench fileio --file-test-mode=rndrd --file-total-size=1G --time=60 --threads=4 cleanup<\/code><\/pre>\n\n\n\n<p><strong>CPU Benchmark:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sysbench cpu --cpu-max-prime=20000 run<\/code><\/pre>\n\n\n\n<p><strong>Memory Benchmark:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sysbench memory --memory-block-size=1K --memory-total-size=10G run<\/code><\/pre>\n\n\n\n<p>For more information on each test, run the help command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sysbench &lt;test_name&gt; help<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Sysbench is a powerful tool for benchmarking <a href=\"https:\/\/virtual-dba.com\/platforms\/mysql\/\">MySQL performance<\/a>. You can customize tests to simulate different workloads and configurations to find bottlenecks and optimize performance. Always analyze the results carefully to make informed decisions based on your collected data.<\/p>\n\n\n\n<p>Contact us for any questions.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MySQL remains one of the most popular relational databases due to its robustness, scalability, and ease of use. However, optimizing MySQL for better performance becomes crucial as your database grows and your system demands increase. Using Sysbench for MySQL benchmarking is a great way to evaluate the performance of your MySQL database under various workloads. [&hellip;]<\/p>\n","protected":false},"author":49,"featured_media":242655,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,39],"tags":[40],"class_list":["post-242643","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-mysql","tag-mysql"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Getting Started with Sysbench - VDBA<\/title>\n<meta name=\"description\" content=\"Boost MySQL performance with Sysbench. Learn how to benchmark using various tests to identify and fix database bottlenecks. Read here.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Getting Started with Sysbench\" \/>\n<meta property=\"og:description\" content=\"Boost MySQL performance with Sysbench. Learn how to benchmark using various tests to identify and fix database bottlenecks. Read here.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-07T18:26:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Getting-Started-with-Sysbench.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"557\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Monica Silva\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:site\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Monica Silva\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/\"},\"author\":{\"name\":\"Monica Silva\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/9326f6340815aef31d91f56e4ba145da\"},\"headline\":\"Getting Started with Sysbench\",\"datePublished\":\"2024-11-07T18:26:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/\"},\"wordCount\":570,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Getting-Started-with-Sysbench.jpg\",\"keywords\":[\"mysql\"],\"articleSection\":[\"Blog\",\"MySQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/\",\"name\":\"Getting Started with Sysbench - VDBA\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Getting-Started-with-Sysbench.jpg\",\"datePublished\":\"2024-11-07T18:26:00+00:00\",\"description\":\"Boost MySQL performance with Sysbench. Learn how to benchmark using various tests to identify and fix database bottlenecks. Read here.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Getting-Started-with-Sysbench.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Getting-Started-with-Sysbench.jpg\",\"width\":557,\"height\":291,\"caption\":\"Getting Started with Sysbench\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting Started with Sysbench\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtual-dba.com\/#website\",\"url\":\"https:\/\/virtual-dba.com\/\",\"name\":\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"description\":\"Remote Database Administration\",\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtual-dba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/virtual-dba.com\/#organization\",\"name\":\"Virtual-DBA: Remote DBA | Remote Database Administration\",\"alternateName\":\"Virtual-DBA powered by XTIVIA\",\"url\":\"https:\/\/virtual-dba.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"width\":557,\"height\":291,\"caption\":\"Virtual-DBA: Remote DBA | Remote Database Administration\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/virtual_dba\",\"https:\/\/www.linkedin.com\/showcase\/36220649\/\",\"https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg\"],\"description\":\"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.\",\"email\":\"info@xtivia.com\",\"telephone\":\"8886853101\",\"legalName\":\"XTIVIA, Inc\",\"foundingDate\":\"1992-05-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/9326f6340815aef31d91f56e4ba145da\",\"name\":\"Monica Silva\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9af003bf84c81e7a65a1816bc03fa96f866c8d4432b67dec463ef4fbcbe2d65d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9af003bf84c81e7a65a1816bc03fa96f866c8d4432b67dec463ef4fbcbe2d65d?s=96&d=mm&r=g\",\"caption\":\"Monica Silva\"},\"url\":\"https:\/\/virtual-dba.com\/author\/monica-silva\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Getting Started with Sysbench - VDBA","description":"Boost MySQL performance with Sysbench. Learn how to benchmark using various tests to identify and fix database bottlenecks. Read here.","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:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/","og_locale":"en_US","og_type":"article","og_title":"Getting Started with Sysbench","og_description":"Boost MySQL performance with Sysbench. Learn how to benchmark using various tests to identify and fix database bottlenecks. Read here.","og_url":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2024-11-07T18:26:00+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Getting-Started-with-Sysbench.jpg","type":"image\/jpeg"}],"author":"Monica Silva","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"Monica Silva","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/"},"author":{"name":"Monica Silva","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/9326f6340815aef31d91f56e4ba145da"},"headline":"Getting Started with Sysbench","datePublished":"2024-11-07T18:26:00+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/"},"wordCount":570,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Getting-Started-with-Sysbench.jpg","keywords":["mysql"],"articleSection":["Blog","MySQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/","url":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/","name":"Getting Started with Sysbench - VDBA","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Getting-Started-with-Sysbench.jpg","datePublished":"2024-11-07T18:26:00+00:00","description":"Boost MySQL performance with Sysbench. Learn how to benchmark using various tests to identify and fix database bottlenecks. Read here.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Getting-Started-with-Sysbench.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Getting-Started-with-Sysbench.jpg","width":557,"height":291,"caption":"Getting Started with Sysbench"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/getting-started-with-sysbench\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Getting Started with Sysbench"}]},{"@type":"WebSite","@id":"https:\/\/virtual-dba.com\/#website","url":"https:\/\/virtual-dba.com\/","name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"Remote Database Administration","publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtual-dba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/virtual-dba.com\/#organization","name":"Virtual-DBA: Remote DBA | Remote Database Administration","alternateName":"Virtual-DBA powered by XTIVIA","url":"https:\/\/virtual-dba.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","width":557,"height":291,"caption":"Virtual-DBA: Remote DBA | Remote Database Administration"},"image":{"@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/virtual_dba","https:\/\/www.linkedin.com\/showcase\/36220649\/","https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg"],"description":"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.","email":"info@xtivia.com","telephone":"8886853101","legalName":"XTIVIA, Inc","foundingDate":"1992-05-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}},{"@type":"Person","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/9326f6340815aef31d91f56e4ba145da","name":"Monica Silva","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9af003bf84c81e7a65a1816bc03fa96f866c8d4432b67dec463ef4fbcbe2d65d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9af003bf84c81e7a65a1816bc03fa96f866c8d4432b67dec463ef4fbcbe2d65d?s=96&d=mm&r=g","caption":"Monica Silva"},"url":"https:\/\/virtual-dba.com\/author\/monica-silva\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/242643","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/users\/49"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=242643"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/242643\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/242655"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=242643"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=242643"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=242643"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}