X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/37eb070f55b5ae0c622fb4bf0a946c9dd49b2752..c1298836a79c1f3734c95f87f11615daf70806e3:/services/api/db/structure.sql diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index 002b470b12..24c5ba3e46 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -190,6 +190,89 @@ case (edges.edge_id = perm_edge_id) $$; +-- +-- Name: container_priority(character varying, bigint, character varying); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.container_priority(for_container_uuid character varying, inherited bigint, inherited_from character varying) RETURNS bigint + LANGUAGE sql + AS $$ +/* Determine the priority of an individual container. + The "inherited" priority comes from the path we followed from the root, the parent container + priority hasn't been updated in the table yet but we need to behave it like it has been. +*/ +select coalesce(max(case when containers.uuid = inherited_from then inherited + when containers.priority is not NULL then containers.priority + else container_requests.priority * 1125899906842624::bigint - (extract(epoch from container_requests.created_at)*1000)::bigint + end), 0) from + container_requests left outer join containers on container_requests.requesting_container_uuid = containers.uuid + where container_requests.container_uuid = for_container_uuid and container_requests.state = 'Committed' and container_requests.priority > 0; +$$; + + +-- +-- Name: container_tree(character varying); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.container_tree(for_container_uuid character varying) RETURNS TABLE(pri_container_uuid character varying) + LANGUAGE sql + AS $$ +/* A lighter weight version of the update_priorities query that only returns the containers in a tree, + used by SELECT FOR UPDATE. +*/ +with recursive tab(upd_container_uuid) as ( + select for_container_uuid +union + select containers.uuid + from (tab join container_requests on tab.upd_container_uuid = container_requests.requesting_container_uuid) as child_requests + join containers on child_requests.container_uuid = containers.uuid + where containers.state in ('Queued', 'Locked', 'Running') +) +select upd_container_uuid from tab; +$$; + + +-- +-- Name: container_tree_priorities(character varying); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.container_tree_priorities(for_container_uuid character varying) RETURNS TABLE(pri_container_uuid character varying, upd_priority bigint) + LANGUAGE sql + AS $$ +/* Calculate the priorities of all containers starting from for_container_uuid. + This traverses the process tree downward and calls container_priority for each container + and returns a table of container uuids and their new priorities. +*/ +with recursive tab(upd_container_uuid, upd_priority) as ( + select for_container_uuid, container_priority(for_container_uuid, 0, '') +union + select containers.uuid, container_priority(containers.uuid, child_requests.upd_priority, child_requests.upd_container_uuid) + from (tab join container_requests on tab.upd_container_uuid = container_requests.requesting_container_uuid) as child_requests + join containers on child_requests.container_uuid = containers.uuid + where containers.state in ('Queued', 'Locked', 'Running') +) +select upd_container_uuid, upd_priority from tab; +$$; + + +-- +-- Name: jsonb_exists_all_inline_op(jsonb, text[]); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.jsonb_exists_all_inline_op(jsonb, text[]) RETURNS boolean + LANGUAGE sql IMMUTABLE + AS $_$SELECT $1 ?& $2$_$; + + +-- +-- Name: jsonb_exists_inline_op(jsonb, text); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.jsonb_exists_inline_op(jsonb, text) RETURNS boolean + LANGUAGE sql IMMUTABLE + AS $_$SELECT $1 ? $2$_$; + + -- -- Name: project_subtree_with_is_frozen(character varying, boolean); Type: FUNCTION; Schema: public; Owner: - -- @@ -254,6 +337,8 @@ $$; SET default_tablespace = ''; +SET default_with_oids = false; + -- -- Name: api_client_authorizations; Type: TABLE; Schema: public; Owner: - -- @@ -1942,6 +2027,13 @@ CREATE INDEX index_collections_on_is_trashed ON public.collections USING btree ( CREATE INDEX index_collections_on_modified_at_and_uuid ON public.collections USING btree (modified_at, uuid); +-- +-- Name: index_collections_on_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_collections_on_name ON public.collections USING gin (name public.gin_trgm_ops); + + -- -- Name: index_collections_on_owner_uuid; Type: INDEX; Schema: public; Owner: - -- @@ -2131,6 +2223,13 @@ CREATE INDEX index_groups_on_is_trashed ON public.groups USING btree (is_trashed CREATE INDEX index_groups_on_modified_at_and_uuid ON public.groups USING btree (modified_at, uuid); +-- +-- Name: index_groups_on_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_groups_on_name ON public.groups USING gin (name public.gin_trgm_ops); + + -- -- Name: index_groups_on_owner_uuid; Type: INDEX; Schema: public; Owner: - -- @@ -3187,6 +3286,9 @@ INSERT INTO "schema_migrations" (version) VALUES ('20220726034131'), ('20220804133317'), ('20221219165512'), -('20221230155924'); +('20221230155924'), +('20230421142716'), +('20230503224107'), +('20230815160000');