Deprecated features
This article lists the most impacting deprecated features of ActivePivot, so you can plan your migrations ahead of time. Deprecated features can be removed in a future minor version (6.X.0).
For a more complete list of deprecations, please read the changelog.
Deprecated features in 6.0
Atoti Server contains code for our internal teams and a public API. The public API must be stable and well documented, whereas the internal code is for internal developments and as such is prone to change more frequently without notice. For clarity, we have decided to separate and make more visible which parts of code are internal and which are in the public API.
From version 6.0, Atoti Server annotates some classes as @Deprecated, for removal in 6.1.
These deprecations are accompanied by another custom annotation @InternalApi.
The @InternalAPI annotation indicates that these classes were designed to be used by our internal teams at ActiveViam only, and not as part of the public API.
It is for this reason that they are being deprecated.
Atoti Server does not provide any replacement for them, as these classes are not features.
For example, the small class QfsLists contains helper functions, factorizing some internal repeated code.
Thus, this class will be made internal.
CancellableCountedCompleter and other classes of the package com.qfs.concurrent.cancellable.impl have also been annotated with @InternalAPI
These classes build the machinery for concurrent operations in Atoti Server.
They are complex classes, updated to match the various requirements of Atoti Server.
They do not form a general-purpose framework for concurrent operations, open to clients.
As such, they are also migrated to become pure internal classes.
These deprecations are defined at various levels:
- package level, deprecating all classes in the package;
- class level, deprecating the entire class and inner classes;
- method and field level.
- {@jira: PIVOT-4747} The Query API of the Datastore is deprecated as it is superseded by the Query API of the Database.
- {@jira: PIVOT-4747} The usages of
IDatastoreVersionshould be replaced byIDatabaseVersion. - {@jira: PIVOT-5429}
AAnalysisHierarchyis deprecated in favor ofAAnalysisHierarchyV2. - {@jira: PIVOT-8247}
IDatastoreSchemaDescriptionPostProcessorand all the implementations are deprecated. Datastore's description post-processors are no longer needed. Most of the transformation done in the post processors can be done directly at the schema's description creation. - {@jira: PIVOT-9303} The
IActivePivotContentServicecan no longer be used to store userIContextValue. Multiple methods surrounding the use of context values are removed, includinggetContextValue,setContextValue,removeContextValue, etc...
Deprecated features in 5.11
- {@jira: PIVOT-4653}
CopperMeasure.map(SerializableFunction<I, Object>)is deprecated for memory performance reasons. It was removed in 6.0.0. - {@jira: PIVOT-4653}
CopperMeasureCombination.map(SerializableFunction<IArrayReader, Object>)is deprecated for memory performance reasons. It was removed in 6.0.0. - {@jira: PIVOT-4653}
IEvaluatoris deprecated in favor ofIEvaluatorV2. It was removed in 6.0.0, andIEvaluatorV2was renamedIEvaluator. - {@jira: PIVOT-4653}
AAdvancedPostProcessoris deprecated in favor ofAAdvancedPostProcessorV2. It was removed in 6.0.0, andAAdvancedPostProcessorV2was renamedAAdvancedPostProcessor. - {@jira: PIVOT-4653}
ABasicPostProcessoris deprecated in favor ofABasicPostProcessorV2. It was removed in 6.0.0, andABasicPostProcessorV2was renamedABasicPostProcessor. - {@jira: PIVOT-4653}
ADynamicAggregationPostProcessoris deprecated in favor ofADynamicAggregationPostProcessorV2. It was removed in 6.0.0, andADynamicAggregationPostProcessorV2was renamedADynamicAggregationPostProcessor. - {@jira: PIVOT-4653}
ABaseDynamicAggregationPostProcessoris deprecated in favor ofABaseDynamicAggregationPostProcessorV2. It was removed in 6.0.0, andABaseDynamicAggregationPostProcessorV2was renamedABaseDynamicAggregationPostProcessor. - {@jira: PIVOT-4655}
IExport(Rest)Serviceare deprecated in favor ofIDataExport(Rest)Service. They were removed in 6.0.0.
Deprecated features in 5.10
- {@jira: PIVOT-4244} Our web services exposed with SOAP are deprecated. They were removed in 6.0.0.
- {@jira: PIVOT-4244} Configuring a cube with an XML file is deprecated. The feature was removed in 5.11.0.
- {@jira: PIVOT-4776} The
IMultiMap<K,V>API was removed in AP 5.11. UseMap<K,Collection<V>>instead.
Deprecated features in 5.9
- {@jira: APS-12686} The
JGroupsMessengerhas been deprecated in 5.9 and removed in 5.10. - {@jira: PIVOT-4070} The transaction log and the datastore replication has been deprecated in 5.9 and removed in 5.10.
- {@jira: PIVOT-4217} Configuring your application with Spring XML configuration files is deprecated.