Re: How to handle secondary keys in partitioning?
I didn't phrase my question very well.
I understand that MySQL will query each non-pruned partition automatically.
My question was more about how effective partitioning would be if some of my queries will involve all partitions.
So I partition my table into N partitions by recipient_id. And for some queries I want to "select * where sender_id=1 ordered by date".
For a non-partitioned table the above query would only require reading from 1 index, assuming I have an index on (sender_id, date). Also no sorting is required because the index is already sorted the right way.
For a partitioned table the same query would require reading from all N indexes and then sort the results, right?
For cases like that would partitioning actually reduce performance compared to a non-partitioned table? If so, what type of performance degradation would we will here?
Subject
Views
Written By
Posted
4265
May 04, 2010 12:46AM
2402
May 04, 2010 01:29PM
Re: How to handle secondary keys in partitioning?
2047
May 04, 2010 04:30PM
2244
May 05, 2010 02:20AM
2099
May 06, 2010 12:04AM
2502
May 06, 2010 03:23PM
2141
May 06, 2010 10:50PM
2120
May 07, 2010 02:38AM
2066
May 08, 2010 05:31PM
2120
May 09, 2010 04:37AM
2017
May 09, 2010 12:41PM
1983
May 09, 2010 01:23PM
2093
May 12, 2010 05:29AM
2531
May 06, 2010 12:34AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.