Release Notes

Documentation

VoltDB Home » Documentation » Release Notes

Release Notes


Product

VoltDB

Version

5.5.4

Release Date

May 2, 2016

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.

Upgrading From Older Versions

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:

  1. Place the database in admin mode (using voltadmin pause).

  2. Perform a manual snapshot of the database (using voltadmin save).

  3. Shutdown the database (using voltadmin shutdown).

  4. Upgrade the VoltDB software.

  5. Restart the database (using the voltdb create action).

  6. Reload any Java stored procedures and the database schema (using the sqlcmd directives load classes and file).

  7. Restore the snapshot created in Step #2 (using voltadmin restore).

  8. Return the database to normal operations (using voltadmin resume).

Changes Since the Last Release

Users of previous versions of VoltDB should take note of the following changes that might impact their existing applications.

Important

Upgrading is strongly recommended for any customers using database replication or subqueries due to improvements made since the 5.3 release.

1. Release V5.5.4 (May 2, 2016)

1.1.

Recent improvements

The following limitations in previous versions have been resolved:

  • Previously, an UPSERT statement specifying a subset of columns would update the values of all columns in the table row. This issue has been resolved.

  • There was an edge case when using database replication (DR) where if, after DR started, a K-safe cluster stopped and recovered, then one node failed and rejoined, and finally another node on the cluster stopped, the first node would also stop. This issue has been resolved

2. Release V5.5.3 (February 16, 2016)

2.1.

Recent improvements

The following limitations in previous versions have been resolved:

  • There was an issue with database replication (DR) where, if multiple transactions generated excessively large binary logs in a short period of time (more than 2 megabytes each in under a second) DR could fail, possibly taking the database cluster with it. The symptom when this occurred was that one or more nodes would fail with a DR buffer overflow error. This issue has now been corrected.

  • There was a condition where if, after using database replication (DR) and one of the clusters stops and recovers, the cluster could fail with a ConcurrentModificationException exception. This condition was caused by the partitions used for DR changing while the cluster was down and the partition mapping from one cluster to the other being out of sync. This issue has been resolved.

  • In rare cases, a master database could report a null pointer exception and stall replication if the consumer cluster encountered a change in its topology (that is, a node failed or rejoined). A common symptom before the master cluster stalled was that it reported a series of informational messages that DR was "discarding ctrl message". This issue has been resolved.

  • Previously, attempting to disable database replication (DR) while the initial synchronization snapshot is in process could result in the database process stalling. This issue has been resolved.

  • In rare cases, frequent deletes can cause memory compaction that coincides with a simultaneous snapshot. In the past, the result was that the servers would stop processing transactions and fill the log file with multiple messages reporting "tuple count > 0 after streaming". This error has been corrected. The triggering condition, although rare, can still occur. However, now if compaction coincides with an automated snapshot (such as a command log snapshot), the snapshot is requeued. If compaction coincides with a manual snapshot, the snapshot is canceled and reported to the user. If this occurs, simply reinitiate the manual snapshot.

3. Release V5.5.2 (November 23, 2015)

3.1.

String management optimizations

Short VARCHAR and VARBINARY strings are stored inline in the database record. Longer strings are managed in a separate pool using pointers. With this release the pointers used to manage longer string values have been optimized, reducing their size from 24 bytes per string to just 8 bytes. This reduces the overall memory required for databases with long string columns. Also, for performance reasons, the memory for string pointers is managed as a pool rather than being returned to the operating system with each DELETE operation. Consequently, optimizing the pointer size reduces the overall size of the pool retained by VoltDB when large numbers of string values are deleted (for example, after a TRUNCATE TABLE statement).

3.2.

Additional improvements

The following limitations in previous versions have been resolved:

  • In earlier releases, if a replica database started but could not connect to the master database, it was possible for the replica server to eventually run out of system file descriptors, resulting in a fatal "too many open files" error. The problem has been corrected.

  • Previously, you could not use the voltadmin stop command to stop one node on a two-node cluster with K-safety=1 and network partition detection disabled. This issue has been corrected. Note, however, although this is now possible, the use of network partition detection is always recommended for K safe clusters.

4. Release V5.5.1 (August 24, 2015)

4.1.

Bug Fix

In previous releases, under certain circumstances, starting VoltDB on Macintosh OS X could result in an allocation (malloc) error and segmentation fault. This problem has been fixed.

5. Release V5.5 (August 11, 2015)

5.1.

VoltDB now checks for Transparent Huge Pages before starting

Transparent Huge Pages (THP) are a new feature in recent Linux releases (Ubuntu starting with 14.04 and RHEL 6.x) that can cause issues for memory-intensive application like VoltDB. Consequently, VoltDB will now check for THP and refuse to start if they are enabled. See the VoltDB Administrator's Guide for instructions on disabling THP.

5.2.

New import feature available for testing

VoltDB is adding a new feature that allows data to be imported automatically when the database starts, in much the same way the existing export feature lets you export data. For the initial beta release, a Kafka importer is provided. You can learn more in the combined import and export chapter of the Using VoltDB manual. Note: this feature is a beta release and should not be used for production systems.

5.3.

Updated Kafka export connector

The Kafka export connector has been updated to support the latest Kafka release, version 0.8.2. This version of Kafka significantly changes how Kafka producers work and so the properties for configuring Kafka export have changed as well. For example, the producer.type property is no longer valid. Customers currently using Kafka export may need to change their deployment files when upgrading. Please read the section on Kafka Export in the Using VoltDB manual for details.

5.4.

New Elasticsearch export connector

A new export connector is available that exports data to Elasticsearch. Elasticsearch is a full-text search service that makes it possible to search VoltDB data more flexibly and faster than using VoltDB alone. See the section on Elasticsearch export in the Using VoltDB manual for details.

5.5.

Rack-aware partitioning

K-safety increases the availability of a VoltDB database by duplicating partitions on different servers. By default, K-safety assumes all servers are distinct. However, in reality this is not always the case, for example in virtualized or hosted environments where multiple virtual servers could be running on the same hardware or on a rack sharing a power supply.

You can now provide hints to the cluster to improve the placement of duplicate partitions. The --placement-group flag to the voltdb create or recover commands lets you specify a group of names, separated by periods, that specify the location of the server process. For example:

$ voltdb create --placement-group=row5.rack3.server12 

On startup, the cluster compares the placement strings of each server to optimize the distribution of the partitions. See the voltdb command reference page for details.

5.6.

Wireshark plugin for VoltDB

A Wireshark plugin for analyzing the network connections between VoltDB servers and clients is now available from the VoltDB github repository. The plugin is provided “as is” as a courtesy to our users. See the included README for more information.

5.7.

New logarithm function

The new LN() function returns the natural logarithm of a numeric value. You can also use LOG() as a synonym for LN().

5.8.

New approximate distinct count function

A new function, APPROX_COUNT_DISTINCT(), returns an approximation of the number of distinct values for a specified column expression. APPROX_COUNT_DISTINCT(expression) can be significantly faster and use less temporary memory than the corresponding COUNT(DISTINCT expression) function, especially when aggregating values across partitions.

5.9.

Ability to use csvloader to update records

The csvloader and kafkaloader utilities let you load data from external sources into a VoltDB database. By default, these utilities use INSERT statements to import the data, assuming there are no duplicates. However, you can now have these utilities use UPSERT to update existing records (or create new records where corresponding records do not exist) by including the --update flag. To use --update you must specify a table name rather than an input procedure and the table must have a primary key. See the csvloader and kafkaloader reference pages for details.

5.10.

Ability to disable the quote character in csvloader

Another new flag for the csvloader utility is the --noquotechar tag. The --quotechar flag lets you specify the character for quoting values, which defaults to ASCII character 34, the quotation mark. The --noquotechar flag disables quoting and ensures the quotation mark is interpreted as a literal string character. Only the value separator and line delimiter then have special meaning in the input stream.

5.11.

Simplified procedure for using DR

The configuration and startup of database replication (DR) have been simplified. The listen=”true” attribute is no longer needed on the <dr> tag in the deployment file — listening is enabled by default. Also, rather than editing the deployment file and performing a voltadmin update to clear the DR buffers, there is a single command, voltadmin dr reset, that can break replication and clear any pending logs on the master database. Finally, it is now possible to change the replica database's <connection> source attribute after the database has started. These improvements are reflected in the instructions for using DR in the Using VoltDB manual.

5.12.

Improvements to the JDBC interface

A number of changes and enhancements have been made to the JDBC interface to provide additional capabilities and better conformance with other JDBC implementations. Improvements include:

  • Ability to pass Null values when using the Spring JDBC template

  • Resolved issues when compiling JDBC client applications using Java 6

  • Ability to use JDBC .getString() method on all VoltDB datatypes

  • Improved compliance for standard JDBC getInt and getLong methods

  • Better handling of multiple executeBatch statements and clearing of the batch queue

5.13.

Additional improvements

In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:

  • VoltDB client applications work with Java 6 through Java 8, but previously the open source server software could not be compiled with Java 8. This has been resolved and you can now build the VoltDB Community Edition using either Java 7 or Java 8.

  • Due to recent changes, the VoltDB New Relic plugin was producing inaccurate latency information. This issue has been resolved and an updated plugin is available for New Relic users.

  • An issue with the snapshotconverter utility in previous releases could result in rows being dropped from the output. This issue has been resolved. In addition, pre-defined CLI commands are now provided for both snapshot utilities. See the VoltDB Administrator's Guide for details.

  • Previously the VoltDB Management Center SQL Query tab would not display null values properly for floating-point columns where Null is the default value. This problem has been fixed.

  • 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.

6. Release V5.4.1 (July 28, 2015)

6.1.

Bug Fix

There were edge cases where certain SQL queries with outer joins of three or more tables could return incorrect answers. This problem has been fixed.

7. Release V5.4 (July 10, 2015)

7.1.

JDBC query timeout now settable in milliseconds

By default, query timeouts, as set by the JDBC setQueryTimeout function, are measured in seconds. However, it is now possible to define the timeout in more precise increments by changing the scale of the timeout function to milliseconds. You do this by adding the millisecond scale factor to the JDBC connection string. For example, the following code changes the timeout scale and then sets a timeout of 2500 millisecond (or 2.5 seconds):

Connection conn = DriverManager.getConnection(
    url + "?jdbc.querytimeout.unit=milliseconds");
            
Statement query = conn.createStatement();
query.setQueryTimeout(2500);

7.2.

Decimal input with more than 12 decimal places is now rounded

VoltDB supports a DECIMAL datatype with a fixed scale of 12. Previously passing a decimal value with a scale greater than 12 to VoltDB resulted in a run-time error. This behavior has changed and VoltDB now rounds values with a scale greater than 12 to the closest 12 decimal places.

7.3.

Ability to use Eclipse to debug VoltDB client applications and stored procedures

It is now possible to debug VoltDB client applications and stored procedures using Eclipse. Please see the VoltDB Github wiki for instructions.

7.4.

GROUP BY clause no longer required for views

The requirement that a view definition contain a GROUP BY clause has been removed. It is now possible to create views containing aggregate functions, such as COUNT(*) , MAX(), MIN(), and SUM() without a GROUP BY clause. See the description of the CREATE VIEW statement in the Using VoltDB manual for details.

7.5.

New MOD() function

This release adds the MOD() function, which performs a modulo operation on two integer values. The first argument is the dividend and the second is the divisor and the function returns the remainder of dividing the first by the second. For example MOD(12,5) returns the value 2. See the Using VoltDB manual for details.

7.6.

Admin Mode now supports read-only access

The behavior of Admin Mode has been changed. Previously, a database in Admin Mode rejected all requests on the client port. Now Admin Mode operates as a read-only mode for the database. All write requests on the client port are rejected, but read-only transactions (and read-only system procedures) are allowed. As before, both read-only and read/write transactions are allowed on the admin port.

7.7.

New @Statistics selector provides data on command logging

The @Statistics system procedure supports a new selector, COMMANDLOG, which returns information about the status of command logging on the database cluster. See the discussion of @Statistcs in the Using VoltDB manual for details.

7.8.

New features in the VoltDB Management Center

The web-based management tool, VoltDB Management Center, continues to be extended and enhanced. New features of the Management Center in this release include:

  1. Ability to monitor command logging through a graph and data table in the Monitor tab

  2. License information about the current cluster, available from the Help menu

  3. The ability to see a list of affected tables where database replication (DR) and export are configured in the Admin tab

7.9.

Performance improvements for database replication (DR)

Several optimizations have been applied to database replication (DR) to improve overall performance and reliability, including compression of the binary logs. Users of V5.3 are strongly encouraged to upgrade, as the current release corrects a known issue with V5.3 related to restarting DR after a system crash or maintenance window.

7.10.

Improved subquery support

Subquery support has been refined to improve reliability in a number of edge cases. Upgrading is strongly recommended for customers using subqueries in their applications.

7.11.

Change in the interpretation of DECIMAL and FLOAT constants

VoltDB now interprets numeric constants containing a decimal point but not in E notation, such as "456.123", as DECIMAL values. Previously VoltDB interpreted such constants as floating point values. This change is being made for consistency with the SQL standard and other SQL implementations. To specify a floating point constant, use E notation (e.g. "4.56123e2").

7.12.

Additional improvements

In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:

  • There was an issue in previous releases when converting TIMESTAMP values from microseconds to milliseconds (for example, using the JDBC ResultSet.getDate() or getTimestamp() functions). An incorrect answer was returned if the timestamp value was prior to the UNIX epoch and contained an even number of seconds. This issue has been resolved.

  • In VoltDB, the COUNT(*) function is optimized for performance. In previous versions, this optimization did not apply to COUNT(1), which is another common programming pattern. COUNT(1) now uses the same optimization as COUNT(*).

  • Materialized views now make better use of existing indexes to improve performance when updating view columns containing the MIN and MAX aggregate functions.

  • Under certain conditions, export would fail when exporting a table with a long name and/or many columns, because the automatically constructed signature for the export data source was too long. The symptom was an error indicating export "could not find" the export data source. This issue has been corrected.

  • There was an issue where starting the sqlcmd utility with the --query argument and redirecting output could result in the process hanging. This issue has been corrected.

8. Release V5.3 (May 26 2015)

8.1.

Additional subquery support

Previously it was possible to use subqueries in the FROM clause of a SELECT statement. Now subqueries are supported in many more situations. Scalar subqueries, which return a single value, can be used in most cases where SQL functions can be used. Non-scalar subqueries, which return multiple rows or multiple columns per row, can be used in array comparisons and in the IN and EXISTS predicates.

Subqueries are valid only in the SELECT statement. They cannot be used in other SQL statements or index definitions. Also, for the initial release of extended subquery support, only replicated tables can be used in subqueries outside of the FROM clause.

8.2.

VoltDB Management Center improvements

The VoltDB Management Center contains a number of improvements and new capabilities, including:

  • DR support — The Management Center provides new support for database replication (DR) in both the Admin and Monitor tabs. In the Admin tab you can view and modify the DR configuration of both master and replica databases. In the Monitor tab you can see performance statistics for DR, including a graph showing the replication rate on the replica and data tables on both the master and replica reporting performance and status information concerning DR.

  • Export configuration support — The Management Center now supports editing the configuration of export streams in the Admin tab.

  • SHA-256 support — The Management Center now uses SHA-256 hashing of passwords when authenticating to servers with security enabled.

8.3.

Improved performance of JDBC prepared statements and ad hoc queries with parameters

When processing ad hoc queries that use parameters and placeholders (rather than a single SQL statement as a text string), VoltDB now makes use of previously cached queries to significantly improve performance for repeated queries. This can be most notable for JDBC prepared statements that are implemented as ad hoc queries with parameters.

8.4.

SHA-256 support in python client

The python client library has been updated to support SHA-256 hashing of passwords when authenticating to servers with security enabled.

8.5.

Additional improvements

In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:

  • Starting in VoltDB 5.2, the JSON interface supported both SHA-1 and SHA-2 hashing of passwords. However, the same user could not use both SHA-1 and SHA-2 from different connections at the same time. This could happen accidentally, for example, when using direct JSON calls while also using the VoltDB Management Center, which uses the JSON interface to communicate with the server,. This issue has been corrected.

  • Previously, setting the JDBC default connection timeout to zero was supposed to disable the timeout. However, it actually set the timeout to the default of two minutes. Setting the JDBC connection timeout to zero now works properly, setting an infinite timeout.

  • Including the characters "hash" in an index name produces a hash index instead of the default tree index. Previous versions also inadvertently created hash indexes if a column identified as a primary key contained "hash" in the column name. This problem has been resolved.

  • Previously, a race condition could result in the VoltDB Management Center returning a "no connections" error if it attempted to access the server during or shortly after a change to the database schema. This problem has been resolved.

9. Release V5.2.2 (May 15 2015)

9.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.

9.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.

10. Release V5.2.1 (April 30, 2015)

10.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.

11. Release V5.2 (April 29, 2015)

11.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.

11.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.

11.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.

11.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:

  • New Idle Time graph — The Monitor tab contains a new graph, the partition idle time graph, which shows the amount of work being done by each partition on the current server. The graph plots the percentage of time each partition is idle. 100% indicates the partition is doing no work (processing no stored procedures or ad hoc queries); 0% indicates the partition is constantly in use. The graph also includes lines for the local multi-partition coordinator and the minimum and maximum idle time for the cluster as a whole.

  • Ability to change configuration settings in the Admin tab — The Admin tab now lets you change deployment settings that are configurable at runtime, including export properties, automated snapshots, security, and selected system settings. Click on the pencil icon next to a property to edit it. Note that if security is enabled, only users with the ADMIN permission are allowed to view and edit the Admin tab settings.

11.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.

11.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.

11.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.

11.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.

11.9.

Additional improvements

In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:

  • In earlier releases, the Java client library interpreted the default call timeout value incorrectly, resulting in a much longer timeout period than the expected two minutes. This problem has been corrected. It should be noted, however, that long-running procedures that completed in previous versions, may have the client timeout the call now that the default timeout period is being properly enforced. (The procedure itself may or may not complete, but the client application will not know since it no longer listens for a response after the timeout.)

  • Previously, database replication (DR) ignored the setting for the external interface on the command line (that is, the --externalinterface flag). This issue has been corrected and now the interface used for the replication port comes from, in order of priority, A.) the interface specified using the --replication command line flag, B.) the interface specified using the --externalinterface command line flag, or if neither of the preceding are specified, C.) all available interfaces.

12. 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).

12.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.

12.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.

13. Release V5.1.1 (April 12, 2015)

VoltDB 5.1.1 is a patch release that fixes an issue introduced in 5.1.

13.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.

14. 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.

14.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:

  • Significantly better performance — rather than a single replication stream, DR now occurs between multiple partitions simultaneously. Also, the new DR uses binary logs of transaction results saving the replica from having to replay the transaction.

  • No single point of failure — By eliminating the DR agent the new DR not only removes a single point of failure, it simplifies DR from an operational perspective.

  • More flexibility — You can now specify which tables you want to replicate rather than having to replicate the entire database. Of course, you can always choose to replicate all of the tables if you like.

For existing DR customers, the new capabilities and the elimination of the DR agent do necessitate some operational changes. Specifically, you must now:

  • Identify the tables participating in DR using the DR TABLE statement in the schema.

  • Configure DR in the deployment files for both the master and the replica clusters.

See the chapter on Database Replication in the Using VoltDB manual for details.

14.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.

14.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 file --batch directive in sqlcmd to batch process the DDL statements. For example:

$ 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 file --inlinebatch directive and the specified end marker. For example:

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.

14.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.

14.5.

Additional improvements

In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:

  • Previously, if a table containing data was changed to an export table, the data was lost. VoltDB no longer allows you to issue an EXPORT TABLE statement on a table with existing data.

  • In release 5.0, reconfiguring export on a running database while dropping and adding export tables could cause unpredictable export results. This issue is resolved. Export tables can be modified and export streams can be reconfigured on a running database with predictable results.

  • There was an issue with the sqlcmd command line utility where it could occasionally hang during startup and never reach the input prompt. This problem has been resolved.

  • The HTTP port and JSON interface are now enabled by default. Previously, this port was enabled in the default deployment file, but not if you used a custom deployment file. If you want to disable the HTTP port or JSON capability, you must explicitly disable them in the deployment file. For example:

    <httpd enabled="false">
        <jsonapi enabled="false"/>
    </httpd>
  • There was an issue where command logs could not be recovered if the logs included a catalog update using a catalog from a previous VoltDB version. This problem is now fixed. However, recompiling your existing catalogs is recommended whenever you update your VoltDB version.

  • Previously, there was an issue with @UpdateLogging, where spurious startup messages could flood the logs beginning the day after invoking the system procedure to update the Log4J configuration. This problem is now fixed.

  • There was an planning error where a UNION statement within a subquery could result in a null pointer exception when the statement was compiled. This problem is now fixed.

  • Another planning error resulted when compiling a SQL statement, such as SELECT, where the selection expression listed the same column twice. This problem is now fixed.

15. Release V5.0.2 (February 16, 2015)

This release contains no new features but corrects the following issues from the original 5.0 release.

15.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.

  • If the target of an INSERT INTO SELECT statement in a multi-partitioned query is an export table that is not partitioned, the planner would throw a null pointer exception (NPE).

  • If the source of the INSERT INTO SELECT statement in a multi-partitioned query (that is, the table in the SELECT subquery) is a partitioned table, then an insert into an export table may not insert all of the selected rows.

These issues have now been corrected.

15.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.

15.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.

16. Release V5.0 (January 28, 2015)

16.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:

  • Support for the DROP and ALTER statements for removing and modifying existing schema objects

  • The ability to combine the CREATE PROCEDURE and PARTITION PROCEDURE statements into a single CREATE PROCEDURE statement with a PARTITION ON clause

  • A new system procedure, @UpdateClasses, for adding and removing classes

  • Two corresponding sqlcmd directives, load classes and remove classes, perform this function from the command line

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:

  • You can return to using catalogs exclusively, by setting the schema="catalog" attribute in the deployment file.

  • You can compile the initial schema as a catalog, start the database specifying the catalog on the voltdb create command, but leave the deployment file unchanged. In this case, the database starts from the catalog, but you can use interactive DDL to modify the schema and stored procedures once the database is running.

Performance improvements for processing large schemas interactively are expected in upcoming releases.

16.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.

16.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 httpfs.enable to "true" when exporting to HttpFS servers.

16.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.

16.5.

Bug fixes

In addition to the new features listed above, VoltDB V5.0 includes fixes to several known issues:

  • Previously, there was an undocumented limit of 200 kilobytes to the size of the parameter list on the JSON interface. This limit has been extended to 2 megabytes.

Known Limitations

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.

1. Command Logging

1.1.

Changing the deployment configuration when recovering command logs, can result in unexpected settings.

There is an issue where, if the command log contains schema changes (performed through interactive DDL statements, voltadmin update, or @UpdateApplicationCatalog), when the command logs are recovered, the previous deployment file settings are used, even if an alternate deployment file is specified on the voltdb recover command line. Then, after recovering the database, a new schema update can result in the deployment settings specified on the command line taking affect.

Until this issue is resolved, the safest workaround to ensure the desired configuration is achieved is to perform the voltdb recover operation without modifying the current deployment file, then make deployment changes with the voltadmin update command after the database has started.

1.2.

Command logs can only be recovered to a cluster of the same size.

To ensure complete and accurate restoration of a database, recovery using command logs can only be performed to a cluster with the same number of unique partitions as the cluster that created the logs. If you restart and recover to the same cluster with the same deployment options, there is no problem. But if you change the deployment options for number of nodes, sites per host, or K-safety, recovery may not be possible.

For example, if a four node cluster is running with four sites per host and a K-safety value of one, the cluster has two copies of eight unique partitions (4 X 4 / 2). If one server fails, you cannot recover the command logs from the original cluster to a new cluster made up of the remaining three nodes, because the new cluster only has six unique partitions (3 X 4 / 2). You must either replace the failed server to reinstate the original hardware configuration or otherwise change the deployment options to match the number of unique partitions. (For example, increasing the site per host to eight and K-safety to two.)

1.3.

Do not use the subfolder name "segments" for the command log snapshot directory.

VoltDB reserves the subfolder "segments" under the command log directory for storing the actual command log files. Do not add, remove, or modify any files in this directory. In particular, do not set the command log snapshot directory to a subfolder "segments" of the command log directory, or else the server will hang on startup.

2. Database Replication

2.1.

Some DR data may not be delivered if master database nodes fail and rejoin in rapid succession.

Because DR data is buffered on the master database and then delivered asynchronously to the replica, there is always the danger that data does not reach the replica if a master node stops. This situation is mitigated in a K-safe environment by all copies of a partition buffering on the master cluster. Then if a sending node goes down, another node on the master database can take over sending logs to the replica. However, if multiple nodes go down and rejoin in rapid succession, it is possible that some buffered DR data — from transactions when one or more nodes were down — could be lost when another node with the last copy of that buffer also goes down.

If this occurs and the replica recognizes that some binary logs are missing, DR stops and must be restarted.

To avoid this situation, especially when cycling through nodes for maintenance purposes, the key is to ensure that all buffered DR data is transmitted before stopping the next node in the cycle. You can do this using the @Statistics system procedure to make sure the last ACKed timestamp (using @Statistitcs DR on the master cluster) is later than the timestamp when the previous node completed its rejoin operation.

3. Export

3.1.

Synchronous export in Kafka can use up all available file descriptors and crash the database.

A bug in the Apache Kafka client can result in file descriptors being allocated but not released if the producer.type attribute is set to "sync" (which is the default). The consequence is that the system eventually runs out of file descriptors and the VoltDB server process will crash.

Until this bug is fixed, use of synchronous Kafka export is not recommended. The workaround is to set the Kafka producer.type attribute to "async" using the VoltDB export properties.

4. Import

4.1.

The import function is a software preview. Do not use in production.

The new import feature is a beta release intended to demonstrate upcoming capabilities. However, it is not yet fully integrated with other VoltDB capabilities. As a result, there are situations that can result in broken or incomplete import. For example, any schema changes or cluster topology changes (such as adding or rejoining nodes) can result in certain Kafka topics not being read. Similarly, if import starts before the specified input procedure is loaded and defined, data may be read from Kafka but fail to be inserted into the VoltDB database.

These limitations will be corrected in future releases. In the meantime, the recommended procedures for customers interested in testing the import function are:

  • Start the database with the import configuration set to enabled="false". Then, once the schema — including all stored procedures — is loaded, use the voltadmin update command to change the deployment file and enable the import configuration.

  • When making schema changes to a database with import enabled, use the voltadmin update command to disable import before the schema change and re-enable import after the change.

  • Similarly, if a node fails in a K-safe cluster, be sure to disable import before rejoining the node, then re-enable import once the rejoin operation is complete.

5. SQL and Stored Procedures

5.1.

Comments containing unmatched single quotes in multi-line statements can produce unexpected results.

When entering a multi-line statement at the sqlcmd prompt, if a line ends in a comment (indicated by two hyphens) and the comment contains an unmatched single quote character, the following lines of input are not interpreted correctly. Specifically, the comment is incorrectly interpreted as continuing until the next single quote character or a closing semi-colon is read. This is most likely to happen when reading in a schema file containing comments. This issue is specific to the sqlcmd utility.

A fix for this condition is planned for an upcoming point release

5.2.

Do not use assertions in VoltDB stored procedures.

VoltDB currently intercepts assertions as part of its handling of stored procedures. Attempts to use assertions in stored procedures for debugging or to find programmatic errors will not work as expected.

5.3.

The UPPER() and LOWER() functions currently convert ASCII characters only.

The UPPER() and LOWER() functions return a string converted to all uppercase or all lowercase letters, respectively. However, for the initial release, these functions only operate on characters in the ASCII character set. Other case-sensitive UTF-8 characters in the string are returned unchanged. Support for all case-sensitive UTF-8 characters will be included in a future release.

6. Client Interfaces

6.1.

Avoid using decimal datatypes with the C++ client interface on 32-bit platforms.

There is a problem with how the math library used to build the C++ client library handles large decimal values on 32-bit operating systems. As a result, the C++ library cannot serialize and pass Decimal datatypes reliably on these systems.

Note that the C++ client interface can send and receive Decimal values properly on 64-bit platforms.

7. Enterprise Manager

Important

The VoltDB Enterprise Manager is deprecated. It is supported for existing customers but is not recommended for new deployments and will be removed in a future release. The VoltDB Management Center, which has improved and extended management and monitoring capabilities built directly into the VoltDB database server, is the recommended replacement for the Enterprise Manager. See the Administrator's Guide for more information on the VoltDB Management Center.

7.1.

Manual snapshots not copied to the Management Server properly.

Normally, manual snapshots (those created with the Take a Snapshot button) are copied to the management server. However, if automated snapshots are also being created and copied to the management server, it is possible for an automated snapshot to override the manual snapshot.

If this happens, the workaround is to turn off automated snapshots (and their copying) temporarily. To do this, uncheck the box for copying snapshots, set the frequency to zero, and click OK. Then re-open the Edit Snapshots dialog and take the manual snapshot. Once the snapshot is complete and copied to the management server (that is, the manual snapshot appears in the list on the dialog box), you can re-enable copying and automated snapshots.

7.2.

Old versions of Enterprise Manager files are not deleted from the /tmp directory

When the Enterprise Manager starts, it unpacks files that the web server uses into a subfolder of the /tmp directory. It does not delete these files when it stops. Under normal operation, this is not a problem. However, if you upgrade to a new version of the Enterprise Edition, files for the new version become intermixed with the older files and can result in the Enterprise Manager starting databases using the wrong version of VoltDB. To avoid this situation, make sure these temporary files are deleted before starting a new version of VoltDB Enterprise Manager.

The /tmp directory is emptied every time the server reboots. So the simplest workaround is to reboot your management server after you upgrade VoltDB. Alternately, you can delete these temporary files manually by deleting the winstone subfolders in the /tmp directory:

$ rm -vr /tmp/winstone*

7.3.

Enterprise Manager configuration files are not upwardly compatible.

When upgrading VoltDB Enterprise Edition, please note that the configuration files for the Enterprise Manager are not upwardly compatible. New product features may make existing database and/or deployment definitions unusable. It is always a good idea to delete existing configuration information before upgrading. You can delete the configuration files by deleting the ~/.voltdb directory. For example:

$ rm -vr ~/.voltdb

7.4.

Enterprise Manager cannot start two databases on the same server.

In the past, it was possible to run two (or more) databases on a single physical server by defining two logical servers with the same IP address and making the ports for each database unique. However, as a result of internal optimizations introduced in VoltDB 2.7, this technique no longer works when using the Enterprise Manager.

We expect to correct this limitation in a future release. Note that it is still possible to start multiple databases on a single server manually using the VoltDB shell commands.

7.5.

The Enterprise Manager cannot start or manage a replica database for database replication.

Starting with VoltDB 5.1, database replication (DR) has changed and the VoltDB Enterprise Manager can no longer correctly configure, start or manage a replica database. The recommended method is to start the database manually and use the builtin VoltDB Management Center to manage the database by connecting to the cluster nodes directly on the HTTP port (8080 by default).

Implementation Notes

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.

1. VoltDB Management Center

1.1.

Schema updates clear the stored procedure data table in the Management Center Monitor section

Any time the database schema or stored procedures are changed, the data table showing stored procedure statistics at the bottom of the Monitor section of the VOltDB Management Center get reset. As soon as new invocations of the stored procedures occur, the statistics table will show new values based on performance after the schema update. Until invocations occur, the procedure table is blank.

2. SQL

2.1.

You cannot partition a table on a column defined as ASSUMEUNIQUE.

The ASSUMEUNIQUE attribute is designed for identifying columns in partitioned tables where the column values are known to be unique but the table is not partitioned on that column, so VoltDB cannot verify complete uniqueness across the database. Using interactive DDL, you can create a table with a column marked as ASSUMEUNIQUE, but if you try to partition the table on the ASSUMEUNIQUE column, you receive an error. The solution is to drop and add the column using the UNIQUE attribute instead of ASSUMEUNIQUE.

2.2.

Adding or dropping column constraints (UNIQUE or ASSUMEUNIQUE) is not supported by the ALTER TABLE ALTER COLUMN statement.

You cannot add or remove a column constraint such as UNIQUE or ASSUMEUNIQUE using the ALTER TABLE ALTER COLUMN statement. Instead to add or remove such constraints, you must first drop then add the modified column. For example:

ALTER TABLE employee DROP COLUMN empID;
ALTER TABLE employee ADD COLUMN empID INTEGER UNIQUE;

2.3.

Do not use UPDATE to change the value of a partitioning column

For partitioned tables, the value of the column used to partition the table determines what partition the row belongs to. If you use UPDATE to change this value and the new value belongs in a different partition, the UPDATE request will fail and the stored procedure will be rolled back.

Updating the partition column value may or may not cause the record to be repartitioned (depending on the old and new values). However, since you cannot determine if the update will succeed or fail, you should not use UPDATE to change the value of partitioning columns.

The workaround, if you must change the value of the partitioning column, is to use both a DELETE and an INSERT statement to explicitly remove and then re-insert the desired rows.

2.4.

Certain SQL syntax errors result in the error message "user lacks privilege or object not found" when compiling the runtime catalog.

If you refer to a table or column name that does not exist, the VoltDB compiler issues the error message "user lacks privilege or object not found". This can happen, for example, if you misspell a table or column name.

Another situation where this occurs is if you mistakenly use double quotation marks to enclose a string literal (such as WHERE ColumnA="True"). ANSI SQL requires single quotes for string literals and reserves double quotes for object names. In the preceding example, VoltDB interprets "True" as an object name, cannot resolve it, and issues the "user lacks privilege" error.

The workaround is, if you receive this error, to look for misspelled table or columns names or string literals delimited by double quotes in the offending SQL statement.

3. Runtime

3.1.

File Descriptor Limits

VoltDB opens a file descriptor for every client connection to the database. In normal operation, this use of file descriptors is transparent to the user. However, if there are an inordinate number of concurrent client connections, or clients open and close many connections in rapid succession, it is possible for VoltDB to exceed the process limit on file descriptors. When this happens, new connections may be rejected or other disk-based activities (such as snapshotting) may be disrupted.

In environments where there are likely to be an extremely large number of connections, you should consider increasing the operating system's per-process limit on file descriptors.

3.2.

Protecting VoltDB Against Port Scanners

VoltDB uses a number of different ports for interprocess communication as well as features such as HTTP access, DR, and so on. Port scanning software often interferes with normal operation of such ports by sending bogus data to them in an attempt to identify open ports.

VoltDB has hardened its port usage to ignore unexpected or irrelevant data from port scanners. However, the ports used for Database Replication (DR) cannot be protected in this way. So, in V4.6, a Java property was introduced to allow you to disable the DR ports, for situations where port scanning cannot be avoided. To disable the DR ports, set the Java property VOLTDB_DISABLE_DR to true before starting the database process. For example:

$ export VOLTDB_OPTS="-DVOLTDB_DISABLE_DR=true"
$ voltdb create myapplication.jar \
                --deployment=deployment.xml \
                --host=voltsvr1

Note that, if you disable the DR ports, you cannot use the database as a master for database replication.