The class "vMicroservice" is designed to resemble a deployment in Kubernetes, comprising one or more instances of the "vContainer" class. It encompasses the following important member functions and behaviours:
- Recovery of Failed vContainers: When any "vContainer" crashes or encounters a failure, the "vMicroservice" includes a member function that facilitates the recovery of these failed containers. This recovery process is initiated immediately after a container failure or after a specific delay, as determined by the simulation.
- Horizontal Scaling: The "vMicroservice" is responsible for horizontal scaling, which involves dynamically adjusting the number of "vContainer" instances based on certain conditions. If the overall CPU/RAM usage of all current "vContainer" instances exceeds a predetermined threshold, a new "vContainer" will be created to handle the increased workload. Conversely, if a "vContainer" is identified as being under-utilized, it may be forcibly terminated. Horizontal scaling is implemented as an event, and only one horizontal scaling event can occur per "vMicroservice" instance at any given time during the simulation.
- Readiness of vMicroservice: The readiness of a "vMicroservice" is determined by the number of current "vContainer" instances reaching the minimum required number. This minimum requirement ensures that the "vMicroservice" is considered ready for operation.
In summary, the "vMicroservice" class emulates the behaviour of deployments in Kubernetes, facilitating the management of "vContainer" instances, recovery from failures, horizontal scaling, and readiness evaluation within the simulated cloud environment.
Bases: VirtualEntity
, ABC
Source code in PyCloudSim\entity\v_microservice.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
|
containers: List[vContainer]
property
The container instances of the virtual microservice.
cpu: int
property
The requested CPU time of the virtual microservice.
cpu_limit: int
property
The limited CPU time of the virtual microservice.
cpu_usage: float
property
The CPU utilization of the virtual microservice.
deamon: bool
property
Return True if the virtual microservice has a deamon process.
image_size: int
property
The image size in MiB of the microservice container instance.
max_num_containers: int
property
The maximum number of container instances.
min_num_containers: int
property
The minimum number of container instances.
ram: int
property
The requested RAM in MiB of the virtual microservice.
ram_limit: int
property
The limited RAM in MiB of the virtual microservice.
ram_usage: float
property
The RAM utilization of the virtual microservice.
ready: bool
property
Return True if the virtual microservice is ready.
service: vService
property
Return the service of the virtual microservice.
taint: Optional[str]
property
The taint of the microservice, used in scheduling.
volumes: Optional[List[Tuple[str, str, int, bool]]]
property
The volumes that are attached to each container instance, (name, path, size in MiB, retain or not).
__init__(cpu, cpu_limit, ram, ram_limit, image_size, volumes=None, taint=None, deamon=False, min_num_containers=1, max_num_containers=3, evaluation_interval=0.01, service=vServiceBestFit, ports=[], at=simulation.now, after=None, label=None)
Create a virtual microservice.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cpu |
int
|
the requested CPU time. |
required |
cpu_limit |
int
|
the limited CPU time. |
required |
ram |
int
|
the requested RAM in MiB. |
required |
ram_limit |
int
|
the limited RAM in MiB. |
required |
image_size |
int
|
the image size in MiB of the microservice container instance. |
required |
volumes |
Optional[List[Tuple[str, str, int, bool]]]
|
The volumes that are attached to each container instance, (name, path, size in MiB, retain or not). Defaults to None. |
None
|
taint |
Optional[str]
|
the taint of the microservice, used in scheduling. Defaults to None. |
None
|
deamon |
bool
|
set true for create deamon process for container instance. Defaults to False. |
False
|
min_num_containers |
int
|
minimum number of container instances. Defaults to 1. |
1
|
max_num_containers |
int
|
maximum number of container instances. Defaults to 3. |
3
|
evaluation_interval |
float
|
the interval for horizontal scaler to check on the microservice. Defaults to 0.01. |
0.01
|
service |
Type[vService]
|
the service for this microservice, will determine the load balancing method. Defaults to vServiceBestFit. |
vServiceBestFit
|
ports |
List[int]
|
the port that are exposed. Defaults to []. |
[]
|
at |
Union[int, float, Callable]
|
same as entity. Defaults to simulation.now. |
now
|
after |
Optional[Entity | List[Entity]]
|
same as entity. Defaults to None. |
None
|
label |
Optional[str]
|
same as entity. Defaults to None. |
None
|
Source code in PyCloudSim\entity\v_microservice.py
cpu_usage_in_past(interval)
The CPU utilization of the virtual microservice in the past interval.
Source code in PyCloudSim\entity\v_microservice.py
evaluate()
Evaluate the status of the virtual microservice, and trigger scaling up or down.
Source code in PyCloudSim\entity\v_microservice.py
ram_usage_in_past(interval)
The RAM utilization of the virtual microservice in the past interval.
Source code in PyCloudSim\entity\v_microservice.py
recover(container, detached_volumes=None)
Recover a failed container instance.
Source code in PyCloudSim\entity\v_microservice.py
scale_down_triggered()
abstractmethod
scale_up_triggered()
abstractmethod
termination()
Termination process of the virtual microservice.
Default vMicroservice
Bases: vMicroservice
Source code in PyCloudSim\entity\v_microservice.py
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 |
|
cool_down_period: float
property
The cool down period of the virtual microservice, no scaling operation will happen during cool down period.
cpu_lower_bound: float
property
The lower bound of CPU utilization.
cpu_upper_bound: float
property
The upper bound of CPU utilization.
ram_lower_bound: float
property
The lower bound of RAM utilization.
ram_upper_bound: float
property
The upper bound of RAM utilization.
__init__(cpu, cpu_limit, ram, ram_limit, image_size, volumes=None, taint=None, deamon=False, min_num_containers=1, max_num_containers=3, evaluation_interval=0.01, cpu_lower_bound=0.2, cpu_upper_bound=0.8, ram_lower_bound=0.2, ram_upper_bound=0.8, cool_down_period=5, service=vServiceBestFit, ports=[], at=simulation.now, after=None, label=None)
Create a virtual microservice with default horizontal scaler.
Source code in PyCloudSim\entity\v_microservice.py
scale_down_triggered()
Default scaling down trigger condition.
scale_up_triggered()
Default scaling up trigger condition.