Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
See the comment:
From the discussion in TAJO-540
In general, query (or job) scheduler aims at the maximum resource utilization. For multi-tenancy, we also need to consider the fairness for multiple users (or queries). BTW, the maximum resource utilization and fairness are usually conflict to each other in many cases. To mitigate this problem, many scheduler seems to use preemption approach.
In this point, our resource and scheduler system has the following problems:
- A query exclusively uses allocated resources at the first time until the query is completed or failed.
- There is no mechanism to deallocate resources during query processing.
- Preempt is also not allowed.
To achieve the multi tenancy, we should change our resource circulation. Especially, resource allocation must be fine grained instead of per query.
So, I'll create a jira issue to change the resource circulation. We have to do this issue firstly in my opinion. If we achieve this, implementing multi-tenant scheduler would be much easier than now. It would be a good starting point of this issue.
Attachments
Attachments
Issue Links
- contains
-
TAJO-1146 TajoWorkerResources are occasionally not released after the query completion relating to semaphore condition.
- Resolved
-
TAJO-1399 TajoResourceAllocator might hang on network error
- Resolved
-
TAJO-1622 UniformRangePartition occasionally causes IllegalStateException
- Resolved
-
TAJO-1536 Fix minor issues in QueryMaster
- Resolved
-
TAJO-1551 Reuse allocated resources in next execution block if possible
- Resolved
- is required by
-
TAJO-540 (Umbrella) Implement Tajo Query Scheduler
- In Progress