VoltDB
7.8.3
January 4, 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 support@voltdb.com. Thank you.
The process for upgrading from the recent versions of VoltDB is as follows:
Shutdown the database, creating a final snapshot (using voltadmin shutdown --save).
Upgrade the VoltDB software.
Restart the database (using voltdb start).
For DR clusters, see the section on "Upgrading VoltDB Software" in the VoltDB Administrator's Guide for more special considerations related to DR upgrades.
Support for upgrading using shutdown --save was only added in V6.8. If you are upgrading from older versions of VoltDB, you will need to save and restore the snapshot manually. The procedure to do that is as follows:
Place the database in admin mode (using voltadmin pause).
Perform a manual snapshot of the database (using voltadmin save --blocking).
Shutdown the database (using voltadmin shutdown).
Upgrade the VoltDB software.
Initialize a new database root directory (using the voltdb init --force action).
Start the database in admin mode (using the voltdb start --pause action).
Restore the snapshot created in Step #2 (using voltadmin restore).
Return the database to normal operations (using voltadmin resume).
For customers upgrading from V6.x or earlier releases of VoltDB, please see the V6.0 Upgrade Notes.
For customers upgrading from V5.x or earlier releases of VoltDB, please see the V5.0 Upgrade Notes.
For customers upgrading from V4.x or earlier releases of VoltDB, please see the V4.0 Upgrade Notes.
Users of previous versions of VoltDB should take note of the following changes that might impact their existing applications.
1. Release V7.8.3 (January 4, 2018) | ||||
1.1. | Recent improvement | |||
The following limitation in previous versions has been resolved:
| ||||
2. Release V7.8.2 (November 16, 2017) | ||||
2.1. | More support for Kerberos authentication | |||
Support for Kerberos authentication has been added to both the csvloader utility and the VoltDB JDBC interface. See the description of Kerberos security in the Using VoltDB manual for details. | ||||
2.2. | Recent improvements | |||
The following limitations in previous versions have been resolved:
| ||||
3. Release V7.8.1 (November 3, 2017) | ||||
V7.8.1 is the official release of the 7.8 product for the VoltDB Enterprise Edition. Both Enterprise and Community kits for 7.8.1 are available from the VoltDB website. | ||||
3.1. | Recent improvements | |||
The following limitation in previous versions has been resolved:
| ||||
4. Release V7.8 (October 23, 2017) | ||||
4.1. | New features added to the VoltDB open source software | |||
With this release, a number of features associated with durability, high availability, and integration have been added to the open source, or community edition, of VoltDB. These features include:
See the chapters on using snapshots for durability, K-safety for high availability and import and export in the Using VoltDB manual for more information about these features. Pre-compiled kits of the new, expanded community edition are now available from the VoltDB web site. | ||||
4.2. | Automatic restoration of database snapshots | |||
Starting with this release, if command logging is not enabled and there is at least one snapshot in the database snapshots folder, the voltdb start command will restore the most recent snapshot. This is a change in behavior that affects both the commercial and community versions of VoltDB. Command logging is the most complete approach to durability. However, if command logging is not in use, this change means that VoltDB now provides automated data durability across database sessions back to the most recent save, whether that is from a manual snapshot (to the default location), an automated snapshot or a shutdown snapshot. See the description of saving and restoring snapshots in the Using VoltDB manual for details. | ||||
4.3. | Support for elastically expanding DR clusters | |||
VoltDB now supports adding nodes "on the fly" to database replication (DR) clusters. Support for elastic scaling, through the voltdb start --add command, applies to all DR clusters — including master, replica, and XDCR clusters. Each cluster can be expanded independently, regardless of the size or status of the associated clusters in the DR environment. | ||||
4.4. | Security Notice | |||
The following changes have been made to improve security and eliminate potential threats:
| ||||
4.5. | Additional improvements | |||
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
| ||||
5. Release V7.7 (October 2, 2017) | ||||
5.1. | Support for multiple SQL statements in simple stored procedures | |||
Simple stored procedures are stored procedures that can be declared as individual SQL statements without any further processing. They are declared using the CREATE PROCEDURE AS statement. You can now create simple procedures with multiple SQL statements by enclosing the statements in a BEGIN-END clause. For example: CREATE PROCEDURE ReadyToShip AS BEGIN INSERT INTO shipments SELECT order_num, item, customer FROM orders WHERE item=?; SELECT COUNT(*) FROM shipments; END; See the description of the CREATE PROCEDURE AS statement in the Using VoltDB manual for details. | ||||
5.2. | Enhancements to the Analysis tab in VoltDB Management Center | |||
The Analysis tab, which was added to the web-based VoltDB Management Center in 7.6, has been extended and now provides analysis of both procedure execution and table storage. Within the Analysis tab, after running the data gathering, you can choose between Data and Procedures to view statistics regarding the distribution of the tables and the execution of stored procedures. | ||||
5.3. | New and improved Go client | |||
The VoltDB Go client has been revised to significantly improve performance, remove known defects and keep up to date with advances in the Go language. A description of the changes are available on the VoltDB website. | ||||
5.4. | New fraud detection example application | |||
The VoltDB software kit includes a new sample application. The Fraud Detection example application
demonstrates how easy it is to integrate Apache Kafka and VoltDB to create a fast data pipeline with data analysis
and reporting. See the README in the | ||||
5.5. | Improved performance for distributed tasks within VoltDB | |||
Recent enhancements to VoltDB improve the overall performance of certain distributed tasks. Specifically, concurrent read-only multi-partition stored procedures execute more rapidly due to better distribution of the procedures among the execution sites on each server. | ||||
5.6. | Enhanced voltadmin status command | |||
The voltadmin utility has been enhanced to use a topology-aware client interface when providing ongoing cluster status. This means that when using the voltadmin status command to monitor a K-safe cluster, the voltadmin connection is maintained even if the database server to which the command was initially submitted fails. | ||||
5.7. | Deprecation notice | |||
Over the next few releases, certain older, obsolete, or unused features of VoltDB will be deprecated. This means that the feature, although still operational, is no longer recommended for use and may be removed from the product in some future major release. For example, recent performance work has minimized the speed difference between "safe" and "fast" consistency modes, if not eliminating it entirely. As a result, the "fast" option is being deprecated and will be removed in a future release. Note that this change requires no modifications to customer applications and is transparent to users. | ||||
5.8. | Security Notice | |||
No security changes in this release. | ||||
5.9. | Additional improvements | |||
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
| ||||
6. Release V7.6.1 (September 26, 2017) | ||||
The following issue has been corrected: | ||||
6.1. | Race condition interferes with schema updates and statistics reporting | |||
Since VoltDB 7.1, there has been a race condition triggered by frequent schema changes (including updates to stored procedure classes or configuration options). The schema update could conflict with the gathering of database statistics, resulting in a number of different symptoms, including:
This issue has been resolved. | ||||
7. Release V7.6 (August 28, 2017) | ||||
7.1. | User-defined functions | |||
It is now possible to define your own functions for use in SQL queries and data manipulation statements. User-defined functions are written as Java methods, which are then declared using the CREATE FUNCTION statement: CREATE FUNCTION season FROM METHOD myapp.calendar.DateToSeason; See the chapter on "Creating Custom SQL Functions" in the VoltDB Guide to Performance and Customization for details. | ||||
7.2. | Data loading utilities stay connected | |||
VoltDB has a number of utilities for loading data from external sources — CSV files, JDBC databases, and Kafka streams — as well as a generic bulk loader API for creating your own loading utility. Previously, if the loaders lost contact with all of the servers in the VoltDB cluster, the loading process would stop. Now, the utilities will wait, periodically retrying the connection, until the VoltDB cluster becomes accessible again. This new behavior makes the loaders more resilient to failure, both of the external source and the VoltDB
database. However, if you wish to revert to the previous behavior, you can add the
| ||||
7.3. | Better mechanism for specifying delimiters in the file export configuration | |||
It is possible to export files with different delimiters than the standard comma-separated delimiters using
the file export connector. However, it has been difficult to use certain non-standard characters in the past due to
the way the XML configuration option for the Now, special and non-printing characters should be entered as Java string literals. For example, the new line character can be entered as "\n". Also any XML special characters, such as ampersand and greater-than, should be encoded as HTML entities. See the section on the "File Export Connector" in the Using VoltDB manual for details. | ||||
7.4. | Improved visibility of continuation lines in sqlcmd interface | |||
The sqlcmd utility lets you continue SQL statements across multiple lines and the statement is not processed until you enter the closing semi-colon and press return. However, previously there was no indication that the utility was still waiting for more of the statement. Now the utility indents the command line prompt to show when it is still waiting for more input. For example: $ sqlcmd 1> SELECT o.order_id, o.item, c.customer_id 2> FROM orders as o,customers as c 3> WHERE c.customer_id = o.customer_id 4> AND o.ship_date > NOW(); 5> | ||||
7.5. | Enhanced logging of schema changes | |||
All changes to the database schema and/or the configuration are now recorded in the log file. The log records the time of the change, as well as the username and IP address of the person who changed it. | ||||
7.6. | New analysis tab in VoltDB Management Center | |||
The web-based VoltDB Management Center has a new tab, Analysis, that lets you analyze the performance of a running database. The Analysis tab takes a snapshot of run-time database performance and provides several views of how the stored procedures are performing, including average execution time, frequency, and the total impact (that is, frequency times execution time. By clicking on a specific stored procedure, you can see further details on each statement within the procedure. | ||||
7.7. | Further improvements to the performance of schema updates | |||
Over the past few releases, significant effort has been focused on reducing the performance impact of database modifications, such as schema changes, loading and unloading stored procedure classes, and modifying the database configuration. In particular, this release minimizes the amount of time transactions must wait while the changes are actually applied across the cluster. | ||||
7.8. | Security Notice | |||
The following changes have been made to improve security and eliminate potential threats:
| ||||
7.9. | Additional improvements | |||
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
| ||||
8. Release V7.5 (July 28, 2017) | ||||
8.1. | Support for Java boxed datatypes | |||
Java boxed datatypes such as Short, Integer, and Long are now supported as input to stored procedures. Previously, only primitive datatypes were supported. Using boxed types, you can pass Java null values directly to VoltDB and have them interpreted correctly. | ||||
8.2. | New functions to convert between radians and degrees | |||
Two new SQL functions have been added, RADIANS() and DEGREES(), that let you convert floating-point values between radians and degrees. | ||||
8.3. | Improvements to offset tracking for the kafkaloader utility and Kafka import | |||
The kafkaloader utility and built-in Kafka importer have been modified to improve the tracking of the current offset between Kafka and VoltDB. By default, these features now use a manual commit policy to ensure the current offset in the Kafka message queue matches the records successfully inserted into the VoltDB database, rather than tracking just what messages have been successfully read from Kafka. You can, if you wish, revert to an automatic commit policy by setting the appropriate property in the command line argument or import configuration. | ||||
8.4. | Support for SSL and Kafka 0.10.2 | |||
Kafka 0.10.2 supports secure socket layer (SSL) encryption. Using the 0.10.2 version of the kafkaloader
utility (kafkaloader10), you can connect to SSL-secured Kafka brokers by putting the appropriate SSL properties
in the Kafka configuration file specified in the security.protocol=SSL ssl.truststore.location=/Home/jdoe/mytruststore.jks ssl.truststore.password=mytrustpasswd ssl.keystore.location=/Home/jdoe/mykeystore.jks ssl.keystore.password=mykeypasswd ssl.key.password=passwd | ||||
8.5. | Ability to write Kafka messages to two or more tables | |||
The Kafka import connector is now capable of writing messages from a single topic to multiple tables, without requiring a custom insert procedure. If you create two configurations with the same Kafka topic ID but different group IDs, you can have a single topic written to two different tables. For example, the following configuration writes records from the Kafka employees topic to both the EMP and MGR tables. <import> <configuration type="kafka" enabled="true"> <property name="topics">employees</property> <property name="groupid">voltdbemp</property> <property name="procedure">EMP.insert</property> </configuration> <configuration type="kafka" enabled="true"> <property name="topics">employees</property> <property name="groupid">voltdbmgr</property> <property name="table">MGR.insert</property> </configuration> </import> | ||||
8.6. | New @Statistics selector QUEUE | |||
A new selector has been added to the @Statistics system procedure. The QUEUE selector returns statistics on the number of tasks in each partition's process queue and the average and maximum time tasks were waiting in the queue. See the description of the @Statistics system procedure in the Using VoltDB manual for details. | ||||
8.7. | Improvements to INSERT INTO... SELECT to reduce temporary memory usage | |||
Performing an INSERT INTO... SELECT can produce many records, depending on the results of the SELECT. In the past, it was easy to use up all of the available temporary memory that VoltDB allocates for transactions, resulting in the statement failing and rolling back. The execution plans for these statements have been rewritten to perform each insert inline, significantly reducing the amount of temporary memory required and increasing the number of rows that can be processed in a single statement. | ||||
8.8. | More flexibility in placement of COUNT(*) in CREATE VIEW | |||
Previously, the CREATE VIEW statement selection list had to begin with any columns listed in the GROUP BY statement, followed by COUNT(*), and then any other aggregate functions. The restriction on the placement of COUNT(*) has been removed and it can now appear anywhere in the selection list after the GROUP BY columns. | ||||
8.9. | Ability to use absolute paths to identify custom import formatters | |||
By default, when using a custom import formatter, VoltDB looks for the formatter JAR file in the
| ||||
8.10. | Dynamic connections to clusters for the kafkaloader and jdbcloader utilities | |||
The kafkaloader and jdbcloader utilities have been updated to use the auto-reconnecting client library, so they can adjust to changes in the database cluster configuration dynamically. | ||||
8.11. | New message logged when processes run more than 10 seconds | |||
If a task blocks a process queue for more than 10 seconds, an informational message is written to the server
log. You can adjust the threshold at which these messages are written by setting the configuration element | ||||
8.12. | Improved partition management when cluster nodes fail | |||
When a node fails on a K-safe cluster, management of one or more of the database partitions (known as mastership) may need to be re-assigned to the remaining nodes. In previous versions, after several failures and rejoins mastership of the partitions could become unevenly dispersed in the cluster. Reassignment has now been improved to maintain an even distribution in the cluster. | ||||
8.13. | Additional improvements | |||
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
| ||||
9. Release V7.4 (June 19, 2017) | ||||
9.1. | New DR DROP command | |||
There is a new voltadmin command to safely remove a single cluster from a multi-cluster XDCR environment without disrupting the connection between the remaining clusters. The DR DROP command tells a running cluster to send any queued binary logs, stop DR and inform the remaining clusters to remove it from the XDCR environment. See the description of the voltadmin utility in the Using VoltDB manual for details and an explanation of the difference between DR DROP and DR RESET. | ||||
9.2. | Support for alternate character sets in the csvloader utility | |||
The csvloader utility has a new option, | ||||
9.3. | New column added to the @Statistics DRPRODUCER selector output | |||
A new column, QUEUE_GAP, has been added to the return values of the DRPRODUCER selector of the @Statistics system procedure. This column indicates if there is a gap between the last acknowledged transaction and the next transaction queued for transmission to the DR consumer. See the description of the @Statistics system procedure in the Using VoltDB manual for details. | ||||
9.4. | The sqlcmd FILE directive now supports processing multiple files in a single batch | |||
Previously, the sqlcmd FILE directive let you process a single file containing SQL
statements (and other sqlcmd directives). The directive has been extended to support a list of
files, separated by spaces. If you include the | ||||
9.5. | Support for converting Java BigDecimal to integer VoltDB datatypes | |||
Java BigDecimal values are now allowable input to VoltDB integer datatypes, including TINYINT, SHORTINT, INTEGER, and BIGINT. As with any datatype conversion, if the BigDecimal value overflows the target integer type it will generate a runtime error. See the appendix on datatype compatibility in the Using VoltDB manual for details. | ||||
9.6. | The voltdb init --schema option now ignores unsupported sqlcmd directives | |||
The | ||||
9.7. | Optimization of runtime schema changes | |||
As part of an ongoing effort to optimize and reduce the impact of changes to the running database — specifically changes to the schema, stored procedures, or configuration — the internal code to implement these actions is being reorganized. One consequence of this change is that the name of internal procedures reported by the @Statistics system procedure may change. For example, previously, schema changes were reported by the @Statistics INITIATOR and PROCEDURE selectors as the UpdateApplicationCatalog procedure. Now these actions are executed by the UpdateCore procedure. | ||||
9.8. | Hash indexes are now deprecated | |||
VoltDB uses tree indexes by default. It has been possible to request a hash index by including the string "hash" in the index name. However, testing shows that in most cases, tree indexes are more effective or at least as effective as hash indexes. Consequently, hash indexes are now deprecated and will be removed at an upcoming major release. | ||||
9.9. | Additional improvements | |||
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
| ||||
10. Release V7.3 (May 24, 2017) | ||||
10.1. | New online upgrade process for VoltDB software | |||
There is a new process available for upgrading VoltDB software on a running cluster using XDCR without requiring a second set of cluster hardware. Upgrading the software between two XDCR clusters is the easiest method. However, if you do not want or have the resources for a second separate cluster, the new process uses XDCR and K-safety to split an existing cluster into two and upgrade the two halves through XDCR. See the section on "Performing an Online Upgrade with Limited Hardware" in the VoltDB Administrator's Guide for details. | ||||
10.2. | New @Statistics selector for measuring latency | |||
There is a new selector for the @Statistics system procedure, LATENCY, which provides periodic latency statistics. The statistics are generated every five seconds and provide both maximum and various levels of percentile measurement up to 99.999%. See the description of the @Statistics system procedure in the Using VoltDB manual for details. | ||||
10.3. | Support for Kerberos when using the VoltDB command line utilities | |||
Kerberos support has been extended to provide integration with the VoltDB command line utilities, such as sqlcmd and voltadmin. See the discussion of "Accessing the Database from the Command Line" in the Kerberos section of the Using VoltDB manual for details. | ||||
10.4. | Beta release of kafkaloader utility support for Kafka version 0.10.2 | |||
There is a new version of the kafkaloader utility, named kafkaloader10, that works with Kafka version 0.10.2. There are enough differences between Kafka 0.8.2 and 0.10.2 that two separate utilities will be maintained for the foreseeable future. Customers interested in using kafkaloader10 are encouraged to try this beta release and
provide us feedback. Note however, it has not yet received the rigorous testing of the default 0.8.2 version of
kafkaloader and should not be considered production-ready quite yet. See the online help for
kafkaloader10 in the | ||||
10.5. | Ability to choose a preferred source for a new XDCR connection | |||
It is now possible to select one cluster in a multi-cluster XDCR configuration as the preferred host of the
initial synchronizing snapshot when the current cluster joins the environment. You use the <dr id="3" role="xdcr" >
<connection source="svra,svrb,svrc" preferred-source="2" />
</dr> Note that | ||||
10.6. | New Import tab in the VoltDB Management Center | |||
There is a new tab available in the VoltDB Management Center that helps you monitor the progress of import connectors. The new Import tab is only visible when import connectors are configured and active. | ||||
10.7. | Improved performance and reduced bandwidth use in the VoltDB Management Center | |||
The VoltDB Management Center (VMC) has been optimized to reduce its bandwidth use and thereby improve overall performance. | ||||
10.8. | Ability to export table and column names in lowercase for JDBC targets | |||
By default, VoltDB sends SQL statements through the JDBC export connector using all uppercase table and column
names. However, a few databases (most notably, PostgreSQL) are case-sensitive. There is a new property for the JDBC
connector that tells VoltDB to use lowercase table and column names. The | ||||
10.9. | Deprecation notice: Java client API method updateApplicationCatalog() | |||
There is a method in the VoltDB Java client API, | ||||
10.10. | Additional improvements | |||
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
| ||||
11. Release V7.2 (April 25, 2017) | ||||
11.1. | Ability to initialize root directory with schema and procedure classes | |||
It is now possible to add a starting schema and procedure classes when you initialize the database root
directory. The new options $ voltdb init --config=deployment.xml \ --schema=myschema.sql --classes=myprocs.jar See the description of the voltdb init command in the Using VoltDB manual for details. | ||||
11.2. | Enhancements to the DR reset command for managing XDCR environments | |||
In multi-cluster XDCR environments, it is now possible to drop one cluster from the network without disrupting replication between the remaining clusters by using the voltadmin dr reset --cluster command. See the description of the voltadmin command in the Using VoltDB manual for details. | ||||
11.3. | DR support for @SwapTables | |||
Use of the @SwapTables system procedure is now supported by database replication (DR). Swapping tables on a producer cluster acts like a schema change, causing the consumer cluster to pause until you execute the same @SwapTables statement on the consumer. See the description of the @SwapTables system procedure in the Using VoltDB manual for details. | ||||
11.4. | Support for subqueries in data manipulation language (DML) statements | |||
Data manipulation language (DML) statements, such as INSERT, UPDATE, and DELETE, now support subqueries. See the description of the individual statements in the appendix of supported SQL statements in the Using VoltDB manual for details. | ||||
11.5. | New voltadmin status command | |||
There is a new command, voltadmin status, that reports the current status of a running
cluster. Information in the output includes the number and IP addresses of the servers in the cluster and if any
nodes are missing from a K-safe cluster. You can also add the | ||||
11.6. | New voltdb collect syntax | |||
The syntax for the voltdb collect command has been enhanced to be consistent with the other
voltdb commands, such as get, init, and
start. The voltdb collect command now let's you specify the location of the
root directory using the | ||||
11.7. | Improved logging of security events and configuration changes | |||
VoltDB now provides more thorough logging of security events. Specifically, every authorization failure is logged, each user who successfully authenticates is logged, and every configuration change is logged prior to the change being made. | ||||
11.8. | New documentation of custom exporters, importers, and formatters | |||
A new chapter on writing custom exporters, importers and formatters has been added to the VoltDB Guide to Performance and Customization. | ||||
11.9. | Additional improvements | |||
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
| ||||
12. Release V7.1 (March 21, 2017) | ||||
12.1. | Support for TLS encryption on external ports | |||
VoltDB now supports Transport Layer Security (TLS) — the recommended upgrade from Secure Socket Layer
(SSL) encryption — for all externally accessible ports, not just the HTTP port. With TLS enabled, data passing
through both the client and admin ports is encrypted. If encryption is enabled for the client and admin ports, you
must use the ImportantTo support the new options, the configuration of TLS in the deployment file has been reorganized. Customers who previously enabled TLS encryption for the HTTP port only will need to change their configuration files. For example, the old and new syntax for enabling TLS on the HTTP port is: Old Syntax <httpd> <https enabled="true"> [ . . . ] </https> </httpd> New Syntax <ssl enabled="true"> [ . . . ] </ssl> See the section on using TLS/SSL encryption in the VoltDB Administrator's Guide for details on setting up TLS for a VoltDB cluster. | ||||
12.2. | Ability to retrieve the schema, procedures, and configuration from a database | |||
Three new voltdb commands have been added that allow you to extract the schema, stored procedures, and configuration from the local database root directory. These commands can be used whether the database is running or not. The new commands are:
See the description of the voltdb command in the Using VoltDB manual for details. | ||||
12.3. | New statistics provide performance details about individual statements within a procedure. | |||
A new selector, PROCEDUREDETAIL, for the @Statistics system procedure provides detailed performance information about the execution of individual statements within stored procedures. See the description of the @Statistics system procedure in the Using VoltDB manual for details. | ||||
12.4. | New system procedure lets you swap two tables | |||
A new system procedure, @SwapTables, lets you swap the contents of two tables. The two tables must have the identical schema (that is, the same column names, datatypes, and constraints) and cannot have views defined. See the description of the @SwapTables system procedure in the Using VoltDB manual for details. | ||||
12.5. | Ability to restart a partial cluster | |||
It is now possible to restart a K-safe cluster with fewer than the original number of nodes. For example, if
one server fails on a five node cluster and you want to restart the cluster but the failed server is not ready, you
can start the cluster with the remaining four nodes by using the $ voltdb start --count=5 --missing=1 Note that the partial cluster is not fully K-safe to its specified K-safety value until the full complement of nodes rejoin the cluster. See the description of the voltdb command in the Using VoltDB manual for details. | ||||
12.6. | New SQL functions for handling internet addresses | |||
There are four new SQL functions to convert internet addresses from text strings to binary and back again. Two functions (INET_ATON and INET_NTOA) convert IPv4 addresses and two (INET6_ATON and INET6_NTOA) convert IPv6 addresses. See the Appendix of SQL Functions in the Using VoltDB manual for details. | ||||
12.7. | Statistics related to schema changes are no longer reset by each change | |||
Previously, the information gathered by the @Statistics system procedure related to schema changes (from DML statements or calls to @UpdateClasses or @UpdateApplicationCatalog) was reset each time the database schema changed. Schema changes no longer reset the statistics on each invocation. Also, every schema change is recorded, rather than the 5% sampling done for other procedures. | ||||
12.8. | SNMP traps now report database replication (DR) events | |||
VoltDB can send SNMP traps for selected database events, such as node failures or when resource limits are reached. Starting with V7.1, it also reports database replication (DR) events when DR is enabled. | ||||
12.9. | New index optimizations | |||
We continue to extend support for the use of indexes to optimize the execution of SQL statements. Two new uses of indexes are when evaluating:
| ||||
12.10. | Enhancements to the kafkaloader utility | |||
Three new features have been added to the kafkaloader utility:
See the online help for the kafkaloader utility for details. | ||||
12.11. | Improved performance when updating procedure classes | |||
Previously, updating the stored procedure classes (using the sqlcmd LOAD CLASSES directive or the @UpdateClasses system procedure) updated all of the classes in the schema. As a result, the more classes in the schema, the longer the update would take, even if the update itself was small. VoltDB now updates only those classes affected by the change, significantly reducing the time required for the update to complete. | ||||
12.12. | Managing heterogeneous clusters in Database Replication (DR) | |||
You can create a DR environment using clusters running different versions of VoltDB. However, to support new functionality (in particular, multi-cluster XDCR) the DR protocol changed in V7.0. That major version acts as a gateway between earlier and later releases. In other words, you can run a V7.0 cluster with earlier versions, or you can run a 7.0 cluster with later versions. However, you cannot run pre-V7.0 clusters with post-V7.0 clusters. As a consequence, if you want to perform an in-service upgrade (using different version clusters) to upgrade a DR environment using a pre-V7.0 version (say, V6.9) to V7.1 or later, you must upgrade all clusters to V7.0 first, then upgrade to your final target version. Of course, you can always use the normal single-cluster upgrade process to go directly from V6.x to V7.x if you choose. | ||||
12.13. | VoltDB servers no longer support SHA-1 | |||
To ensure the security of VoltDB servers, the database no longer accepts SHA-1 for hashed data. All hashed data (such as passwords etc) must be hashed using SHA-256. Note: this is an incompatible change. Some earlier client libraries will not be able to connect to the V7.1 servers because they do not support the more robust SHA-256 hashing. | ||||
12.14. | Additional improvements | |||
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
| ||||
13. Release V7.0.1 (March 16, 2017) | ||||
13.1. | Recent improvements | |||
The following limitations in previous versions have been resolved:
| ||||
14. Release V7.0 (January 30, 2017) | ||||
14.1. | Updated operating system and software requirements | |||
The operating system and software requirements for VoltDB have been updated based on changes to the supported versions of the underlying technologies. Specifically:
| ||||
14.2. | Improved configuration and reporting for database replication (DR) | |||
As mentioned earlier, the addition of the | ||||
14.3. | VoltDB now protects against inserting invalid values into TIMESTAMP columns | |||
Previously, VoltDB allowed any 8-byte integer as input to a TIMESTAMP column. However, the TIMESTAMP functions limit the values to those defined by the MIN_VALID_TIMESTAMP() and MAX_VALID_TIMESTAMP() functions. Starting with V7.0, VoltDB no longer accepts values outside of the valid timestamp range for TIMESTAMP columns. Note that this is an incompatible change and may require changes to applications that are inadvertently inserting invalid timestamp values. If so, you can use the IS_VALID_TIMESTAMP() function to validate input values before inserting them into TIMESTAMP columns. | ||||
14.4. | Additional improvements | |||
In addition to the new features and capabilities described above, the following limitations in previous versions have been resolved:
|
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.