← Back to Index

8.3 Release Notes

For Administrators

Environment Information Dumping with nuxeoctl connect-report

8.3A new command has been added to nuxeoctl, nuxeoctl connect-report. This new command gathers information that can be useful to understand the environment in which a bug or a problem can be reproduced. This command was added in an effort to keep improving the quality of the service delivered by the Nuxeo Support Team. Information includes: configuration, templates used, environment information via JVM MBeans and more. For now this feature is delivered via a Nuxeo Package that needs to be installed on the Nuxeo server.

MarkLogic as a New Storage Backend

8.3A new implementation of the DBS interface (NoSQL) has been done for the MarkLogic database. It is available as a Nuxeo Package on the Nuxeo Marketplace.

MongoDB 3.2

8.2 MongoDB 3.2 is now supported as a storage backend.

PostgreSQL 9.5

8.3 PostgreSQL 9.5 is now supported as a storage backend.

S3 Configuration via Extension Point

8.1 Customers needing to connect to more than one S3 binary managers with different configurations are now able to do so using the new configuration extension point of org.nuxeo.ecm.core.blob.BlobManager . Previously only one bucket could be configured in nuxeo.conf .

<extension point="configuration" target="org.nuxeo.ecm.core.blob.BlobManager">
    <blobprovider name="default">
        <class>org.nuxeo.ecm.core.storage.sql.S3BinaryManager</class>
        <property name="awsid">your_AWS_ACCESS_KEY_ID</property>
        <property name="awssecret">your_AWS_SECRET_ACCESS_KEY</property>
        <property name="region">us-west-1</property>
        <property name="bucket">your_s3_bucket_name</property>
        <property name="bucket.prefix">myprefix/</property>
        <property name="directdownload">true</property>
        <property name="directdownload.expire">3600</property>
        <property name="cachesize">100MB</property>
        <property name="crypt.keystore.file">/my/keystore.jks</property>
        <property name="crypt.keystore.password">password</property>
        <property name="crypt.key.alias">mykey</property>
        <property name="crypt.key.password">password</property>
        <property name="connection.max">50</property>
        <property name="connection.retry">3</property>
        <property name="connection.timeout">50000</property>
        <property name="socket.timeout">50000</property>
    </blobprovider>
</extension>

Server-Side Encryption with S3

8.1 Support for Server-Side Encryption (SSE-S3) has been added as an alternative to Client-Side Encryption (CSE) as documented in the S3 Java SDK. This is enabled through the property nuxeo.s3storage.crypt.serverside=true.

GridFS as Part of the Default Distribution

8.1 GridFS is now part of the base distribution, in nuxeo-core. It will have to be activated explicitly using the gridfsbinaries template. There is no need to install an additional Nuxeo Package anymore. Read our MongoDB documentation for more information.

SAML Addon Compatible with ADFS

8.2 After adjusting a few blind parts of the specification, the SAML plugin has been successfully used with Active Directory Federation Services.

Elasticsearch Indexing Operations

8.1 Elasticsearch indexing operations are now available from Nuxeo Automation in addition to the Admin Center. Using a REST call you can now:

Full-Text Indexing Optimisation

8.3We optimized the indexing flow by using ES bulk indexing features, when full-text indexation is disabled at the repository level. Number of works queued is now divided by two.

Allow Separate Repository DDL Generation

8.1 Nuxeo can now start with a new nuxeo.vcs.ddlmode parameter that specifies how the DDL for repository initialization should be executed at startup. Depending on the chosen mode, the DDL may not be executed at all and instead dumped to the log/ddl-vcs-default.sql log file. Possible values for nuxeo.vcs.ddlmode are:

For Nuxeo Platform 6.0 and Nuxeo Platform 7.10 the default was nuxeo.vcs.ddlmode=compat . For Nuxeo 8.2 the default is nuxeo.vcs.ddlmode=execute .

Note that all this applies to the DDL for the document repository, but not DDL used by other users of SQL in the platform (directories, quartz, JPA persistence).

New nuxeoctl Commands to Register Instances

8.3Some new commands are available:

nuxeoctl register [<username> [<project> [<type> <description>] [<pwd>]]]
nuxeoctl register-trial [<email> <company> <project> <description> [<pwd>]]

register allows to register an instance using an existing Nuxeo Online Services account while register-trial allows to create an account and get a trial against the Nuxeo Online Services portal.

Redis

Cluster Invalidation with Redis in nuxeo.conf

8.1 Using Redis to process cluster invalidation instead of database can be configured in nuxeo.conf using repository.clustering.invalidation=redis (it used to be in the repository contribution).

Less Memory Footprint for Redis

8.2 Some work has been done to optimize the size of serialized works, hence lowering the requirements in terms of memory size for Redis.

Redis Pool Size Configuration

8.2The Redis connection pool size can be configured using the new nuxeo.conf options:

Retry Logic For Redis Calls

8.2Nuxeo now uses a failover executor with an exponential delay policy: 1ms, 2ms, 4ms, 8ms, 16ms, 32ms .. until the timeout has reached 5min by default.

Work Manager and Shutdown

8.2There was some clean up in the way jobs were processed, especially at server's shutdown. When server is shutdown, works being processed are finished before real shutdown. If server's process is killed, job will be restarted as the system is transactional.

User Manager Cache is Back

8.3A cache is now set up for the UserManager by default. It was not the case any more on LTS 2015 for users persisted in an SQL directory.

Nuxeo Importer

Non-Bulk Mode Available

8.3 With the following contribution you can now configure the importer to work in non-bulk mode, which is a bit slower but allows regular Work instances to be created and directed to specific queues:

<extension target="org.nuxeo.ecm.platform.importer.service.DefaultImporterComponent" point="importerConfiguration">
  <importerConfig>
  <bulkMode>false</bulkMode>
  </importerConfig>
</extension>

Nuxeo Importer Without ES Indexing

8.3The nuxeo-importer can now run with Elasticsearch indexing turned off. The reindexing can be done after the mass import.

Web App Optimizations

8.2 Since 6.0 and migration to JSF2, some regressions on the performance of the webapp were found, especially on heavy load. Some optimization work has been done. On a commodity hardware benchmarks shows after optimization that we are able to server 25% more requests.