Home / Companies / PlanetScale / Blog / February 2023

February 2023 Summaries

4 posts from PlanetScale

Filter
Month: Year:
Post Summaries Back to Blog
Vitess 16 has been released with several major improvements, including enhanced documentation and a new version of VDiff that offers improved user experience. The new release also introduces mandatory VTOrc component for automatic management of MySQL clusters, support for views in Vitess, and incremental backups with point-in-time recoveries. Additionally, a new VEXPLAIN command has been added to provide insight into query planning in Vitess. The release is now available for users to try out, with feedback welcome via GitHub issues or Slack.
Feb 28, 2023 448 words in the original blog post.
Adding indexes to a database can significantly improve performance, especially for large tables with frequent JOINs or other complex queries. However, overusing secondary indexes can lead to drawbacks such as increased storage space requirements, slower write operations, and potential performance issues. To maintain efficiency, it's essential to carefully evaluate the benefits of adding indexes against their costs and ensure that they are being used effectively. Tools like MySQL's invisible indexes allow for temporary testing of index removal without affecting performance, making it possible to weigh the trade-offs and make informed decisions about database optimization.
Feb 17, 2023 1,181 words in the original blog post.
The text appears to be a navigation menu for a website or application. It includes sections such as Sign in, Get started, Documentation, Case studies, Features, Blog, Pricing, and Contact. Additionally, there is a blog post titled "Faster MySQL with HTTP/3" by Matt Robenolt dated February 16, 2023. The main focus of the text seems to be on providing resources and information related to a product or service.
Feb 16, 2023 44 words in the original blog post.
Migrating from Postgres to MySQL requires an understanding of the differences between the two relational databases, including data types, spatial data handling, UUIDs, and JSON support. MySQL lacks support for certain Postgres data types, such as jsonb, but can be used with alternatives like varchar or text. Spatial data handling differs between the two databases, requiring additional processing in MySQL to access coordinates. The UUID data type can be migrated using a 36-character string, while the Postgres-specific JSONB data type can be handled by using the JSON data type and leveraging its features, such as indexing and updating. Other differences include the use of triggers, temporary tables, and stored procedures, which may require adjustments during migration. Understanding these differences is crucial for a successful migration to MySQL.
Feb 09, 2023 2,254 words in the original blog post.