This portal is to open public enhancement requests against products and services offered by the IBM Data & AI organization. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
Shape the future of IBM!
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Search existing ideas
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post your ideas
Post ideas and requests to enhance a product or service. Take a look at ideas others have posted and upvote them if they matter to you,
Post an idea
Upvote ideas that matter most to you
Get feedback from the IBM team to refine your idea
Specific links you will want to bookmark for future use
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
IBM Employees should enter Ideas at https://ideas.ibm.com
See this idea on ideas.ibm.com
The CURRENT ACCELERATOR special register specifies a preferred target accelerator or accelerators to which Db2 sends dynamic SQL queries.
But If you have multiple accelerators on which the same set of Db2 tables are accelerated, by default the workload balancing algorithm (WLB) distributes the queries based on the queue length on each accelerator. When the CURRENT ACCELERATOR special register names a particular eligible accelerator server, Db2 considers sending eligible SQL to that server before it sends it to other accelerator servers. But If the accelerator server that is named by the CURRENT ACCELERATOR isn't available, Db2 considers other available accelerator servers.
MY REQUEST: Create new special register, for sample: CURRENT FORCE ACCELERATOR, that forces the execution on a chosen accelerator. And If the accelerator server that is named by the CURRENT FORCE ACCELERATOR isn't available then the query run on DB2 or fail if CURRENT QUERY ACCELERATION is set to ALL.
By clicking the "Post Comment" or "Submit Idea" button, you are agreeing to the IBM Ideas Portal Terms of Use.
Do not place IBM confidential, company confidential, or personal information into any field.
This idea becomes more important in IDAA V8 with the advent of AOTs that use accelerator groups. I have no way of guaranteeing which table I am looking at which may be very important.
Old rejected Idea, but this needs to be revisited. The join solution works ok for selects, but not for inserts if you need to fix something in an AOT on a specific server.
Hi Dennis,
Thanks you for your review of my idea.
Thanks for your time and your help.
Regards.
It is currently not planned to add a new special register to force a query to an Accelerator but this workaround might help:
CREATE TABLE ACCELERATORS.ACC1 (C1 INT);
INSERT INTO TABLE ACCELERATORS.ACC1(C1) values 1;
add ACCELERATORS.ACC1 to ACCEL1
load ACCELERATORS.ACC1 on ACCEL1
SET CURRENT QUERY ACCELERATION = ALL
SELECT <your query> FROM <yourtable>, ACCELERATORS.ACC1 for fetch only