Skip to Main Content
Integration


This is an IBM Automation portal for Integration products. 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
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


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.


Status Planned for future release
Workspace Aspera Ideas
Created by Guest
Created on Dec 2, 2022

Add average transfer rate to asyncs API

Give async the ability to calculate the true average transfer rate based on the the summary of the file_size/stop_time-start_time for each file.

Since async is running in persistent mode, the time of the session does not give a good overview of the average rate.

For example, it takes 1 hour to iterate a source directory and we only transfer a 10 byte file. 10 bytes/hour would not be high speed but if we calculate that the 10 bytes took .1 ms - then that is better.

Therefore, make a counter that accumulates the bytes transferred for each file and the stop_time - start_time for that file. Then, an average file transferred rate can be computed by the totals of the stop_time-start_time differences and the total bytes transferred.

Then make this number available in the asyncs/id/summary API output.

Idea priority Medium
  • Guest
    Reply
    |
    Dec 4, 2022

    "start_time": 1659459751780,

    "last_updated": 1659460530263,

    "seconds_since_last_activity": 0,

    "run_time": 0,

    "transferred_bytes": 53687091200,

    "deduped_bytes": 0,

    "deleted_bytes": 0,



    above one is the response from asyncs API, we need Transferred Bytes in Gbps and as well as run time for each session (we are not able to see the run time once transfer is completed).