Changelog
The format is based on Keep a Changelog and this project adheres to Romantic Versioning.
5.7.19
2021-05-27
Changed
- PIVOT-4789 Provide possible solutions in error message when we failed to initialize the
SaferNative
class inLinuxPlatform
.
Fixed
- PIVOT-4811 Fix
ClassCastException
inSingleValueFunction
when working with arrays. - PIVOT-4819 Fix
UnsupportedOperationException
inActivePivotStatistics
. The issue happened when computing transaction fact statistics on an incompatible type of transaction.
5.7.18
2021-04-28
Added
- PIVOT-4490 Add health events to the JDBC source notifying the success or the failure of a JDBC source fetch.
These health events can be handled using the interface
IJdbcSourceHealthEventHandler
. - PIVOT-4480 Add a JMX operation in the store monitoring MBean that produces a general chunk memory usage report.
Changed
- PIVOT-4620 Replace Hibernate
CriteriaBuilder#in()
by HibernateInPredicate
. This solves cases where a high number of input parameters causes server exceptions.
Fixed
- APS-13016 Better handle network errors which were causing issues with license checks.
- PIVOT-4344 Fix SingleValueFunction on Arrays type.
- PIVOT-4443 Fix an edge case in chunk compression where a chunk entirely filled with
Integer.MIN_VALUE
orLong.MIN_VALUE
would not be compressed into anIChunkSingleValue
. - PIVOT-4590 Fix
ArrayIndexOutOfBoundsException
occuring when merging two retrieval results. Particularly, the issue was due to the fact that some post-processors ignorenull
values and don't write them into the final result. As a consequence, the capacity of the underlying post-processor column won't be aligned with the retrievals points, causing such exception when merging the actual result with another one. - PIVOT-4622 Fix ActiveMonitor PointValue commit logic. This adds a consistency check when committing an update on an existing point value. Now, we make sure that the "from" point value and its active value in the database have the same key. Otherwise, the commit is not allowed and an exception is thrown.
- PIVOT-4716 Mdx Median function now regularly checks for query interruption.
- PIVOT-4719 Fix lazy initialization and double check idiom in
RecordFormat#getFieldIndex(String)
. - PIVOT-4730 Prevent Real-Time statistics errors from crashing continuous queries update. The issue happened when statistics computations tried to fetch retrievals that had been dismissed by the query engine (usually because of a non-existent location).
5.7.17
2021-01-21
Changed
- PIVOT-4558 Change the behavior of
IHierarchy#isEmpty()
. Now, the method checks whether the corresponding hierarchy is empty or not instead of checking for leaf members. This enhances the performance of queries with high cardinality hierarchies.
Fixed
- PIVOT-3352 Add fencing on
APrimaryRecordTransaction
methods. - PIVOT-4241 Fix the reserved memory tracking of the
SlabMemoryAllocator
when the cache is evicted. - PIVOT-4507 Fix issue with mdx drillthrough query involving a member whose name contains brackets
- PIVOT-4563 Fix a bug where the
Left
andRight
MDX functions would throw aNullPointerException
fornull
values. - PIVOT-4572 Fix
ClassCastException
during the execution of MDX queries relying on previously cached aggregates. The issue is due to a bad partitioning of a post-processor depending on a cached node and a non-partitioned post-processor node. Now, cached nodes forbid all partitioning levels and buble them up to their respective parents. - PIVOT-4586 Properly set the max message sizes for NettyMessenger messages in distribution, and generate a comprehensive exception message when exceeding such limits.
- PIVOT-4586 Fix
NullPointerException
in DriltthoughResultDTO. - PIVOT-4586 In some cases the server could send a transient empty drillthrough result when the actual result was computed. This is no more the case.
5.7.16
2020-12-21
Changed
- APS-12975 Reduce
DiscardOnGcTask
timeout duration from one hour to one minute. In very rare cases, this will let a version be discarded more rapidly after being released. - PIVOT-4438 Update MDX engine error messages to use hierarchy unique names instead of simple names.
Fixed
- PIVOT-4455 Correctly compute vector average, ignoring null vectors instead of counting them as actual values.
- PIVOT-4457 PIVOT-4457 Correct Datastore conditions testing for equality or greater-than/less-than on nullable fields. Previously, this could:
- throw an exception for a non-dictionarized field with long series of
null
values; - return incorrect rows from the store when looking for the primitive value 0 on a non-dictionarized field;
- return rows with
null
for greater-than/less-than conditions.
- throw an exception for a non-dictionarized field with long series of
- PIVOT-4461 Fix
NullPointerException
during Datastore queries looking fornull
in store fields after compression. This only happened in the case of offset compression, for int and long values or dictionarized fields. - PIVOT-4551 Fix
ArrayIndexOutOfBoundException
during the streaming of a MDX query with no ranges added to it. - PIVOT-4572 Fix
ClassCastException
during the execution of MDX queries relying on previously cached aggregates. The issue is due to a bad partitioning of a post-processor depending on a cached node and a non-partitioned post-processor node. Now, cached nodes forbid all partitioning levels and buble them up to their respective parents. - APS-12985 Correct overflow error in dictionaries occurring when inserted more than
2 ^ 30
values in a field dictionary.
5.7.15
2020-11-16
Added
- APS-12715
IPostProcessedRetrievalResultWriter.aggregateAndContribute(IAggregationFunction, int, List<? extends IIterableAggregatesRetrievalResult>)
. The extra argument provides the type of data consumed by the aggregation function. While this type is often the same as the measure type, functions converting longs to vectors of longs break this assumption. - PIVOT-4387 Add a validation step for
StoreToParquetMapping
s before parsing a parquet file. - PIVOT-4713 Add the method
IDistributedHierarchyManager#waitForAllMessages
allowing to wait for all the recorded messages to be processed.
Changed
- APS-12715 Deprecating
IPostProcessedRetrievalResultWriter.aggregateAndContribute(IAggregationFunction, List<? extends IIterableAggregatesRetrievalResult>)
to replace it withIPostProcessedRetrievalResultWriter.aggregateAndContribute(IAggregationFunction, int, List<? extends IIterableAggregatesRetrievalResult>)
. - APS-12788
AxisHierarchy
now reports that a field used to create a level should be dictionarized, instead of stating that this operation is only available in unit-tests. - APS-12932 Bitmap operations now catch
CancellationException
early to prevent logging bitmaps that are valid.
Deprecated
- APS-12715 Deprecating
IPostProcessedRetrievalResultWriter.aggregateAndContribute(IAggregationFunction, List<? extends IIterableAggregatesRetrievalResult>)
to replace it withIPostProcessedRetrievalResultWriter.aggregateAndContribute(IAggregationFunction, int, List<? extends IIterableAggregatesRetrievalResult>)
.
Fixed
- APS-12641 Fix ranges update on registered query.
- APS-12731 Fix
QueriesTimeLimit
heuristic overflow in the MDX engine. This led to cases where the actual query was still running, yet because of the overflow, the query engine was continuously timing out, creating erroneousTimeoutException
s that never bubbled up because the query didn't time out. - APS-12769 Prevent NPE in
AAdvancedPostProcessor#retrieveNamedPrefetchAggregatesWithAnalysisLevels
- APS-12871 fixed an edge-case issue with the
RemoteContentServer
that would throw if two paths in the Content Server were equal up to a/
in the first, and a special character in the second. - APS-12873 Fix a bug in
LocationBuilder#setCoordinate()
. The method was skiping levels during path iteration. - APS-12885 Fix an edge-case where datastore query yields additional unexpected results. The issue happens when specifying a condition on a reference field and the target store includes a ValuePartitioning on that field.
- APS-12952 Fix sanity-check in ActiveMonitor alert system, not preventing for dispatching incorrect events.
- PIVOT-4370 The Parquet Source now correctly handles empty strings when writing into a store field that should not support empty strings, replacing them with the store field's default value.
- PIVOT-4388 Changed the return type of the Store Builder method
withVectorField
when chained after a dictionarized or indexed vector field. It gives access to a much fuller API to configure this second vector field, or finish configuring the store with methods likewithoutKey()
. - PIVOT-4401 Fix a bug in the completion of JIT retrievals that could lead to threads not being properly stopped when encountering an exception in underlying retrieval operations.
5.7.14
2020-07-09
Added
- APS-12724 Add a new System Property, set through
-Dactiveviam.contentServer.restrictedListing=<boolean>
, which will change the permission behavior of the Content Server. It defaults to false. When set to true, a user will not be able to list a file without having read access to the said file, even if he has read access to the parent directory.
Fixed
- APS-12300 Fix a bug affecting the ContentServer cached entries that were invalidated even when not necessary.
- APS-12739 Fix a bug affecting branches for distribution, where hierarchies could be seen as not empty even if they were.
- APS-12763 Fix a bug in
GetAggregatesStream
, causing UnsupportedOperationExceptions. - APS-12777 Allow
StreamingService
to garbage collect and dispose of already stopped streams.
5.7.13
2020-06-04
Added
- APS-12511 The ActivePivot Version of the project is now printed at project initialization, and is accessible through the ActivePivot Manager MBean.
Changed
- APS-12514 Changing the default companion when the expression of the calculated member is a member of the same hierarchy and not a calculated member. This will improve the performances.
Fixed
- APS-12546
CSVSourceConfiguration
constructor correctly uses the defaults of the givenProperties
, if present. - APS-12549 Fix postprocessors auto-partitioning in the the finalization of planning phase.
- APS-12588 Fix a bug with dropped partitions. The drop was not correctly reverted when the transaction was rolled back. This could cause multiple exceptions in the Bitmap aggregate provider.
- APS-12700 Fix
IndexOutOfBoundsException
appearing randomly when using rangesharing. The computation was failing in presence of factless locations. - PIVOT-4288 Fix query planning producing wrong aggregated values when the datastore is partitioned on a field absent in the pivot.
- PIVOT-4321 It was not possible to change the Aggregate Cache's size at runtime, if the cache was disabled in the description.
5.7.12
2020-02-14
Changed
- APS-11967 BREAKING: consider the cube filter when replicating results from Data Cubes. Like with
locations, if the Cube Filter contains hierarchies absent from the Data Cube, replication won't apply, according
to the distribution property
dataReplication
.
Not to break existing projects, a temporary new replication policy was introducedREPLICATE_ON_SLICER_IGNORING_FILTER
. It provides the behaviour before the fix, and will be removed in 5.9. - APS-12304 BREAKING: Adding a check for partial provider measures that verifies that the included/excluded measures are valid aggregated measures. Any project
not respecting this constraint will throw a
QuartetRunitimeException
at start-up. - APS-12458 Fix a
StreamCorruptedError
that could happen inNettyInputStream
after receiving an exception message, and wrongly resetting the stream's reading index.
Deprecated
- APS-11967 The following were only defined for support reasons and are already deprecated.
- Enum value
DataReplication#REPLICATE_ON_SLICER_IGNORING_FILTER
- Value
"REPLICATE_ON_SLICER_IGNORING_FILTER"
for the Distribution propertydataReplication
.
- Enum value
- APS-12215 Internal methods potentially visible to users have been deprecated:
IInternalAggregatesRetrievalResult#join(..)
withoutICubeFilter
IInternalAggregatesRetrievalResult#expandResult(List<? extends IHierarchy>, List<? extends ILevelInfo>)
Fixed
- APS-11728 Fix a bug in the
QFSBitmap.not
operator, that could produce malformed bitmaps that could make other operations throw when run on the malformed bitmap. - APS-12175 Fix bug in the Mdx Iif function when used with tuples
- APS-12215 Correctly set retrieval results filters when Analysis Hierarchies are involved. It previously resulted in missing results.
- APS-12227 Fixed JSON queries that wrongly locked all stores
- APS-12306 Fix an
UnsupportedOperationException
occurring when committing on a branch after dropping and recreating a partition on another branch. Also fix disappearing records on a branch when, on another branch, their partition is dropped and not re-created. - APS-12305 Fixed an issue with branch deletion in a distributed cluster, causing a small memory leak for each deleted branch.
- APS-12387
PointListRetrievalResult
methods now regularly checks for query interruption, preventing certain queries to continue running in the background while they have responded with a timeout. - APS-12391 Fix a
NullPointerException
that occured when removing a data node and readding it to the cluster withinremovalDelay
seconds.
5.7.11
2019-11-04
Changed
- {@jira APS-11933} Some methods of
ActivePivotSchemaTransactionManager
are no moresynchronized
.
Fixed
- APS-11922 Fixed
ActivePivotWebServicesConfig
to Autowire the IActivePivotServicesConfig interface rather than its provided implementation. - APS-12109 Fix a
NullPointerException
that could occur in the VersionHistory when releasing a version. - APS-11933 Fixed an ActivePivotTransactionException that could be thrown by
ActivePivotSchemaTransactionManager.startTransaction
when an isolated store had an analysis hierarchy. - APS-12057 Fixed a bug in the Parquet Source that initialized null values with the previously read value.
- APS-11940 Check for overflow before requesting direct chunk allocation
- SENTINEL-606 Correct listing of stopped alerts, possibly reporting alerts stopped by a concurrent operation.
- {@jira APS-12147} Fixed the DatastoreService that could throw an ArrayOutOfBoundException when having more fields on the concerned target store than on the main store, an offset greater than the amount of fields in the main store, and when trying to access a field with an index greater that the offset.
- {@jira APS-11891} Fixed some QFSBitmap exceptions that were caused by logical OR operations
5.7.10
2019-07-26
Changed
- APS-11863 Changed log level from
Warning
toFine
fortask.printPendingCompleters()
inActivePivotVersion.printExpiredQueryWarning
. - APS-11702 Do not restart every monitor when one monitor fails to start. Instead, this monitor start will be retried later.
- APS-11722 Exclude Analysis Hierarchies from Partial Aggregate Providers.
- APS-11799
ContentServerResourceServerConfigV2
changes the content server UI namespace fromcontent
tocontent/ui
because of a conflict which broke the scheduling service. - APS-12388 Changed distributed data node addresses generation to process id based instead of random.
Deprecated
- APS-11799
com.qfs.content.cfg.impl.ContentServerResourceServerConfig
should no longer be used. It is replaced bycom.qfs.content.cfg.impl.ContentServerResourceServerConfigV2
, and the "V2" will be removed in 5.9.0.
Fixed
- APS-11744 Partial providers were not used when there were custom permissions on branches.
- PIVOT-3624 Correctly take the cube filter into account when performing a drillthrough on the query cube.
- APS-11865 Speedup
Planning finalization time
by reducing the number of retrievals. It will impact queries containing a list with tens of members, including non existing ones. - APS-11793 Fix invalid cast in Repository Hibernate layer, causing
ClassCastException
toCoordinates
. - APS-11779 Correctly return the size of the stores
- APS-11415 Fix
IllegalStateException: Query should not be executed on shadow version
logs when using branches. - PIVOT-3965 Fix an IllegalArgumentException that could be raised when using SpringBoot > 1.3 and giving resources with absolute paths on Windows.
- APS-11798 Correctly create PostProcessors when mixing fluent builders and standard builders.
- PIVOT-3988 Correct
#equals(..)
for compressed entries ActiveViam sources. It was previously throwingClassCastException
s. - PIVOT-3997 Correct duplicate handling in the list of stores passed to a Datastore transaction. Previously, some stores could be erroneously deleted from the list.
- APS-11768 Fix ArrayIndexOutOfBoundException in AAdvancedPostProcessor#removeAnalysisLevelsFromFilter, which was encountered when using a FilteringPostProcessor.
- APS-11801 Fixed a bug in
LocationUtil.createRangeLocation(List<? extends IHierarchy> hierarchies, List<IHierarchyInfo> hierInfos, List<ILevelInfo> levelInfos, ILocation originalLocation)
that could cause anIndexOutOfBoundException
when using aFormulaPostProcessor
with thedynamicAggregation
operand. - APS-11849 Fix an
IllegalStateException
while filtering on the members of a Analysis Hierarchy configured with an Aggregation Procedure. - PIVOT-3800, {@jira APS-11292} Fix the way postprocessors are auto-partitioned.
ClassCastException
inPostProcessedResultsMerger
does not happen anymore. - PIVOT-4011 Fixed a bug in
ReorderListener
(introduced in 5.7.9) that could make a listener miss atransactionStarted
. - APS-11693 Prevent query cube from incorrectly removing data cube contribution
- APS-12134 Do not fail when lookup for a location/filter without result.
5.7.9
2019-05-23
Added
- APS-10824 Allow an
IActivePivotManagerDescription
to have a single distributed cube with fluent builders.
Changed
- APS-11427 The metadata fetching methods of the
JDBCSource
have been modified to not rely on a non-standard behavior of JDBC Driver implementation ofResultSetMetaData.getColumnName()
, but instead use the standardizedResultSetMetaData.getColumnLabel()
- APS-11634
StoreUtils.getPartitionSizes()
now returns -1 as a value for dropped or non existing partitions - PIVOT-3906 Rewrite the tasks performing Range-Sharing to avoid potential assertion failures.
- PIVOT-3920 Reuse existing record format for the result if available.
- PIVOT-3919 Use a code fast-path when splitting paths of one char.
- PIVOT-3818 Improve the registration of MDX streams to consume less CPU resource.
- PIVOT-3943 Perform the hierarchy contributions (during a Pivot commit) in parallel; this can speed up commit times in configurations with many hierarchies.
- APS-11601 Update the READMEs of the Sandbox project, to detail and explain how to customize the configuration of the packaged UIs.
- PIVOT-3974 Upgrade Sandbox ActiveUI version to 4.2.11
Fixed
- APS-11511 Union function used in SubSelect could wrongly return an empty result.
- APS-11586 Fix the Datastore Rest API, incorrectly mixing the number of fields and the depth of their reference paths.
- APS-11587 Fix the Datastore Rest API, incorrectly failing when finding a reference that was not an expected one
- PIVOT-3926 Fix concurrency issue in on-demand licensing
- APS-11619 Fix an occasional NullPointerException raised in the sandbox.
- PIVOT-3942 Correctly use
IPartitionedPostProcessor#DEFAULT_PARTITIONING_ON_RANGE_LEVELS
as the default value auto range partitioning for Post-Processors. - PIVOT-3540 Correct re-initialization of the
MdxRegistration
state when creating new Listeners. - APS-11657 Fix a NullPointerException in the CSVExportDrillthroughExecutor which occurred when one of the records had a null field.
- APS-11563 Include all measures NoOp retrievals are retrieving into their result.
- PIVOT-3960 Fix a bug in
QFSBitmap#or
that could result in extra members appearing in a result. - PIVOT-3938 Fix two bugs in the
ReorderListener
: 1) The delegate listener could miss an add, delete, or remove. 2) Could erroneously send atransactionRolledback
to the delegate listener. - APS-11728 Fix a bug in
QFSBitmap#or
that could produce wrong results when using filters in a query. - PIVOT-3565 Correctly retrieve the timestamp of a file last modification.
- APS-11722 Correctly pick the best Partial Aggregate Provider even with locations or subcubes including members of Analysis Hierarchies.
- APS-11634 SchemaPrinter no longer prints discared partitions as existing with a record size of 0
5.7.8
2019-03-08
Added
- APS-10710 Provide a default implementation for the Parameter store configuration. If one is explicitly provided by developers, the default implementation is not used.
- APS-10733 Add logs when daemons must wait for a stable distribution to start.
- APS-11149 Add possibility to define properties to pre-aggregated measures in fluent builders
- APS-11272 Add a new post-processor
FilteringPostProcessorOnTheFlyPattern
as an alternative to the MDX functionMemberCaptionSearch
. It allows to search for a given pattern in member captions for a given hierarchy. It will be used by ActiveUI when available. - APS-11323 Provide a context value translator for every core Context Value.
Changed
- PIVOT-3837 Migrate the sandbox project to ActiveUI application.
- APS-10705 The sandbox project properly configures its firewall to support special chars in file names for the Content Server.
Deprecated
- APS-11552 Sets.isEmpty is replaced by ISet.isEmpty
Fixed
- APS-11552 Speed up the evaluation of CrossJoin on axes with NON EMPTY
- APS-10889 Correctly detect that the Native Layer itself could not be initialized.
- APS-10505 Remove undesired log when initializing the formatter of a measure that is not granted.
- APS-10914 Correct query planning combining range sharing and joins from Copper.
- APS-11439 Fix an issue in Copper when using a legacy postprocessor in calculations.
- APS-11351 Allow the same CoPPer column to be used in a calculation multiple times.
- APS-11022 Fix the ContentServiceBranchPermissionManager to allow for full server eraseAndImport instead of having to update subtrees only.
- APS-11547 The FilteringPostProcessorV2 now returns an empty result when no record matches its filtered member(s).
- APS-11526 Correctly export
Monitor
during field in DTOs. - PIVOT-2924 Correct the MBean on top of
ActivePivotContentService
to clean the local and root caches. - APS-11060 Partial provider was not used when the Epoch dimension was disabled.
- DS-272 Fix deadlock that could appear when submitting records in parallel on the same partition.
- APS-11469 Allow to set the default member of the Epoch hierarchy like any other hierarchy.
- APS-11438 Fix order of transaction units (add, remove, removeWhere...). The order is now respected.
- PIVOT-3862 Registering a continuous query with a listener on a datastore selection (such as
com.quartetfs.biz.pivot.postprocessing.streams.impl.AStoreStream
) no longer triggers an initial view, harmonizing the behavior across all continuous query listeners. - PIVOT-3924 Avoid building unnecessary objects when calling
Objects.requireNonNull
.
Security
- APS-11145 Migrate the sandbox project to ContentServer UI application, fixing a possible CSRF and XSS issue with the old UI.
5.7.7
Added
- PIVOT-3778 Measures that have already been published in Copper are available as regular columns in the following createDatasetFromFacts datasets.
- PIVOT-3762 New mode in the query engine that sends only notification events for continuous queries. This allows to explore a current result without running the risk of seeing it change and at the same time know when the current view is not up-to-date anymore. See WebSocket documentation to enable it.
Fixed
- APS-11326 Fix CubeFilter serialization problem related to ICubeFilterIntersectionWithSubCube
- APS-11280/APS-11274 Fix several issues regarding EmptyAggregateStore and ReplicatedAggregateStore.
- APS-11283 AVG aggregation function could prevent IVector Objects from being garbage collected.
- APS-11306 Fix serialization/deserialization in RemoteDatastoreService
- PIVOT-3808 chunk compression can be disabled (
-Dqfs.compression.chunkset.disable=true
)
5.7.6
Added
- APS-11246 Add interruption exception in MembersCaptionSearch and MembersNameSearch.
- APS-11250 Always provide a record format for ICursor, even for null results.
- APS-11110 ConditionToJsonNodeHelper now uses JacksonSerializer as ObjectMapper, which let your register your own (de)serializers.
- APS-11249 Add a method to split the datastore/schema path in a clean way: DatastoreSchemaDescriptionUtil.splitPath. The mirror of DatastoreSchemaDescriptionUtil.createPath which creates a path with the correct separator from an array.
Changed
- APS-11294 Replace the micro letter by "us" as the unit for time values in micro-seconds.
Fixed
- APS-11273 fix wrong query results due to chunk compaction & garbage collection.
- APS-11087 fix issue in distributed architecture when there are more than 64 members in the cluster.
- PIVOT-3788 Return a null retrieval result when a datastore external request has no result.
- APS-11278 Fix the number of cores detected on a Linux machine when numactl is used.
- APS-11298 Add translation files in sandbox for Spanish and German (es-ES and de-DE) so the locale can be changed in ActiveUI without error.
- APS-11274 APS-11280 Correctly clone empty aggregate stores.
5.7.5
Added
- APS-11121 Improve the error message in case of incompatible partitionings. Now, the message includes involved store names, the considered reference as well as general suggestions of changes.
- APS-11242 Improve the error message in case of unknown underlying measure. Now, the message prints only the 10 measure names that are the closest (according to the Levenshtein algorithm) to the the provided name. The Levenshtein distance is now available for use in QfsStrings.
- APS-11090 Add a IBaseCondition to JSON Node converter, it can be found in ConditionToJsonNodeHelper class.
Changed
- APS-11103 post-processor properties (such as XMLA description) from the data cube are now sent to the associated measure in the query cube (see auto-distributed post-processors for more details).
- APS-11104, PIVOT-3188 formatters defined in a data cube are now propagated to a query cube Distributed Cube Description (v5.5 and After).
- PIVOT-3780 Records in the datastore query result cursor are now ordered by partition.
Fixed
- APS-11086 Add additional checks to monitor execution stream to support empty slicer. This fixes a
IndexOutOfBoundException
inSentinelMdxStream
. - APS-11092 The warning in ClusterLocalityIdentifierFactory about having post-processors with COPY aggregation function and no slicing distributing field now shows when it is supposed to.
- APS-11154
AFilteringPostProcessorV2
now extendsABasicPostProcessorV2
and correctly handles analysisLevel property. - APS-11154
AFilteringPostProcessorV2
andFilteringPostProcessorV2
are now parametrized with OutputType. - PIVOT-3765 fixes an edge case in ChunkedBitmap.equals().
- PIVOT-3785 Correct QFSBitmap
IndexOutOfBoundException
. - APS-11186 Rewrite condition in remove where to match more easily the drop partitions criteria.
- APS-11081 Add a cache to cube filters intersections to improve performance when intersecting a lot with the same subcube properties.
- APS-11212 Allow to reset a branch to its parent even if its forkpoint is a shadow commit.
5.7.4
Added
- APS-10942 The appendBatchSize in AJDBCSource (indicating how many records are drained from the queue at once) is now configurable in the constructor.
Changed
- PIVOT-3715 A failure during a transaction in ActivePivot triggers a rollback of the underlying datastore transaction when possible.
- APS-10990 Added Column#notEqualTo operator
- PIVOT-3224 Added Columns#shortSum
- PIVOT-3764 Improve the logic for impact computation in presence of Aggregation Procedures. This avoids to always trigger a full-refresh.
- APS-11068 Improve the exception in case any operation performed on a store during a commit fails. It always provides the store name, operation type and modified store partition.
Fixed
- PIVOT-3744 CoPPer can now drillup on analysis hierarchy levels
- PIVOT-3760 Correct replanning of aggregation procedure dependencies
- APS-10971 Ensures that retrievals computing the logic of Aggregation Procedures returns a true retrieval result. This fixes IllegalStateException complaining about "an unplanned retrieval (no primitive result)".
- APS-10846 Remove the incorrect check in memory monitoring report, causing UnsupportedOperationException.
- PIVOT-3663 Releasing a branch in a data cube does not throw an exception during the planning of a query in the query cube
- APS-11032 Use an appropriate object to merge contribution deltas in query cubes. This fixes an UnsupportedOperationException.
- APS-11063 fix translation with NO_REPLICATION
- PIVOT-3768 Support calling #next() without previous calls to #hasNext() for QfsBitmap iterators.
- APS-11075 Fix a bug when cloning a partitioning description with modulo on several fields.
- APS-10912 Checks for empty cube are now done on all the head versions and not only the last one.
5.7.3
Changed
- PIVOT-3720 Reduce the impact (memory consumption is reduced, local results are more efficiently translated <=> queries should be quicker) of Data Replication in polymorphic distribution
- APS-10729 - Fetch & Branch : Update the Fetch and ITransactionManager classes to handle data fetch into specific branch
- PIVOT-3714 Datastore fields used by levels are automatically converted to the default value when inserted in the datastore. This prevents errors in ActivePivot at commit time, when creating new Mdx Members.
- PIVOT-3741 Added AFilteringPostProcessorV2 and its concrete class FilteringPostProcessorV2, which are better implementations than AFilteringPostProcessor and FilteringPostProcessorWithEvaluator. The old ones will be removed in 5.8.0 and the new ones will take their name.
Fixed
- APS-10706 fix Aggregates Cache Statistics; the MBean also displays pivot version and branch name for the statistics.
- PIVOT-3676 The DistinctCountFunction now has an aggregated datatype of LONG instead of the same type as its inputType.
- PIVOT-3659 CoPPer now supports using aliases for fields in the base store
- PIVOT-3734 Fix incorrect exception raised by the sandbox on single-core machines due to ConstantPartitioning.
- APS-10875 Improve SinglePartitioning performance by removing a TIntSet of partition ids which causes thread contention
- APS-10843 Fix faulty nano-to-milli conversion in CSV source logging
- APS-10685 Fix NullPointerException in AHibernateContentService by allowing nested read actions
- APS-10920 Fix issue when joining with a dataset creates more than 1 analysis hierarchy
- APS-10897 Correct the handler of the Lookup Post-Processor to refresh a query for deleted point values.
- APS-10897 Correct the computation of changes for effective parameters. Previously, deleted point values with future expiration were returned as deleted multiple times.
- APS-10757 Improve ClientPool constructors to avoid confusion between properties and extensions. This correct usages of client pools to correctly pass the properties.
- APS-10856 Fix an ArrayOutOfBoundsException when a new partition is created in the middle of a query planning
- APS-10630 Queries on a query cube with an empty data cube no longer throw a NullPointerException.
- APS-10929 Fix NullPointerException which sometimes happened when conflating transactions.
- APS-10880 Fix NullPointerException when expanding query scope into a location associated with no facts.
- APS-10813 Fix legacy post processor visibility
- APS-10881 Analysis hierarchies were only partially supported by basic and dynamic post processors. The
analysis levels were removed on the location but not the cube filter. As fixing this behavior might introduce breaking
changes in how the post processors work we introduced three new classes that must be extended instead of the previous
version if the post processor uses the analysisLevels property:
ABasicPostProcessorV2
ABaseDynamicAggregationPostProcessorV2
ADynamicAggregationPostProcessorV2
These classes will be merged back into there classic implementation in 5.8, potentially introducing a breaking change for subclasses that overwrite the compute function or the prefetchers Post Processors that try to use analysisLevels without handling it correctly will now log a warning during the init. You can learn how to correctly implement AAdvancedPostProcessor with analysis levels in this confluence article.
- PIVOT-3737 Correct ConcurrentModificationException when using aggregation procedures.
- PIVOT-3738 Correctly consider partitionings of underlying retrievals of aggregation procedures.
5.7.2
Added
- APS-10427 Hadoop Configuration can be given to the parquet parser
- APS-10618 Support for user defined datastore schema separators with the system property
activeviam.datastore.schema.separator
Changed
- APS-10627 The Epoch dimension is now visible by default when enabled.
- PIVOT-3685 Detects usage of analysis hierarchies within the cube filters or the security subcubes.
- APS-10691 Added
QFSPools.getMixedWorkloadThreadCount()
to allow knowing how many threads can be used at max for a transaction (or for a query, since transaction and query pools have the same size). - SENTINEL-624 Improve performance of the Repository during insertion of new point values and while computing differential updates involving a lot of deleted point values.
- APS-10708 Fail when registering a workflow relying on an undefined Activiti workflow process.
- PIVOT-3707 Cube filters are now available to AggregationProcedures from #createContext through the ActivePivot context.
- APS-10615 It is now possible to exclude a specific field from the selection when adding all fields or all reachable fields of the base store or a reference (using .except()), rather than always excluding all fields with the same name (which is what .excluding() does)
- PIVOT-3675 Default implementations exist to configure branch and store permissions. They are designed for
development, not apply any security.
SeeFullAccessBranchPermissionsManagerConfig
andNoSecurityDatastoreServiceConfig
. - APS-10711 Formatting for thousand/million rescaling and multisection formatting are now supported.
- PIVOT-3224 Join between datasets now uses Analysis Aggregation Procedures.
Removed
- The following classes have been removed from the sandbox:
- ForexPostProcessor
- ForexHandler
- ForexStream
- ReferenceCurrency
- ReferenceCurrencyTranslator.
- The measure pnl.FOREX is defined in copper. The currency can now be chosen via a new slicing hierarchy named TargetCurrency (automatically created by copper).
Fixed
- APS-10699 Avoid exception when new branch is created without subcube
- PIVOT-3699 A multimensional single element set in the MDX WHERE clause now works (like a tuple).
- APS-10740 Correctly compute modulo on multiple fields, not to double the number of produced values.
- APS-10766 unmark epochs that are released because they corresponded to shadow commits
- PIVOT-3580 Implementation of a filtered list, FilteredList, to manage different measure description (sub)types for a single parent list.
- PIVOT-3673 Fix NullPointerException when an ExpandLocationResult overflows during large transactions
- APS-10724 Correct formatting of alert messages in the sandbox project.
5.7.1
Added
- APS-6362 The Aggregate Store size was added in JMX for both the Bitmap and Leaf aggregate providers.
- PIVOT-3548 The Content Server UI now has a title.
Changed
- APS-10622 APS-10624 PIVOT-3608 Fluent Builder API was improved (slicing, factless, memberProperty).
- SENTINEL-622 Improve the parameter store partitioning. This store is now partitioned by parameter name and ActivePivot name for which it defined, so any lookup for a given parameter within a given cube hits a given partition. Then, the partitioning distributes the point values on a multi-modulo of the erasure and the wildcard erasure using the number of cores of the machine.
- APS-10426 Null values in parquet source are now converted to default field value.
Fixed
- APS-10614 Correct query planning for query cubes with respect to analysis hierarchies.
- APS-10184 Measures from different applications and with the same aggregation id (even if they have different names) are no longer merged in the the query cube, giving wrong results
- APS-10591 Correct merging of retrieval results not containing any aggregated measures.
- PIVOT-3537 Correctly update permissions of folders from the Content Server UI.
- APS-10580 Prevent from automatically adding levels to analysis hierarchies declared using an xml file, and add check that analysis hierarchies do not have levels.
- APS-10528 Fix MemberNamePathStyle context value in intersected context
- APS-10545 Fix issue when a data cube leaves its cluster while planning a query
- PIVOT-3224 (CoPPer) Use actual cube name in tests
5.7.0
Added
- PIVOT-3612 Drop dedicated Angular UI of ActiveMonitor. ActiveUI becomes the only UI for this component, providing all features of the old UI. See the migration notes to see how to update your existing post-processors.
- PIVOT-3609 Support prepared statements in fetch-only JDBC Topics
- DS-293 Add API to create CompiledGetByKey query and run them, either on a particular version (runInVersion) or on the current transaction (runInTransaction). See the documentation for more details and examples.
- PIVOT-3655 The Content Server / Service supports multiple owners and readers for each entry.
- APS-10493 Create AFilteringPostProcessor to increase flexibility when implementing a filtering post-processor.
Changed
- PIVOT-3584 Replace
IPartitionedPostProcessor#getPartitioningLevels(...)
calledIPostProcessor#setPartitioningLevels(..)
to configure the levels on which a post-processor is partitioned. - PIVOT-3647 Revamped Spring configuration classes to either define beans or import other classes.
- PIVOT-2879 Do not notify Content Server listener when a non-readable child entry is updated.
- APS-9893 Keep an aggregates cache for the latest version of each branch. The branches on which aggregates will be cached can be configured.
- PIVOT-3371 FileSystemCSVTopicFactory now implements AutoCloseable. Usage in the sandbox has been modified (Spring Bean that auto-closes instead of the callback in the csv source close method)
- PIVOT-3625 Update dependencies to their latest versions, notably Spring (→ 5.0.6) and Spring-security (→ 5.0.5).
Fixed
- PIVOT-3626 Correctly publish retrieval additional measure across threads.
- APS-10465 Fix native measure computation in distributed setup when one of the data cubes is empty
- DS-294 Fix "scan in transaction" methods for chunks having a single value
- PIVOT-3641 fix incorrect subcube compilation when using condition on analysis level
- APS-10485 fix realtime drillthrough when member contains "[" and "]"