Skip to Main Content
IBM Data and AI Ideas Portal for Customers


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,

  1. Post an idea

  2. Upvote ideas that matter most to you

  3. 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


Status Not under consideration
Created by Guest
Created on Feb 3, 2020

force the execution of a query on an accelerator if more than one is available.

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.

  • Guest
    Reply
    |
    Apr 8, 2020

    Hi Dennis,

    Thanks you for your review of my idea.
    Thanks for your time and your help.

    Regards.

  • Guest
    Reply
    |
    Apr 8, 2020

    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