Paul Leclercq
Paul Leclercq

Reputation: 1018

Aerospike secondary index not returning all data after upgrade

24 hours after all data were migrated for a 3.8.2.3 to 3.9.1.1 upgrade, some rows were missing when using a secondary index (NUMERIC) with AQL :

aql> SELECT * FROM NameSpace.set WHERE missingdata_index = 0

Everything was fine using the PK :

aql> SELECT * FROM NameSpace.set WHERE PK = 'PKVALUE'

Notes :

Upvotes: 1

Views: 127

Answers (1)

Meher
Meher

Reputation: 2939

This actually may be related to an issue that was just fixed and should be available in the next release (you should be able to check for the following jira: AER-4930 in the upcoming release notes - hopefully by the end of this month).

Upvotes: 2

Related Questions