Parallel Content Download with Latency-Based Thread Splitting

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

Existing content management systems inefficiently spawn unnecessary threads during parallel content downloading, leading to suboptimal resource utilization and increased response times.

Innovation Solution

Implement mechanisms to split content downloading between threads based on network latency metrics and remaining download time, creating additional threads only when necessary to optimize thread usage.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Speed

If the client spawns multiple threads to download content segments in parallel, then the download speed is improved, but unnecessary threads are created leading to suboptimal resource utilization

Engineering Contradiction:
Improvedownload speedVSAvoidresource utilization
Core Design Contradiction:
SpeedVSLoss of energy

Solution Approach 1:

The system performs preliminary actions by establishing a download task and initially spawning one thread to begin downloading the first segment before determining whether to split the download. This preliminary download phase allows the system to assess actual network conditions and content characteristics before committing to additional thread creation, thereby avoiding premature or unnecessary thread spawning while still achieving parallel download when beneficial

Inventive Principle:
Principle #10Preliminary action

2Speed

If the client spawns multiple threads to download content segments in parallel, then the download speed is improved, but the system complexity increases due to thread management

Engineering Contradiction:
Improvedownload speedVSAvoidthread management complexity
Core Design Contradiction:
SpeedVSDevice complexity

Solution Approach 1:

The system establishes a download task and spawns an initial thread as a preliminary action before evaluating whether parallel download is beneficial. This staged approach simplifies thread management by starting with a single thread and only introducing additional threads when the evaluation criteria are met, reducing the overall complexity of thread coordination and management

Inventive Principle:
Principle #10Preliminary action

Solution Approach 2:

The system dynamically adjusts the number of threads based on runtime evaluation of network conditions, content characteristics, and initial download performance. Rather than statically determining thread count, the system adapts the parallelism level during execution, allowing optimal thread management that responds to actual system conditions rather than predetermined configurations

Inventive Principle:
Principle #15Dynamics

3Loss of energy

If the client waits to evaluate download conditions before starting, then thread usage is optimized, but the response time increases

Engineering Contradiction:
Improvethread usage efficiencyVSAvoidresponse time
Core Design Contradiction:
Loss of energyVSLoss of time

Solution Approach 1:

The system performs a preliminary action by immediately spawning one thread to begin downloading the first segment without waiting for complete evaluation of download conditions. This initial thread provides immediate response while the system concurrently evaluates whether additional threads should be spawned, thereby eliminating the trade-off between evaluation time and response time by making the initial download action immediate and conditional subsequent optimization

Inventive Principle:
Principle #10Preliminary action

Data Source

PatentUS20250337820A1Method and system for parallel content download
Publication Date: 2025.10.30 OPEN TEXT CORPORATION
  • US20250337820A1 patent drawing
  • US20250337820A1 patent drawing
  • US20250337820A1 patent drawing

AI summary

A computer-implemented method for parallel downloading of content includes connecting to a server through which a content is available, starting to download the content from the server to a client computer, determining whether to split the downloading of the content based on a set of factors, the set of factors comprising a network latency metric and a remaining download time to download a remaining amount of the content and based on a determination to split the downloading of the content, and in parallel to downloading a first part of the content from the server to the client computer, connecting to the server and downloading an additional part of the content from the server to the client computer.