Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sept 23 upstream 3 (1c28203) #304

Merged
merged 10 commits into from
Sep 19, 2023
Merged

Sept 23 upstream 3 (1c28203) #304

merged 10 commits into from
Sep 19, 2023

Conversation

illusional
Copy link

@illusional illusional commented Sep 8, 2023

Requires: #303

daniel-goldstein and others added 10 commits June 23, 2023 17:36
`rich` stacktraces will by default show the local variables at each
level of scope, which is nice for debugging but can leak things like
tokens. Best not to have that show up in logs or accidentally pasted
into zulip
…ail-is#13214)

This is a simple tidying refactoring to hide the `children` array from
consumers of `BaseIR`. My main motivation is to make it easier to
explore other ir data structure designs, and to migrate to a new design
in the future, e.g. to allow for in-place mutation without requiring
large-scale changes to every compiler pass, and to simplify how we
encode binding structure.
…l-is#13215)

Fixes hail-is#13205 

Possible billing project states are defined in the database schema:

```mysql
CREATE TABLE IF NOT EXISTS `billing_projects` (
  `name` VARCHAR(100) NOT NULL,
  `name_cs` VARCHAR(100) NOT NULL COLLATE utf8mb4_0900_as_cs,
  `status` ENUM('open', 'closed', 'deleted') NOT NULL DEFAULT 'open',
  `limit` DOUBLE DEFAULT NULL,
  `msec_mcpu` BIGINT DEFAULT 0,
  PRIMARY KEY (`name`)
) ENGINE = InnoDB;
CREATE INDEX `billing_project_status` ON `billing_projects` (`status`);
CREATE UNIQUE INDEX `billing_project_name_cs` ON `billing_projects` (`name_cs`);
CREATE INDEX `billing_project_name_cs_status` ON `billing_projects` (`name_cs`, `status`);
```
Co-authored-by: Chris Vittal <cvittal@broadinstitute.org>
Now that we have fully deterministic randomness, there is no need to
prevent simplify from changing the partitioning.
Co-authored-by: Dan King <daniel.zidan.king@gmail.com>
)

In order to start using Google or AAD access tokens instead of
hail-minted tokens, we need to be able to identify a service account in
the system by its UID at their identity provider. In Google, this UID is
the `uniqueId` field of the Service Account. In AAD, it is the Service
Principal Object ID. In an upcoming change, we'll update the user
creation process to add this ID upon user creation, at which point we
will be able to safely remove this code that updates existing records.

I've marked this PR as `full-deploy` so the AUS folks can roll this
commit out specifically before this column is relied on. This way we can
safely remove the loop in a follow-up PR and know they will have run
this code to populate the column.
@illusional illusional changed the base branch from main to sept-23-upstream-2-31a0889 September 8, 2023 00:42
Base automatically changed from sept-23-upstream-2-31a0889 to sept-23-upstream-1-c9db002 September 19, 2023 20:04
Base automatically changed from sept-23-upstream-1-c9db002 to main September 19, 2023 20:05
@illusional illusional marked this pull request as ready for review September 19, 2023 20:56
@illusional illusional merged commit 9fc7f9f into main Sep 19, 2023
5 checks passed
@illusional illusional deleted the sept-23-upstream-3-1c28203 branch September 19, 2023 21:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants