Upgrading to 9.1.2 or 9.1.3 and the Console Tool Log Shows There are unscheduled tasks in the system which could cause migrations to fail
search cancel

Upgrading to 9.1.2 or 9.1.3 and the Console Tool Log Shows There are unscheduled tasks in the system which could cause migrations to fail

book

Article ID: 20127

calendar_today

Updated On:

Products

CA Application Delivery Analysis MTP (NetQoS / ADA) CA Infrastructure Performance

Issue/Introduction

Description:

When upgrading from RA 9.0.161 to NFA 9.1.3 you must run the Console Tool(consoletool-exe.jar) on the NFA console before starting to upgrade any servers.

This tool is included with the NFA console software download.

This will copy the necessary data from the RA Console to the RA Harvester's database to prep for the upgrade.

This will also check the database_servers_scheduler table on the RA Console for any "unfinished" tasks.

There was an issue in RA 9.0.161 where if the Merge button was clicked too many times it may cause all future merges to occur. If there are merge/delete tasks in the database_servers_schedule table from the above mentioned issue it will cause the error below in the Console tool log file:

[ALWAYS ] - There are unscheduled tasks in the system which could cause migrations to fail. Please contact CA Support for further assistance.

Solution:

The solution to this is to delete the rows from the database_servers_scheduler table that have not completed yet.

  1. To do this you can use the query below to first verify that this is the case:
    mysql -P3308 reporter
    SELECT * FROM database_servers_scheduler WHERE command IN ('MERGE INTERFACE', 'DELETE INTERFACE') AND started = 0;

  2. If any results are returned that show 'MERGE INTERFACE' or 'DELETE INTERFACE' tasks, then delete these rows by running:
    DELETE FROM database_servers_scheduler WHERE command IN ('MERGE INTERFACE', 'DELETE INTERFACE') AND started = 0;

    <Please see attached file for image>

    Figure 1

  3. If you run the console tool again, the error should now be cleared and the Harvesters should be updated with the information they need to start the upgrade. If there are any other errors in the Console Tool Log, make note of them and contact CA Support.

  4. (Optional)If you want to go back and check the results returned in the query from step 1 you can use the query below to see which interfaces did not merge and did not delete and you can merge and/or delete them again through the 'RA/NFA Adminstration->Phsyical & Virtual Interfaces' Page.

    If you look at the CommandArguments column of the query in step 1 you will see it lists the SourceInterfacedID and the DestinationInterfaceID. Use these ID numbers in the query below hwere 'x' is the SourceInterfaceID and 'y' is the DestinationInterfaceId:
         select * from agents_all_view where id in(x, y);

    This will show you details about which Router, ifindex, etc the task was trying to merge or delete.

    Below is an example of the query, where the SourceInterfaceId was 170 and the DestinationInterfaceID was 171.

    <Please see attached file for image>

    Figure 1

  5. (Optional) If need be you can use this information to go back to the RA/NFA GUI and Merge and/or Delete the interfaces again either before or after the upgrade.

Environment

Release: RAIB1H99000-9.1-Network Flow Analysis-Interface Bundle-Hardware
Component:

Attachments

1558717166591000020127_sktwi1f5rjvs16ugd.gif get_app
1558717164590000020127_sktwi1f5rjvs16ugc.gif get_app