VoltDB
5.2.12
March 9, 2018
This document provides information about known issues and limitations to the current release of VoltDB. If you encounter any problems not listed below, please be sure to report them to [email protected]. Thank you.
For customers upgrading from pre-5.0 releases of VoltDB, please see the V4.0 Upgrade Notes for special considerations when upgrading from previous major versions. Otherwise, the process for upgrading from a previous version of VoltDB is as follows:
Place the database in admin mode (using voltadmin pause).
Perform a manual snapshot of the database (using voltadmin save).
Shutdown the database (using voltadmin shutdown).
Upgrade the VoltDB software.
Restart the database (using the voltdb create action).
Reload any Java stored procedures and the database schema (using the sqlcmd directives load classes and file).
Restore the snapshot created in Step #2 (using voltadmin restore).
Return the database to normal operations (using voltadmin resume).
Users of previous versions of VoltDB should take note of the following changes that might impact their existing applications.
1. Release V5.2.12 (March 9, 2018) | |
1.1. | Recent improvements |
The following limitations in previous versions have been resolved:
| |
2. Release V5.2.11 (August 28, 2016) | |
The following issue is fixed in this release. | |
2.1. | Eliminate delay when promoting a replica cluster |
Previously, promoting a replica cluster to a fully operational read/write database could require a noticeable delay. In the worst case, the promote operation could take minutes to complete. This delay has been eliminated and the promote action should now complete within a second or two. | |
3. Release V5.2.10 (August 25, 2016) | |
3.1. | Recent improvements |
The following limitations in previous versions have been resolved:
| |
4. Release V5.2.9 (March 10, 2016) | |
4.1. | Recent improvements |
The following limitations in previous versions have been resolved:
| |
5. Release V5.2.8 (December 10, 2015) | |
The following issue is fixed in this release. | |
5.1. | COUNT(DISTINCT column ) of an inline VARCHAR column could result in an error, node failure, or incorrect answer |
Previously, if a query attempts to return a distinct count of an inline VARCHAR column, it could result in either an error that caused the database process to stop or an incorrect result. VARCHAR columns are stored inline if they are declared as having less than 64 bytes; such as VARCHAR(63 BYTES) or VARCHAR(15). This problem has been corrected. | |
6. Release V5.2.7 (October 20, 2015) | |
6.1. | Rejoin failure due to clock skew causes subsequent rejoins and snapshots to fail |
Previously, if a rejoin operation failed due to the difference in clock time between nodes exceeding the allowable limit (100 milliseconds), any subsequent attempt to rejoin a node or generate a snapshot would fail as well. This problem has been corrected. | |
7. Release V5.2.6 (August 28, 2015) | |
7.1. | Bug Fixes |
| |
8. Release V5.2.5 (August 5, 2015) | |
8.1. | Unable to recover DR replica |
There was an issue where, under certain conditions, attempting to recover a promoted replica from command logs would fail, reporting the fatal error "Haven't implemented more than one DC yet". This problem is now fixed. | |
9. Release V5.2.4 (June 26, 2015) | |
9.1. | Improved memory management for snapshot processing |
Changes have been made to improve memory utilization during snapshot processing. | |
9.2. | Race condition in DR buffer management |
There was a race condition associated with database replication (DR) buffer management that could, in rare cases, cause a segmentation fault. This problem has been fixed. | |
10. Release V5.2.3 (June 9, 2015) | |
10.1. | Change to VoltDB overflow file handling |
The handling of disk I/O for overflow data, such as database replication (DR) and export, has been changed to use standard Java non-blocking file I/O. This change allows VoltDB to better catch and report unusual conditions such as when a disk becomes full or goes offline unexpectedly. | |
11. Release V5.2.2 (May 15 2015) | |
11.1. | Excessive memory use when overflowing queued export or DR data corrected |
There was in issue in earlier releases where, if the target of export or database replication (DR) stalled, the sending cluster buffers queued data to disk. However, this did not properly free the associated memory; and so memory usage would increase. It was possible, if the service buffered data to disk for an extended period of time, that the server process could run out of memory. This issue has been resolved and memory associated with data buffered to disk is released appropriately. Note however, that even if excessive memory usage is no longer a problem, you should always try to resolve issues with stalled downstream systems when using export or DR because buffered data could eventually exceed disk storage capacity. | |
11.2. | New C++ client supports SHA-256 hashing |
The C++ client library has been updated to support SHA-256 hashing of passwords when authenticating to servers with security enabled. By default, the client supports past and present server versions by using SHA-1 hashing. However, when connecting to VoltDB 5.2 and later servers, you can use SHA-256 hashing by specifying the hash type in the client configuration. For example: voltdb::ClientConfig config("myusername", "mypassword", voltdb::HASH_SHA256); voltdb::Client client = voltdb::Client::create(config); Now both the Java and C++ client libraries support SHA-256 hashing. The new C++ client is available from the VoltDB client downloads page. | |
12. Release V5.2.1 (April 30, 2015) | |
12.1. | Support for SHA-2 in the voltdb mask command |
VoltDB 5.2 introduced use of SHA-2 hashing for authentication. This release brings the voltdb mask function up to date with the new authentication scheme. For customers using the mask function, be sure to re-hash your deployment file using the 5.2.1 voltdb mask command and use the newly hashed deployment file when starting the database to ensure all command utilities can authenticate properly. | |
13. Release V5.2 (April 29, 2015) | |
13.1. | Ability for database replication (DR) to resume across cluster outages |
Previously, database replication (DR) was able to continue despite individual node failures (in a K-safe environment). However failure of either the master or replica cluster would force a restart of DR. Beginning with 5.2, DR can resume across cluster failures when either the master or replica is recovered from command logs. See the chapter on "Database Replication" in the Using VoltDB manual for details. | |
13.2. | Secure export to Hadoop using Kerberos |
The HTTP export connector now supports the use of Kerberos authentication when exporting to a WebHDFS endpoint that is configured to use Kerberos. See the section on using the HTTP export connector in the Using VoltDB manual for details. | |
13.3. | Support for partial indexes |
VoltDB now supports partial indexes. That is, the index definition can contain a WHERE clause limiting the rows that are included in the index. For example: CREATE INDEX completed_tasks ON tasks (task_id, startdate, enddate) WHERE enddate IS NOT NULL; For the initial release of partial indexes, there are certain limitations on when and where such indexes and the tables associated with them can be modified. For now, you cannot use the ALTER TABLE statement to modify a table with a partial index. This limitation is expected to be relaxed in a future release. | |
13.4. | New VoltDB Management Center features |
The Management Center, VoltDB's web-based management console, continues to be extended and improved. This release contains two major new features:
| |
13.5. | New bitwise functions |
VoltDB now supports several new functions for performing bitwise operations on BIGINT values. The new functions support standard binary operands such as AND, OR, XOR, and NOT as well as bit shifting operations. See the reference pages for the BITAND(), BITNOT(), BITOR(), BITXOR(), BIT_SHIFT_LEFT(), and BIT_SHIFT_RIGHT() functions in the Using VoltDB manual for details. | |
13.6. | New HEX() function |
Another new function, HEX(), converts a BIGINT value into its hexadecimal representation as a string. See the reference page for the HEX() function in the Using VoltDB manual for details. | |
13.7. | Support for SHA-2 |
VoltDB now supports SHA-2 hashing of credentials between the Java and c++ client libraries and the server. When you pass a username and password, the updated client library uses a SHA-2 hash of the credentials. On the server side, the VoltDB server accepts both SHA-1 (sent by previous versions of the client) and SHA-2. So both current and previous versions of the client libraries continue to work with the latest server release. | |
13.8. | New voltadmin command to stop individual servers |
The VoltDB command line utility, voltadmin, now supports the stop command. The voltadmin stop command stops the VoltDB server process on the specified node. Note that the stop command can only be used on a K-safe cluster and will not intentionally shutdown the database. That is, the command will only stop a node if there are enough nodes left for the cluster to remain viable. | |
13.9. | Additional improvements |
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
| |
14. Release V5.1.2 (April 16, 2015) | |
VoltDB 5.1.2 is a patch release that provides performance and stability improvements for Database Replication (DR). | |
14.1. | Improved performance for initial DR snapshot. |
When database replication starts, a snapshot is sent from the master database to the replica. In this release several I/O improvements have been made to improve the performance and reliability of the initial DR snapshot. | |
14.2. | Improved management of DR buffers |
There was an issue with how multiple buffers were grouped and managed in DR, which could result in decreased replication throughput. This issue has been resolved. | |
15. Release V5.1.1 (April 12, 2015) | |
VoltDB 5.1.1 is a patch release that fixes an issue introduced in 5.1. | |
15.1. | Bug fix: Excessive CPU usage on idle database |
Changes in VoltDB 5.1 introduced a process that, when the database was idle, would "spin" making it appear that the database was consuming significant CPU cycles. When the database was active processing queries, the CPU usage would drop to normal levels. Although not dangerous, this behavior was misleading and is corrected by the current update. | |
16. Release V5.1 (March 22, 2015) | |
VoltDB 5.1 introduces several significant new features and enhancements. Existing customers should pay close attention to the following notes to see what if any changes they may want to make to their applications and/or operations to take advantage of the new capabilities. | |
16.1. | New implementation of Database Replication (DR) |
Database Replication (DR) lets you automatically copy updates to database tables from one database (the master) to another (the replica). Starting with VoltDB 5.1, DR has been rewritten to remove any single point of failure, improve performance, and allow new capabilities in the future. New features include:
For existing DR customers, the new capabilities and the elimination of the DR agent do necessitate some operational changes. Specifically, you must now:
See the chapter on Database Replication in the Using VoltDB manual for details. | |
16.2. | Ability to export data to multiple streams |
VoltDB now allows you to export data to more than one target at a time. By assigning export tables to individual streams and then configuring each stream separately in the deployment file, you can export data to multiple targets simultaneously. For example, you might export deduped sensor data to Hadoop once it has been processed and export alerts regarding unusual events to HTTP for distribution via SMS, email, or other notification service. See the chapter on exporting live data in the Using VoltDB manual for details. Use of multiple streams does require additional information in the schema and the deployment file. For example, the EXPORT TABLE statement now requires a TO STREAM clause so you can specify the stream to which each export table is directed. However, for backwards compatibility, the old syntax is still supported temporarily to allow customers time to migrate existing applications at their convenience. | |
16.3. | Batch processing of interactive DDL statements |
VoltDB 5.0 introduced interactive DDL, eliminating the need for a precompiled application catalog. However,
large schema could take a significant time to process interactively. VoltDB 5.1 solves this problem by allowing you
to batch DDL statements. If you have your DDL statements in a single file, you can use the $ sqlcmd
1> file --batch myschema.sql; If you have a mix of DDL (data definition language) statements and DML (data manipulation language) and
directives you can batch process only the DDL statements by enclosing them in a load classes myprocs.jar; file --inlinebatch END_OF_BATCH CREATE PROCEDURE FROM CLASS procs.AddEmp; CREATE PROCEDURE FROM CLASS procs.ChangeDept; PARTITION PROCEDURE AddEmp ON TABLE emp COLUMN empid; PARTITION PROCEDURE ChangeDept ON TABLE emp COLUMN empid; END_OF_BATCH Batch processing DDL statements can speed up the processing of those statements by a factor of 10 or more, depending on the number and complexity of the statements and the size of the cluster. | |
16.4. | New Administrative features in VoltDB Management Center |
VoltDB Management Center, the web-based console for managing and monitoring a VoltDB database, now has a tab for administrative functions. On the Admin tab, you can pause and resume the database, save and restore snapshots, as well as review and update the database configuration. If security is enabled for the database, only users with the ADMIN permission can see and use the Admin tab in the Management Center. | |
16.5. | Additional improvements |
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
| |
17. Release V5.0.2 (February 16, 2015) | |
This release contains no new features but corrects the following issues from the original 5.0 release. | |
17.1. | Issues related to using INSERT INTO SELECT with export tables |
There was an issue in earlier releases where using an INSERT INTO SELECT statement with an export table as the target for the insert either generated a null pointer exception or did not insert the expected data into the export stream. The issue only applies to INSERT INTO SELECT as an ad hoc query or within a multi-partitioned stored procedure.
These issues have now been corrected. | |
17.2. | Database failure when reporting long-running queries |
There was an issue in previous versions (starting with VoltDB 4.8), where if a query runs for a significant amount of time, VoltDB attempts to log a warning. However, the warning generates an error (index out of bounds) and stops the database. This issue is now fixed. | |
17.3. | Lines starting with "file" in sqlcmd incorrectly interpreted as a file directive. |
In the original 5.0 release, any sqlcmd input line beginning with "file" (regardless of upper or lowercase) was interpreted as a file directive, even in the middle of a multi-line statement. This would happen, for example, if a CREATE TABLE statement included a column name starting with "file": CREATE TABLE archive (
ID INTEGER,
Directory VARCHAR(128),
Filename VARCHAR(128)
); This usually resulted in several errors and the intended statement not being interpreted correctly. This issue is now fixed. | |
18. Release V5.0 (January 28, 2015) | |
18.1. | Interactive DDL |
The major new feature in VoltDB 5.0 is the ability to enter data definition language (DDL) statements interactively. For example, using sqlcmd on the command line or the VoltDB Management Center SQL Query interface. This makes the process of creating a database and defining the schema more flexible. As part of the support for interactive DDL, the following features have been added:
Pleased note that processing DDL interactively can take longer than compiling an application catalog all at once. This is most noticeable when processing a large schema and especially on a multi-node cluster (where each change must be coordinated among the servers). If you find entering DDL interactively too slow, it is possible to revert to precompiling the schema before starting the database. You have two choices:
Performance improvements for processing large schemas interactively are expected in upcoming releases. | |
18.2. | Ability to "trim" rows using LIMIT PARTITION ROWS EXECUTE |
The LIMIT PARTITION ROWS constraint now supports an EXECUTE clause that lets you specify a DELETE statement that is executed when the constraint value is exceeded. The EXECUTE clause gives you the ability to automatically "prune" older data when the constraint is reached. See the description of the CREATE TABLE statement in the Using VoltDB manual for details. | |
18.3. | Support for HttpFS targets in Hadoop export |
The HTTP connector, now supports Apache HttpFS (Hadoop HDFS over HTTP) servers as a target when exporting
using the WebHDFS protocol. Set the export property | |
18.4. | Addition of the ORDER BY clause to the DELETE statement |
It is now possible to use the ORDER BY clause with LIMIT and/or OFFSET when performing a DELETE operation. ORDER BY allows you to more selectively remove database rows. For example, the following DELETE query removes the five oldest records, based on a timestamp column: DELETE FROM events ORDER BY event_time ASC LIMIT 5; Note that DELETE queries that include the ORDER BY clause must be single-partitioned and the ORDER BY clause must be deterministic. See the description of the DELETE statement in the Using VoltDB manual for details. | |
18.5. | Bug fixes |
In addition to the new features listed above, VoltDB V5.0 includes fixes to several known issues:
|
The following are known limitations to the current release of VoltDB. Workarounds are suggested where applicable. However, it is important to note that these limitations are considered temporary and are likely to be corrected in future releases of the product.
The following notes provide details concerning how certain VoltDB features operate. The behavior is not considered incorrect. However, this information can be important when using specific components of the VoltDB product.