JP5520369B2 - コンピュータ・システム、方法及びプログラム - Google Patents
コンピュータ・システム、方法及びプログラム Download PDFInfo
- Publication number
- JP5520369B2 JP5520369B2 JP2012514749A JP2012514749A JP5520369B2 JP 5520369 B2 JP5520369 B2 JP 5520369B2 JP 2012514749 A JP2012514749 A JP 2012514749A JP 2012514749 A JP2012514749 A JP 2012514749A JP 5520369 B2 JP5520369 B2 JP 5520369B2
- Authority
- JP
- Japan
- Prior art keywords
- task
- resource
- phase
- resource allocation
- stream format
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Active
Links
- 238000000034 method Methods 0.000 title claims description 44
- 238000012545 processing Methods 0.000 claims description 38
- 230000008569 process Effects 0.000 claims description 30
- 238000013468 resource allocation Methods 0.000 claims description 27
- 230000007704 transition Effects 0.000 claims description 23
- 238000006467 substitution reaction Methods 0.000 claims description 7
- 238000003860 storage Methods 0.000 claims description 5
- 230000005540 biological transmission Effects 0.000 claims description 4
- 230000001052 transient effect Effects 0.000 claims 1
- 238000005259 measurement Methods 0.000 description 12
- 230000008859 change Effects 0.000 description 9
- 230000006870 function Effects 0.000 description 8
- 238000010586 diagram Methods 0.000 description 5
- 238000005516 engineering process Methods 0.000 description 5
- 241000700605 Viruses Species 0.000 description 4
- 238000005457 optimization Methods 0.000 description 4
- 238000004364 calculation method Methods 0.000 description 3
- 238000004891 communication Methods 0.000 description 3
- 238000009826 distribution Methods 0.000 description 3
- 238000000605 extraction Methods 0.000 description 3
- 238000004458 analytical method Methods 0.000 description 2
- 239000000284 extract Substances 0.000 description 2
- 230000004927 fusion Effects 0.000 description 2
- 238000013507 mapping Methods 0.000 description 2
- 238000013508 migration Methods 0.000 description 2
- 230000005012 migration Effects 0.000 description 2
- 238000012544 monitoring process Methods 0.000 description 2
- 238000007781 pre-processing Methods 0.000 description 2
- 238000005096 rolling process Methods 0.000 description 2
- 238000012546 transfer Methods 0.000 description 2
- 239000013598 vector Substances 0.000 description 2
- 241000721662 Juniperus Species 0.000 description 1
- 241000935974 Paralichthys dentatus Species 0.000 description 1
- 230000001174 ascending effect Effects 0.000 description 1
- 230000002457 bidirectional effect Effects 0.000 description 1
- 230000007423 decrease Effects 0.000 description 1
- 230000001934 delay Effects 0.000 description 1
- 238000001914 filtration Methods 0.000 description 1
- 230000014509 gene expression Effects 0.000 description 1
- 230000005484 gravity Effects 0.000 description 1
- 230000014759 maintenance of location Effects 0.000 description 1
- 238000007726 management method Methods 0.000 description 1
- 238000000275 quality assurance Methods 0.000 description 1
- 238000011160 research Methods 0.000 description 1
- 238000004904 shortening Methods 0.000 description 1
Images
Classifications
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L43/00—Arrangements for monitoring or testing data switching networks
- H04L43/04—Processing captured monitoring data, e.g. for logfile generation
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/48—Program initiating; Program switching, e.g. by interrupt
- G06F9/4806—Task transfer initiation or dispatching
- G06F9/4843—Task transfer initiation or dispatching by program, e.g. task dispatcher, supervisor, operating system
- G06F9/485—Task life-cycle, e.g. stopping, restarting, resuming execution
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Data Mining & Analysis (AREA)
- Computer Networks & Wireless Communication (AREA)
- Signal Processing (AREA)
- Data Exchanges In Wide-Area Networks (AREA)
- Debugging And Monitoring (AREA)
- Information Transfer Between Computers (AREA)
Description
ループにする(Rolling loop): A+A+A....A => loop(n, A)
ここで、A+A+A....Aは、Aの直列処理であり、loop(n, A)は、Aをn回まわすループのことをあらわす。
ループを解く(Unrolling loop): loop(n, A) => A+A+A....A
ループの直列(Series Rolling): split_join( A, A... A ) => loop(n, A)
これは、並列に走るA, A... Aを、loop(n, A)にすることである。
ループの並列(Pararell unrolling loop): loop(n, A) => split_joing( A, A, A ........A )
これは、loop(n, A)を、並列に走るA, A... Aにすることである。
ループの分割(Loop splitting): loop(n, A) => loop(x, A) + loop(n-x, A)
並列ループ分割(Pararell Loop splitting): loop(n, A) => split_join( loop(x, A), loop(n-x, A) )
ループ融合(Loop fusion): loop(n, A) + loop(n, B) => loop(n, A+B)
ループ融合の直列(Series Loop fusion): split_join( loop(n, A), loop(n, B) ) => loop(n, A+B)
ループ分配(Loop distribution): loop(n, A+B) => loop(n, A) + loop(n, B)
並列ループ分配(Pararell Loop distribution): loop(n, A+B) => split_join( loop(n, A), loop(n, B) )
ノード結合(Node merging): A+B => {A,B}
ノード分割(Node splitting): {A,B} => A+B
ループ置換(Loop replacement): loop(n,A) => X /* X is lower cost */
ノード置換(Node replacement): A => X /* X is lower cost */
add splitjoin {
split roundrobin();
add pipeline {
add A();
add B();
add C();
add D();
}
add pipeline {
add E();
add F();
}
join roundrobin();
}
http://groups.csail.mit.edu/cag/streamit/
あるいは、http://groups.csail.mit.edu/cag/streamit/papers/streamit-cookbook.pdfを参照されたい。
http://domino.research.ibm.com/comm/research_projects.nsf/pages/esps.spade.html
を参照されたい。
− データ並列化、パイプラインの決定
このとき、タスク並列も利用することで、メモリアクセスのローカリティの向上、通信競合の抑制、通信遅延の隠蔽などの効果が得られる。
− 処理が重いプロトコル・スタックを複数ステージに切り分けたり、軽いプロトコル・スタックを1つのステージに統合したりすることで、資源あたりの負荷とパイプラインピッチのバランスを取る。
task(b,r):資源rのフェーズbでのタスク
Pre(t):タスクtの先行タスクの集合
Post(t):タスクtの後続タスクの集合
start(b,t) = max{start(b,p):p∈Pre(t)} + pitch
pitch:パイプラインピッチ(各タスクの実行時間)
D = max{0,start(a,task(a,r)) - start(b,task(t)}
Dは、代理タスク実行開始までの空き時間を含むコストである。
C = max{delay(i,r),delay(r,j):i∈Deputize(a,b,s),s∈Pre(t),j∈Resource(b,u),u∈Post(t)}
Resource(b,t):フェーズbでタスクtを担当する資源の集合
Deputize(a,b,t):フェーズaからフェーズbへの切り替え時にタスクtを代行する資源の集合
delay(a,b):資源aがデータの送信を開始してから、資源bがデータの受信を完了するまでの時間
T = change(task(a,r),t) + change(t,task(b,r))
change(t1,t2):もしタスクt1がt2と同じなら0、そうでなければTC(タスク切り替え1回あたりのコスト、任意の定数)
102 バス
104 マルチコア・プロセッサ
106 マルチコア・プロセッサ
108 RAM
110 イーサネット・ポート
112 フラッシュROM
202 統計情報収集モジュール
204 様相パターン抽出モジュール
206 様相パターン群
208 構成テーブル
209 システム環境
210 コンパイラ
212 ストリーム形式コード群
214 遷移テーブル
216 様相パターン計測モジュール
218 様相パターン比較モジュール
220 ストリーム形式コード選択モジュール
222 切換モジュール
224 実行環境
702 様相パターン
704 様相パターン
706 様相パターン
Claims (9)
- コンピュータの処理により、ネットワーク・トラヒック情報の内容に応じて、処理を適合するように動的に構成を変更するための方法であって、
ネットワーク・トラヒック情報の異なる複数の内容に対応するフェーズに各々適合するように、タスクと該タスクが実行されるリソース割当てをストリーム形式で指定する情報を予め保存するステップと、
ネットワーク・トラヒック情報を測定するステップと、
測定された前記ネットワーク・トラヒック情報に相対的に近いストリーム形式のリソース割当て情報を次のフェーズとして選択するステップと、
既に選択されている現在のフェーズのストリーム形式のリソース割当てから、前記次のフェーズのストリーム形式のリソース割当てに切り替えるステップであって、現在のフェーズのストリーム形式のリソース割当てにおいて先に処理を終えた前記リソースが、前記次のフェーズのストリーム形式のリソース割当てにおけるタスクを過渡的に代行して実行するようになされる、ステップを有する、
コンピュータ・システムの制御方法。 - 利用可能な各リソースについて、各フェーズ間移行において代行すべきタスク(以下、「代行タスク」という)を選択して対応するテーブルに記憶するステップを有し、前記切り替えるステップは、当該リソースに対応する前記テーブルから、現在のフェーズと次のフェーズ間移行において代行すべきタスクとして記憶された前記代行タスクを検索して代行して実行する、請求項1に記載の方法。
- 前記フェーズ間移行の前記代行タスクは、関連するタスク間の切り替えコスト、代行タスク実行開始までの空き時間を含むコスト、及び関連するフェーズ間でリソース間のデータ送受信の時間を含むコストが小さくなるように選択される、請求項2に記載の方法。
- コンピュータの処理により、ネットワーク・トラヒック情報の内容に応じて、処理を適合するように動的に構成を変更するためのシステムであって、
記憶手段と、
ネットワーク・トラヒック情報の異なる複数の内容に対応するフェーズに各々適合するように、タスクと該タスクが実行されるリソース割当てをストリーム形式で指定する情報を前記記憶手段に保存する手段と、
ネットワーク・トラヒック情報を測定する手段と、
測定された前記ネットワーク・トラヒック情報に相対的に近いストリーム形式のリソース割当て情報を次のフェーズとして選択する手段と、
既に選択されている現在のフェーズのストリーム形式のリソース割当てから、前記次のフェーズのストリーム形式のリソース割当てに切り替える手段であって、現在のフェーズのストリーム形式のリソース割当てにおいて先に処理を終えた前記リソースが、前記次のフェーズのストリーム形式のリソース割当てにおけるタスクを過渡的に代行して実行するようになされる、手段を有する、
コンピュータ・システム。 - 利用可能な各リソースについて、各フェーズ間移行において代行すべきタスク(以下、「代行タスク」という)を選択して対応するテーブルに記憶する手段を有し、前記切り替える手段は、当該リソースに対応する前記テーブルから、現在のフェーズと次のフェーズ間移行において代行すべきタスクとして記憶された前記代行タスクを検索して代行して実行する、請求項4に記載のシステム。
- 前記フェーズ間移行の前記代行タスクは、関連するタスク間の切り替えコスト、代行タスク実行開始までの空き時間を含むコスト、及び関連するフェーズ間でリソース間のデータ送受信の時間を含むコストが小さくなるように選択される、請求項5に記載のシステム。
- コンピュータの処理により、ネットワーク・トラヒック情報の内容に応じて、処理を適合するように動的に構成を変更するためのプログラムであって、
前記コンピュータをして、
ネットワーク・トラヒック情報の異なる複数の内容に対応するフェーズに各々適合するように、タスクと該タスクが実行されるリソース割当てをストリーム形式で指定する情報を予め保存するステップと、
ネットワーク・トラヒック情報を測定するステップと、
測定された前記ネットワーク・トラヒック情報に相対的に近いストリーム形式のリソース割当て情報を次のフェーズとして選択するステップと、
既に選択されている現在のフェーズのストリーム形式のリソース割当てから、前記次のフェーズのストリーム形式のリソース割当てに切り替えるステップであって、現在のフェーズのストリーム形式のリソース割当てにおいて先に処理を終えた前記リソースが、前記次のフェーズのストリーム形式のリソース割当てにおけるタスクを過渡的に代行して実行するようになされる、ステップを実行させる、
コンピュータ・システムの制御プログラム。 - 利用可能な各リソースについて、各フェーズ間移行において代行すべきタスク(以下、「代行タスク」という)を選択して対応するテーブルに記憶するステップを有し、前記切り替えるステップは、当該リソースに対応する前記テーブルから、現在のフェーズと次のフェーズ間移行において代行すべきタスクとして記憶された前記代行タスクを検索して代行して実行する、請求項7に記載のプログラム。
- 前記フェーズ間移行の前記代行タスクは、関連するタスク間の切り替えコスト、代行タスク実行開始までの空き時間を含むコスト、及び関連するフェーズ間でリソース間のデータ送受信の時間を含むコストが小さくなるように選択される、請求項8に記載のプログラム。
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2012514749A JP5520369B2 (ja) | 2010-05-14 | 2011-04-21 | コンピュータ・システム、方法及びプログラム |
Applications Claiming Priority (4)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2010112117 | 2010-05-14 | ||
JP2010112117 | 2010-05-14 | ||
PCT/JP2011/059833 WO2011142227A1 (ja) | 2010-05-14 | 2011-04-21 | コンピュータ・システム、方法及びプログラム |
JP2012514749A JP5520369B2 (ja) | 2010-05-14 | 2011-04-21 | コンピュータ・システム、方法及びプログラム |
Publications (2)
Publication Number | Publication Date |
---|---|
JPWO2011142227A1 JPWO2011142227A1 (ja) | 2013-07-22 |
JP5520369B2 true JP5520369B2 (ja) | 2014-06-11 |
Family
ID=44914283
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2012514749A Active JP5520369B2 (ja) | 2010-05-14 | 2011-04-21 | コンピュータ・システム、方法及びプログラム |
Country Status (7)
Country | Link |
---|---|
US (1) | US9794138B2 (ja) |
JP (1) | JP5520369B2 (ja) |
CN (1) | CN102947798B (ja) |
DE (1) | DE112011100714B4 (ja) |
GB (1) | GB2495417B (ja) |
TW (1) | TW201214286A (ja) |
WO (1) | WO2011142227A1 (ja) |
Families Citing this family (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN102402452B (zh) * | 2011-12-12 | 2014-04-09 | 深圳市共进电子股份有限公司 | 一种编译方法及装置 |
US9608933B2 (en) * | 2013-01-24 | 2017-03-28 | Hitachi, Ltd. | Method and system for managing cloud computing environment |
CN103346980B (zh) * | 2013-07-02 | 2016-08-10 | 华为技术有限公司 | 一种业务调度方法、装置及网络设备 |
CN104679763A (zh) * | 2013-11-28 | 2015-06-03 | 富士通株式会社 | 用于加速工作流的执行的装置和方法 |
US10609119B2 (en) * | 2017-11-03 | 2020-03-31 | Salesforce.Com, Inc. | Simultaneous optimization of multiple TCP parameters to improve download outcomes for network-based mobile applications |
US11126430B2 (en) * | 2019-05-11 | 2021-09-21 | Intel Corporation | Vector processor for heterogeneous data streams |
CN111198765B (zh) * | 2019-12-31 | 2023-08-04 | 富联裕展科技(河南)有限公司 | 运算资源分配和管理方法及代理服务器 |
Family Cites Families (55)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5867704A (en) | 1995-02-24 | 1999-02-02 | Matsushita Electric Industrial Co., Ltd. | Multiprocessor system shaving processor based idle state detection and method of executing tasks in such a multiprocessor system |
JPH08292932A (ja) * | 1995-02-24 | 1996-11-05 | Matsushita Electric Ind Co Ltd | マルチプロセッサシステムおよびマルチプロセッサシステムにおいてタスクを実行する方法 |
US6771661B1 (en) * | 1999-07-21 | 2004-08-03 | Cisco Technology, Inc. | Apparatus and methods for providing event-based data communications device configuration |
US6597956B1 (en) * | 1999-08-23 | 2003-07-22 | Terraspring, Inc. | Method and apparatus for controlling an extensible computing system |
US6779016B1 (en) * | 1999-08-23 | 2004-08-17 | Terraspring, Inc. | Extensible computing system |
US7464147B1 (en) * | 1999-11-10 | 2008-12-09 | International Business Machines Corporation | Managing a cluster of networked resources and resource groups using rule - base constraints in a scalable clustering environment |
US7228546B1 (en) * | 2000-01-28 | 2007-06-05 | Hewlett-Packard Development Company, L.P. | Dynamic management of computer workloads through service level optimization |
US6711607B1 (en) | 2000-02-04 | 2004-03-23 | Ensim Corporation | Dynamic scheduling of task streams in a multiple-resource system to ensure task stream quality of service |
US7203746B1 (en) * | 2000-12-11 | 2007-04-10 | Agilent Technologies, Inc. | System and method for adaptive resource management |
JP2002202959A (ja) * | 2000-12-28 | 2002-07-19 | Hitachi Ltd | 動的な資源分配をする仮想計算機システム |
JP2004171234A (ja) * | 2002-11-19 | 2004-06-17 | Toshiba Corp | マルチプロセッサシステムにおけるタスク割り付け方法、タスク割り付けプログラム及びマルチプロセッサシステム |
US7685254B2 (en) | 2003-06-10 | 2010-03-23 | Pandya Ashish A | Runtime adaptable search processor |
US7664823B1 (en) * | 2003-09-24 | 2010-02-16 | Cisco Technology, Inc. | Partitioned packet processing in a multiprocessor environment |
JP3896111B2 (ja) * | 2003-12-15 | 2007-03-22 | 株式会社日立製作所 | リソース割り当てシステム、方法及びプログラム |
US20060029097A1 (en) * | 2004-06-07 | 2006-02-09 | Mcgee Michael S | Dynamic allocation and configuration of a computer system's network resources |
US8832706B2 (en) * | 2006-12-22 | 2014-09-09 | Commvault Systems, Inc. | Systems and methods of data storage management, such as dynamic data stream allocation |
US20060104219A1 (en) * | 2004-11-15 | 2006-05-18 | Harris Corporation | Predictive mobile ad hoc networking including associated systems and methods |
US7774471B2 (en) * | 2006-06-15 | 2010-08-10 | Adaptive Computing Enterprises, Inc. | Optimized multi-component co-allocation scheduling with advanced reservations for data transfers and distributed jobs |
US7761875B2 (en) * | 2005-06-10 | 2010-07-20 | Hewlett-Packard Development Company, L.P. | Weighted proportional-share scheduler that maintains fairness in allocating shares of a resource to competing consumers when weights assigned to the consumers change |
US20070011374A1 (en) | 2005-07-08 | 2007-01-11 | Kumar Sasi K | Method and system for universal serial bus (USB) re-direct (USB-R) over a network |
CN101248419B (zh) * | 2005-08-22 | 2010-05-19 | 新日铁系统集成株式会社 | 信息处理系统 |
US7765450B2 (en) * | 2005-10-20 | 2010-07-27 | Jon Udell | Methods for distribution of test generation programs |
JP4017005B2 (ja) * | 2005-10-27 | 2007-12-05 | ソナック株式会社 | 演算装置 |
US7490223B2 (en) * | 2005-10-31 | 2009-02-10 | Sun Microsystems, Inc. | Dynamic resource allocation among master processors that require service from a coprocessor |
JP4377369B2 (ja) * | 2005-11-09 | 2009-12-02 | 株式会社日立製作所 | リソース割当調停装置およびリソース割当調停方法 |
US7738129B2 (en) * | 2006-03-13 | 2010-06-15 | International Business Machines Corporation | Method and apparatus for assigning candidate processing nodes in a stream-oriented computer system |
JP4611922B2 (ja) * | 2006-03-28 | 2011-01-12 | 富士通株式会社 | 制御プログラム、制御方法および制御装置 |
US20070233843A1 (en) * | 2006-03-30 | 2007-10-04 | Gabriele Frey-Ganzel | Method and system for an improved work-load balancing within a cluster |
US7996842B2 (en) * | 2006-03-30 | 2011-08-09 | Oracle America, Inc. | Computer resource management for workloads or applications based on service level objectives |
US7669071B2 (en) | 2006-05-05 | 2010-02-23 | Dell Products L.P. | Power allocation management in an information handling system |
JP4751265B2 (ja) * | 2006-08-01 | 2011-08-17 | 株式会社日立製作所 | リソース管理システム及びその方法 |
JP3916652B2 (ja) | 2006-10-20 | 2007-05-16 | 株式会社日立製作所 | リソース割り当てシステム、方法及びプログラム |
US7992151B2 (en) * | 2006-11-30 | 2011-08-02 | Intel Corporation | Methods and apparatuses for core allocations |
US7684320B1 (en) * | 2006-12-22 | 2010-03-23 | Narus, Inc. | Method for real time network traffic classification |
JP4933284B2 (ja) * | 2007-01-25 | 2012-05-16 | 株式会社日立製作所 | ストレージ装置及び負荷分散方法 |
JP5243721B2 (ja) | 2007-02-01 | 2013-07-24 | セイコーエプソン株式会社 | アプリケーション実行システム、切替装置、アプリケーション実行システムのアプリケーション実行方法およびプログラム |
US7987261B2 (en) | 2007-07-31 | 2011-07-26 | Yahoo! Inc. | Traffic predictor for network-accessible information modules |
US20090106730A1 (en) * | 2007-10-23 | 2009-04-23 | Microsoft Corporation | Predictive cost based scheduling in a distributed software build |
KR101366075B1 (ko) * | 2007-12-20 | 2014-02-21 | 삼성전자주식회사 | 멀티코어 플랫폼에서의 태스크 이동 방법 및 장치 |
US8854966B2 (en) * | 2008-01-10 | 2014-10-07 | Apple Inc. | Apparatus and methods for network resource allocation |
US20090192981A1 (en) * | 2008-01-29 | 2009-07-30 | Olga Papaemmanouil | Query Deployment Plan For A Distributed Shared Stream Processing System |
JP2009271308A (ja) | 2008-05-07 | 2009-11-19 | Seiko Epson Corp | 表示装置および電子機器 |
US8866827B2 (en) * | 2008-06-26 | 2014-10-21 | Microsoft Corporation | Bulk-synchronous graphics processing unit programming |
US8472328B2 (en) * | 2008-07-31 | 2013-06-25 | Riverbed Technology, Inc. | Impact scoring and reducing false positives |
US9875141B2 (en) * | 2008-10-01 | 2018-01-23 | Microsoft Technology Licensing, Llc | Managing pools of dynamic resources |
US8526309B2 (en) | 2008-10-22 | 2013-09-03 | Sharp Kabushiki Kaisha | Mobile communication system, mobile station apparatus base station apparatus, method for managing mobile station apparatus, method for managing base station apparatus and processing section |
EP2254286B1 (en) * | 2009-05-20 | 2013-03-20 | Accenture Global Services Limited | Network real time monitoring and control method, system and computer program product |
US8213453B1 (en) * | 2009-08-07 | 2012-07-03 | Juniper Networks, Inc. | Quality of service (QoS) configuration for network devices with multiple queues |
WO2011138854A1 (ja) * | 2010-05-06 | 2011-11-10 | 日本電気株式会社 | リソース管理システム、リソース管理方法およびリソース管理プログラム |
US9798696B2 (en) * | 2010-05-14 | 2017-10-24 | International Business Machines Corporation | Computer system, method, and program |
US20120030355A1 (en) * | 2010-07-27 | 2012-02-02 | Microsoft Corporation | Dynamically allocating index server resources to partner entities |
US9098608B2 (en) * | 2011-10-28 | 2015-08-04 | Elwha Llc | Processor configured to allocate resources using an entitlement vector |
US9225772B2 (en) * | 2011-09-26 | 2015-12-29 | Knoa Software, Inc. | Method, system and program product for allocation and/or prioritization of electronic resources |
US20130138798A1 (en) * | 2011-11-29 | 2013-05-30 | International Business Machines Corporation | Predictive and dynamic resource provisioning with tenancy matching of health metrics in cloud systems |
US20130185729A1 (en) * | 2012-01-13 | 2013-07-18 | Rutgers, The State University Of New Jersey | Accelerating resource allocation in virtualized environments using workload classes and/or workload signatures |
-
2011
- 2011-04-21 CN CN201180023797.1A patent/CN102947798B/zh active Active
- 2011-04-21 WO PCT/JP2011/059833 patent/WO2011142227A1/ja active Application Filing
- 2011-04-21 DE DE112011100714.0T patent/DE112011100714B4/de active Active
- 2011-04-21 JP JP2012514749A patent/JP5520369B2/ja active Active
- 2011-04-21 GB GB1221843.4A patent/GB2495417B/en active Active
- 2011-04-21 US US13/695,558 patent/US9794138B2/en active Active
- 2011-05-12 TW TW100116743A patent/TW201214286A/zh unknown
Also Published As
Publication number | Publication date |
---|---|
GB2495417A (en) | 2013-04-10 |
DE112011100714B4 (de) | 2018-07-19 |
WO2011142227A1 (ja) | 2011-11-17 |
CN102947798A (zh) | 2013-02-27 |
JPWO2011142227A1 (ja) | 2013-07-22 |
DE112011100714T5 (de) | 2013-01-17 |
US20130103829A1 (en) | 2013-04-25 |
GB2495417B (en) | 2017-11-29 |
TW201214286A (en) | 2012-04-01 |
US9794138B2 (en) | 2017-10-17 |
CN102947798B (zh) | 2016-08-17 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
JP5520369B2 (ja) | コンピュータ・システム、方法及びプログラム | |
Kanakala et al. | Performance analysis of load balancing techniques in cloud computing environment | |
Das et al. | Transparent and flexible network management for big data processing in the cloud | |
Heintz et al. | End-to-end optimization for geo-distributed mapreduce | |
CN107645520B (zh) | 一种负载均衡方法、装置以及系统 | |
US11411799B2 (en) | Scalable statistics and analytics mechanisms in cloud networking | |
US20240104031A1 (en) | Forwarding incoming io to scm namespaces | |
Wang et al. | Optimizing big data processing performance in the public cloud: opportunities and approaches | |
Alkaff et al. | Cross-layer scheduling in cloud systems | |
Haque et al. | Dynamic load balancing in real-time distributed transaction processing | |
EP2912811B1 (en) | Traffic engineering system for preventing demand deadlock and achieving uniform link utilization | |
Shu et al. | Dynamic load balancing and channel strategy for apache flume collecting real-time data stream | |
CN108737455B (zh) | 网络业务识别装置及方法 | |
He et al. | Firebird: Network-aware task scheduling for spark using sdns | |
US9798696B2 (en) | Computer system, method, and program | |
Panda et al. | pmach: Power and migration aware container scheduling | |
Miranda et al. | Dynamic communication-aware scheduling with uncertainty of workflow applications in clouds | |
Muhammad et al. | BAN-storm: a bandwidth-aware scheduling mechanism for stream jobs | |
Fang et al. | Latency aware online tasks scheduling policy for edge computing system | |
Chen et al. | Network-aware grouping in distributed stream processing systems | |
Al Sallami | Load balancing in green cloud computation | |
Dai et al. | A resource occupancy ratio-oriented load balancing task scheduling mechanism for flink | |
Bastam et al. | Design and performance evaluation of a new traffic engineering technique for software-defined network datacenters | |
Zhao et al. | Design and Experimental Evaluation of Algorithms for Optimizing the Throughput of Dispersed Computing | |
Castillo et al. | Predictive and distributed routing balancing, an application-aware approach |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20131217 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20140228 Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20140228 |
|
TRDD | Decision of grant or rejection written | ||
A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 Effective date: 20140318 |
|
A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20140404 |
|
R150 | Certificate of patent or registration of utility model |
Ref document number: 5520369 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 |