|
| 1 | +"""Asynchronous job handler.""" |
| 2 | + |
| 3 | +from multiprocessing import Value |
| 4 | +from threading import Thread |
| 5 | +from typing import Dict |
| 6 | + |
| 7 | +from hyrisecockpit.database_manager.cursor import ConnectionFactory |
| 8 | + |
| 9 | +from .job.activate_plugin import activate_plugin as activate_plugin_job |
| 10 | +from .job.deactivate_plugin import deactivate_plugin as deactivate_plugin_job |
| 11 | +from .job.delete_tables import delete_tables as delete_tables_job |
| 12 | +from .job.load_tables import load_tables as load_tables_job |
| 13 | + |
| 14 | + |
| 15 | +class AsynchronousJobHandler: |
| 16 | + """Handles asynchronous jobs. |
| 17 | +
|
| 18 | + All jobs in this class are executed with python threads in the background. |
| 19 | + If a method from this class is called it will only response if the job |
| 20 | + was started successfully or not. All jobs in this class do not need to return a |
| 21 | + result. |
| 22 | + """ |
| 23 | + |
| 24 | + def __init__( |
| 25 | + self, |
| 26 | + database_blocked: Value, |
| 27 | + connection_factory: ConnectionFactory, |
| 28 | + workload_drivers: Dict, |
| 29 | + ): |
| 30 | + """Initialize asynchronous job handler object. |
| 31 | +
|
| 32 | + Args: |
| 33 | + database_blocked: Flag stored in a shared memory map. This flag |
| 34 | + stores if the Hyrise instance is blocked or not. |
| 35 | + connection_factory: An object to create a connection to the Hyrise |
| 36 | + database. All connection relevant information (port, host) is |
| 37 | + saved in this object. |
| 38 | + workload_drivers: A dictionary containing all workload drivers (TPCC,...) |
| 39 | + """ |
| 40 | + self._database_blocked: Value = database_blocked |
| 41 | + self._connection_factory: ConnectionFactory = connection_factory |
| 42 | + self._workload_drivers: Dict = workload_drivers |
| 43 | + |
| 44 | + def load_tables(self, workload_type: str, scalefactor: float) -> bool: |
| 45 | + """Start load tabled job. |
| 46 | +
|
| 47 | + This function will check if the database is blocked, if not it will |
| 48 | + create a thread that is executing the job that will load the tables. |
| 49 | +
|
| 50 | + Returns: |
| 51 | + bool: True if job was successful started, False if database was |
| 52 | + blocked and job couldn't be started. |
| 53 | + """ |
| 54 | + if not self._database_blocked.value: |
| 55 | + self._database_blocked.value = True |
| 56 | + job_thread = Thread( |
| 57 | + target=load_tables_job, |
| 58 | + args=( |
| 59 | + self._database_blocked, |
| 60 | + workload_type, |
| 61 | + scalefactor, |
| 62 | + self._connection_factory, |
| 63 | + self._workload_drivers, |
| 64 | + ), |
| 65 | + ) |
| 66 | + job_thread.start() |
| 67 | + return True |
| 68 | + else: |
| 69 | + return False |
| 70 | + |
| 71 | + def delete_tables(self, workload_type: str, scalefactor: float) -> bool: |
| 72 | + """Start delete tabled job. |
| 73 | +
|
| 74 | + This function will check if the database is blocked. If not it will |
| 75 | + create a thread that is executing the job that will delete the tables. |
| 76 | +
|
| 77 | + Returns: |
| 78 | + bool: True if job was successful started, False if database was |
| 79 | + blocked and job couldn't be started. |
| 80 | + """ |
| 81 | + if not self._database_blocked.value: |
| 82 | + self._database_blocked.value = True |
| 83 | + job_thread = Thread( |
| 84 | + target=delete_tables_job, |
| 85 | + args=( |
| 86 | + self._database_blocked, |
| 87 | + workload_type, |
| 88 | + scalefactor, |
| 89 | + self._connection_factory, |
| 90 | + self._workload_drivers, |
| 91 | + ), |
| 92 | + ) |
| 93 | + job_thread.start() |
| 94 | + return True |
| 95 | + else: |
| 96 | + return False |
| 97 | + |
| 98 | + def activate_plugin(self, plugin: str) -> bool: |
| 99 | + """Start activate plug-in job. |
| 100 | +
|
| 101 | + This function will check if the database is blocked. If not it will |
| 102 | + create a thread that is executing the job that will activate the plug-in. |
| 103 | +
|
| 104 | + Returns: |
| 105 | + bool: True if job was successful started, False if database was |
| 106 | + blocked and job couldn't be started. |
| 107 | + """ |
| 108 | + if not self._database_blocked.value: |
| 109 | + job_thread = Thread( |
| 110 | + target=activate_plugin_job, args=(self._connection_factory, plugin,) |
| 111 | + ) |
| 112 | + job_thread.start() |
| 113 | + return True |
| 114 | + else: |
| 115 | + return False |
| 116 | + |
| 117 | + def deactivate_plugin(self, plugin: str) -> bool: |
| 118 | + """Start deactivate plug-in job. |
| 119 | +
|
| 120 | + This function will check if the database is blocked. If not it will |
| 121 | + create a thread that is executing the job that will deactivate the plug-in. |
| 122 | +
|
| 123 | + Returns: |
| 124 | + bool: True if job was successful started, False if database was |
| 125 | + blocked and job couldn't be started. |
| 126 | + """ |
| 127 | + if not self._database_blocked.value: |
| 128 | + job_thread = Thread( |
| 129 | + target=deactivate_plugin_job, args=(self._connection_factory, plugin,) |
| 130 | + ) |
| 131 | + job_thread.start() |
| 132 | + return True |
| 133 | + else: |
| 134 | + return False |
0 commit comments