mirror of https://github.com/hashicorp/boundary
Update census to run less frequently (#3346)
* update census to run less frequently * Update internal/census/census_job.go Co-authored-by: Michael Gaffney <mike@gaffney.cc> * change nextrunin duration --------- Co-authored-by: Michael Gaffney <mike@gaffney.cc>pull/3387/head
parent
02c1b74551
commit
23c40a0bc3
@ -0,0 +1,20 @@
|
||||
-- Copyright (c) HashiCorp, Inc.
|
||||
-- SPDX-License-Identifier: MPL-2.0
|
||||
|
||||
begin;
|
||||
|
||||
create table census_last_logged (
|
||||
last_logged_at wt_timestamp primary key
|
||||
);
|
||||
comment on table census_last_logged is
|
||||
'census_last_logged is a table with 1 row which contains the timestamp '
|
||||
'of the last time the census status and snapshots were logged.';
|
||||
|
||||
-- This index ensures that there will only ever be one row in the table.
|
||||
-- See: https://www.postgresql.org/docs/current/indexes-expressional.html
|
||||
create unique index census_last_logged_one_row
|
||||
on census_last_logged((last_logged_at is not null));
|
||||
|
||||
insert into census_last_logged(last_logged_at) values('-infinity');
|
||||
|
||||
commit;
|
||||
@ -0,0 +1,31 @@
|
||||
-- Copyright (c) HashiCorp, Inc.
|
||||
-- SPDX-License-Identifier: MPL-2.0
|
||||
|
||||
begin;
|
||||
|
||||
select plan(6);
|
||||
|
||||
select has_table('census_last_logged');
|
||||
select is(count(*), 1::bigint, 'census_last_logged should have only 1 row') from census_last_logged;
|
||||
select ok(not isfinite(last_logged_at)) from census_last_logged;
|
||||
|
||||
prepare insert_row as
|
||||
insert into census_last_logged
|
||||
(last_logged_at)
|
||||
values
|
||||
(now());
|
||||
|
||||
select throws_ok('insert_row', '23505',
|
||||
'duplicate key value violates unique constraint "census_last_logged_one_row"',
|
||||
'insert into census_last_logged should fail');
|
||||
|
||||
prepare update_census_last_logged as
|
||||
update census_last_logged
|
||||
set last_logged_at = now();
|
||||
|
||||
select lives_ok('update_census_last_logged');
|
||||
select ok(isfinite(last_logged_at)) from census_last_logged;
|
||||
|
||||
select * from finish();
|
||||
|
||||
rollback;
|
||||
Loading…
Reference in new issue