-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[computes] removed admissiond from impala readiness check
admissiond check is no longer needed. also fixed a few other bool conversions. the `is_ready` field currently has minimal effect on the UI. We return the results sorting the computes with ready ones on the top while non-ready ones at the bottom. In future, we should update the UI to indicate if a compute is ready to accept queries or not. This change also makes the compute.is_ready nullable/optional because it is not in full use yet and should not effect inserts and updates.
- Loading branch information
1 parent
1673b1f
commit d610479
Showing
3 changed files
with
22 additions
and
6 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
apps/beeswax/src/beeswax/migrations/0004_alter_compute_is_ready.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.25 on 2025-01-09 11:39 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('beeswax', '0003_compute_namespace'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='compute', | ||
name='is_ready', | ||
field=models.BooleanField(default=True, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters