Advertisement
Guest User

Untitled

a guest
Jul 17th, 2014
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.60 KB | None | 0 0
  1. commit 7cab895400e748f8db0562eabf78d976cb96f558
  2. Author: Gilad Chaplik <[email protected]>
  3. Date: Sun Apr 27 01:20:54 2014 +0300
  4.  
  5. restapi: add QoS RESTful interface for storage QoS
  6.  
  7. - POST: /ovirt-engine/api/datacenters/{datacenter:id}/qoss; body: qos; response: qos
  8. <qos type="storage">
  9. <name>test_qos</name>
  10. <description>aaaaa</description>
  11. <max_throughput>1</max_throughput>
  12. <max_read_throughput>1</max_read_throughput>
  13. <max_write_throughput>1</max_write_throughput>
  14. <max_iops>1</max_iops>
  15. <max_read_iops>1</max_read_iops>
  16. <max_write_iops>1</max_write_iops>
  17. </qos>
  18. - GET: /ovirt-engine/api/datacenters/{datacenter:id}/qoss; response: qoss
  19. - DELETE: /ovirt-engine/api/datacenters/{datacenter:id}/qoss/{qos:id};
  20. - GET: /ovirt-engine/api/datacenters/{datacenter:id}/qoss/{qos:id}; response: qos
  21. <qos type="storage" href="/ovirt-engine/api/datacenters/00000002-0002-0002-0002-000000000321/qoss/a66577ff-d5f1-40f7-aebb-0b350ad8bb8c" id="a66577ff-d5f1-40f7-aebb-0b350ad8bb8c">
  22. <name>test_qos</name>
  23. <description>aaaaa</description>
  24. <data_center href="/ovirt-engine/api/datacenters/00000002-0002-0002-0002-000000000321" id="00000002-0002-0002-0002-000000000321"/>
  25. <max_throughput>1</max_throughput>
  26. <max_read_throughput>1</max_read_throughput>
  27. <max_write_throughput>1</max_write_throughput>
  28. <max_iops>1</max_iops>
  29. <max_read_iops>1</max_read_iops>
  30. <max_write_iops>1</max_write_iops>
  31. </qos>
  32. - PUT: /ovirt-engine/api/datacenters/{datacenter:id}/qoss/{qos:id}; body: qos; response: qos
  33.  
  34. For more information see: http://www.ovirt.org/Features/aggregate_QoS,
  35. http://www.ovirt.org/Features/blkio-support#RESTful_API
  36.  
  37. Change-Id: I1a9af59277b50554531522802f19046c0051d82f
  38. Signed-off-by: Gilad Chaplik <[email protected]>
  39.  
  40. commit d81fc10a8fc77f37277ac767d229edd14ad3fbd1
  41. Author: Kobi Ianko <[email protected]>
  42. Date: Wed May 14 17:49:37 2014 +0300
  43.  
  44. core: Add crud command for Cpu Qos
  45.  
  46. Adding commands to hanle the new Cpu Qos
  47.  
  48. With multiple paragraphs if necessary.
  49.  
  50. Change-Id: I101b1325e89e68f548bfcf83fe7e0033b88419e6
  51. Bug-Url: https://bugzilla.redhat.com/1084930
  52. Signed-off-by: Kobi Ianko <[email protected]>
  53.  
  54. commit 9d31a0b99ecac2f909f1028bc6d2055594448409
  55. Author: Kobi Ianko <[email protected]>
  56. Date: Wed May 14 15:38:40 2014 +0300
  57.  
  58. core, db: Adding Cpu Qos DB config
  59.  
  60. Adding the Cpu Qos db config,
  61. the Cpu Qos consists of one parameter:cpu_limit.
  62. The parameter will be added to the qos table.
  63.  
  64. support for this feature is for all 3.x versions.
  65.  
  66. Change-Id: I533bcc601ac44289c51f5d56a6da0dd2455116d6
  67. Bug-Url: https://bugzilla.redhat.com/1084930
  68. Signed-off-by: Kobi Ianko <[email protected]>
  69.  
  70. commit 03c5de12485ff74f18d9735771a7fbdd650a893d
  71. Author: Kobi Ianko <[email protected]>
  72. Date: Wed May 14 11:02:09 2014 +0300
  73.  
  74. core: Adding the CpuQos entity
  75.  
  76. Adding a Cpu Qos entity that will be used by the cpu profile.
  77. the cpu profile will be used to set cpu sla parameters of the vm.
  78.  
  79. Change-Id: I2134a778d70b3c9ff3e78cc38282a515250b7cf2
  80. Bug-Url: https://bugzilla.redhat.com/1084930
  81. Signed-off-by: Kobi Ianko <[email protected]>
  82.  
  83. commit bab7fbd5b1361ff34c08d2936224a7a5804ea4bc
  84. Author: Gilad Chaplik <[email protected]>
  85. Date: Wed May 28 20:42:59 2014 +0300
  86.  
  87. core: Add CRUD commands and queries for QoS objects (storage)
  88.  
  89. For more information see: http://www.ovirt.org/Features/aggregate_QoS,
  90. http://www.ovirt.org/Features/blkio-support
  91.  
  92. Change-Id: I1a9af59277b5055453159f002f19046c00522ddb
  93. Signed-off-by: Gilad Chaplik <[email protected]>
  94.  
  95. commit bacb57540fba62b0a5a715280a4a17421bdd8660
  96. Author: Gilad Chaplik <[email protected]>
  97. Date: Wed May 28 20:40:22 2014 +0300
  98.  
  99. db, core: aggregate qos and storage qos impl
  100.  
  101. - DB and DAL changes: create qos table to accomodate qos objects and include
  102. storage qos and its limits.
  103. - added qos_sp.sql to add default sp.
  104. For more information see: http://www.ovirt.org/Features/aggregate_QoS,
  105. http://www.ovirt.org/Features/blkio-support
  106. Change-Id: I1a9af59277b5055453159f002f19046c0051d63b
  107. Signed-off-by: Gilad Chaplik <[email protected]>
  108.  
  109. commit f85651d1fa7ebfa3f75908c2c381a123bbeb787d
  110. Author: Gilad Chaplik <[email protected]>
  111. Date: Tue Apr 29 10:21:28 2014 +0300
  112.  
  113. common: introduce qos package, and storage qos
  114.  
  115. - Base Qos abstract class, in the future all QoS will inherit it.
  116. - QosType (version >= 3.3 network, version >= 3.5 disk, cpu), to distinguish
  117. between the types.
  118. - StorageQos object as the first implementation.
  119. - Handle field validation propeties.
  120.  
  121. For more information see http://www.ovirt.org/Features/aggregate_QoS,
  122. http://www.ovirt.org/Features/blkio-support
  123.  
  124. Change-Id: I1a9af59277b5055453159f002f19046c0051d8ff
  125. Signed-off-by: Gilad Chaplik <[email protected]>
  126.  
  127. commit 3346a60b0e34a619cb4ce5d91d7d285a913a688f
  128. Author: Martin Betak <[email protected]>
  129. Date: Thu Jul 3 11:58:58 2014 +0200
  130.  
  131. dal: Refactor VmStatic and VmTemplate Daos
  132.  
  133. Extracted common fields from parameter sources of VmStatic and
  134. VmTemplate to new VmBaseDaoDbFacade.
  135.  
  136. This new class also inheriths DefaultGenericDaoDbFacade to eliminate
  137. trivial implementations of get, update and delete in both
  138. DaoDbImpls.
  139.  
  140. Change-Id: Ia8c02c11ededf4dfba67e5cc8598ae90155d7eb5
  141. Signed-off-by: Martin Betak <[email protected]>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement