on 2014 Apr 11 11:38 AM
Hi,
I've noticed, updating from SA 11.0.1.2584 to 11.0.1.3027 or 11.0.1.3113, that the queries on some of our views are really slow.
Update
The issues seems to e caused by sorted lists. So here is a simple scenario which - at least in our case, offers very poor performance compared to 11.0.1.2584:
Define a view which contains a sorted list:
CREATE VIEW VIEW_01 AS SELECT T1.PRODUCT_ID, LIST(T1.IND_AREA ORDER BY T1.IND_AREA) AS LIST_AREA FROM TABLE_1 T1 GROUP BY T1.PRODUCT_ID
Then query the view (incl the WHERE clause)
SELECT V1.PRODUCT_ID, V1.LIST_AREA FROM VIEW_01 V1 WHERE V1.PRODUCT_ID = 'someID'
(please don't mind the columns, it's just an example).
I was expecting Sybase to first filter by "someID" (which it does, on 11.0.1.2584). Since the update, though, for some reason we have yet to find or understand, this doesn't happen.
The query time grew from a couple of seconds to over 12 minutes.
Initial questions
For example, given the following hierarchy: VIEW_2 <- VIEW_1 <- TABLE_1, with TABLE_1 containing (product_id, valid_from, valid_to). A query on TABLE_1 with a filter on the product_id and validity, runs as expected (that is, fast). Same for a query with an identical where clause on VIEW_1. A third identical query on VIEW_2, however, first builds VIEW_1 completely and only applies the filter afterwards. This leads to significant performance issues.
I'll add that proper indexes are used and that the statistics are up to date.
Is there a change introduced by the updates that I'm not aware of and which is not highlighted in the release notes/comes from an older updated, related to how query plans work on views/predicate push down etc work?
We've also encountered another oddity - if TABLE_1 calls "list" for some of its columns, similar performance issues arise.
Regards, GM
I have tried to reproduce this change in behaviour and I haven't been able to do so. I tested with the following query:
create view V as
select manager_id, list(emp_fname order by emp_id) L
from employee
group by manager_id;
select *
from V
where V.manager_id=501;
With my testing, I see consistently (10.0.1(3415), 11.0.1(2044), 11.0.1(2584), 11.0.1(2878)) that the predicate V.manager_id=501
is evaluated after the GROUP BY if there is an ORDER BY in the LIST aggregate. Without the ORDER BY, the predicate is evaluated before the GROUP BY. This is a known restriciton of our predicate pushdown semantic transformations. In discussions with colleagues we have not been able to identify what would have ever allowed that predicate pushdown correctly, but we surmised that perhaps there was a software defect that unintentionally allowed the pushdown. While it is safe in this case, the logic to ensure it is safe is not part of the current servers and the server should not be doing the predicate pushdown here. This is an enhancement that we are considering. The limitation currently affects any aggregate with an ORDER BY (array_agg, list, xmlagg) and any window function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
71 | |
11 | |
11 | |
10 | |
9 | |
9 | |
7 | |
6 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.