Skip to content

Releases: vitessio/vitess

Vitess v2.1.0-alpha.1

08 Nov 06:54

Choose a tag to compare

Vitess v2.1.0-alpha.1 Pre-release
Pre-release

This is the first alpha release of the upcoming 2.1 version.

2.1 will be a feature release which will bring the following new features:

  • Support for distributed transactions, using 2 phase commit.
  • Resharding workflow improvements, to increase manageability of the process.
  • Online schema swap, to apply complex schema changes without any downtime.
  • New dynamic UI (vtctld), rewritten from scratch in angular2.
  • Update Stream functionality, for applications to subscribe to a change stream (for cache invalidation, for instance).
  • Improved Map-Reduce support, for tables with non-uniform distributions.
  • Increase large installation scalability with two-layer vtgate pools (l2vtgate, applicable to 100+ shard installations).
  • Better Kubernetes support (Helm support, better scripts, ...).

Note that some of these features are still in development and not fully documented. This will change before we release the final 2.1 version.

Other noteworthy changes:

  • Minimum required Go version changed to 1.7 (from 1.5).
  • Updated to gRPC 1.0.0 (from 0.13.0).
  • Added Percona Docker Images (changes contributed by Stitch Labs).

Vitess v2.0.0

12 Jul 18:34

Choose a tag to compare

Release to Manufacturing

This is the code cut for what will become the first GA release of Vitess 2.0.
We're now focused on updating documentation in preparation for General Availability.

Changes since v2.0.0-rc.2

Code Cleanup

Vitess v2.0.0-rc.2

23 Jun 02:12

Choose a tag to compare

Vitess v2.0.0-rc.2 Pre-release
Pre-release

Changes since v2.0.0-rc.1

Bug Fixes

Plugins

Vitess v2.0.0-rc.1

07 Jun 22:06

Choose a tag to compare

Vitess v2.0.0-rc.1 Pre-release
Pre-release

Changes since v2.0.0-beta.2

This is the first release candidate for v2.0.0. We are now freezing the release-2.0 branch for anything except bug fixes.

Client API

  • Allow specifying a connection-wide default keyspace for VTGateV3 queries.
    (#1725,
    #1727,
    #1738)
    • Similar to the concept of a default database for a MySQL client connection.

SQL Support

Management

  • Hide VtTablet* and VtGate* commands behind a flag in vtctl/vtctld
    (#1700).
    • These commands are mostly meant for development, and should usually not be
      allowed in production.
    • Launch vtctld with the -enable_queries flag to allow these commands.
  • Restart replication automatically
    if a tablet is restarted (e.g. as part of a Vitess upgrade).
  • Optionally allow the use of insecure caller ID.
  • It's no longer required to set a "sharding column name" when using VTGateV3.
    • i.e. no more vtctl SetKeyspaceShardingInfo when using VTGateV3.

Schema and VSchema

  • VSchema config format changed
    • Some fields have been renamed for consistency.
  • VSchema updates are now denormalized into per-cell records.
    (#1750)
    • No longer need to restart VTGate to pick up VSchema for new/removed
      keyspaces.
    • VSchema is still available if global topology goes down.
    • It's now possible to atomically move tables between keyspaces, for example
      when doing a vertical split.
    • NOTE: Even if you don't use VSchema, it's now required to run
      RebuildVSchemaGraph
      to initialize these records for a new keyspace.
  • Schema changes are tested as a group, rather than individually.
    (#1749)
    • This allows batches of schema changes that depend on one another (#1731).

Interoperability

  • Support MySQL 5.7
  • Orchestrator Integration
    • Along with some patches contributed to Orchestrator, these new Vitess
      features allow the two systems to work together automatically.
      We'll be updating the documentation soon to show how to use it.

Code Cleanup

Vitess v2.0.0-beta.2

15 Apr 21:18

Choose a tag to compare

Vitess v2.0.0-beta.2 Pre-release
Pre-release

Changes since v2.0.0-beta.1

Client Libraries

SQL Support

Resharding

Deployment and Management

Build Dependencies

Analysis

Vitess v2.0.0-beta.1

03 Mar 21:21

Choose a tag to compare

Vitess v2.0.0-beta.1 Pre-release
Pre-release

Changes since v2.0.0-alpha5

Client Libraries

Query Service

Build Dependencies

Deployment and Management

Vitess v2.0.0-alpha5

24 Oct 05:19

Choose a tag to compare

Vitess v2.0.0-alpha5 Pre-release
Pre-release

Changes since v2.0.0-alpha4

Vitess v2.0.0-alpha4

07 Oct 02:07

Choose a tag to compare

Vitess v2.0.0-alpha4 Pre-release
Pre-release

Changes since v2.0.0-alpha3

  • Fixes for "bad node version" error when using etcd. (#1176, #1184)
  • Java client is now feature-complete.
    • The last piece was our new canonical error code translation.

Vitess v2.0.0-alpha3

03 Oct 21:02

Choose a tag to compare

Vitess v2.0.0-alpha3 Pre-release
Pre-release

Changes since v2.0.0-alpha2

  • Better PEP 0249 compliance in Python client.
  • Type-checking result cursor for Java client.
  • VTGate automatically adds annotations for filtered replication.
  • All RPC protocols are now off by default, and must be explicitly enabled with the -service_map flag.
    • Previously the BSON protocols were enabled by default, and had to be explicitly disabled in -service_map if unwanted.
  • SQL is now consistently represented as a UTF-8 string.
    • Previously it was represented in some places as a byte array.
  • Update to gRPC beta.

Vitess v2.0.0-alpha2

28 Aug 20:07

Choose a tag to compare

Vitess v2.0.0-alpha2 Pre-release
Pre-release

Changes since v2.0.0-alpha1

  • Fix for breaking API change in grpc-go (#1052).