I was working through <this> part of the data load...
# questions-and-troubleshooting
c
I was working through this part of the data loading from MinIO example when I ran across some odd behavior. After I created the table and loaded the data from the parquet file I ran this query:
SELECT DISTINCT BehaviorType FROM user_behavior_declared ORDER BY BehaviorType;
I got back 8 duplicates of each Behavior Type , not a distinct result. When I recreated the table and changed the bucketing to from hash to random, and ran the same query, the results where distinct, as expected. Is there a reason for this behavior that I am missing? Thank you.
k
which version?
c
4.0.3-fbcf73d
Another new discovery is that if I use an ALTER TABLE statement to change the bucketing type to RANDOM, then back to HASH, I get distinct values.
p
are u able to upgrade version to 4.0.6 and test again ?
c
4.0.6 gives me distinct results. Was there an issue that would have caused this odd behavior in versions prior to 4.0.6?
p
ye, it is possible a known issue with bug fixed already , 4.0.8 will be a production ready version , before this could have some bug still
c
Could you please point me to the issue in the bug tracker?