-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add high watermark to slashing database (#896)
* New metadata columns: high_watermark_epoch and high_watermark_slot * CRUD operations in MetadataDao - find - update (assumes GVR metadata is already inserted) - delete * Add PL/pgSQL trigger as constraints for checking high_watermarks are greater than low_watermarks * Add PL/pgSQL trigger as constraints for checking low_watermarks are less than or equal to high_watermarks
- Loading branch information
Showing
7 changed files
with
434 additions
and
1 deletion.
There are no files selected for viewing
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
60 changes: 60 additions & 0 deletions
60
...rotection/src/main/java/tech/pegasys/web3signer/slashingprotection/dao/HighWatermark.java
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,60 @@ | ||
/* | ||
* Copyright 2023 ConsenSys AG. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
package tech.pegasys.web3signer.slashingprotection.dao; | ||
|
||
import java.util.Objects; | ||
|
||
import org.apache.tuweni.units.bigints.UInt64; | ||
|
||
public class HighWatermark { | ||
|
||
private UInt64 slot; | ||
private UInt64 epoch; | ||
|
||
// needed for JDBI | ||
public HighWatermark() {} | ||
|
||
public HighWatermark(final UInt64 slot, final UInt64 epoch) { | ||
this.slot = slot; | ||
this.epoch = epoch; | ||
} | ||
|
||
public UInt64 getSlot() { | ||
return slot; | ||
} | ||
|
||
public UInt64 getEpoch() { | ||
return epoch; | ||
} | ||
|
||
public void setSlot(final UInt64 slot) { | ||
this.slot = slot; | ||
} | ||
|
||
public void setEpoch(final UInt64 epoch) { | ||
this.epoch = epoch; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) return true; | ||
if (o == null || getClass() != o.getClass()) return false; | ||
HighWatermark that = (HighWatermark) o; | ||
return Objects.equals(slot, that.slot) && Objects.equals(epoch, that.epoch); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(slot, epoch); | ||
} | ||
} |
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
63 changes: 63 additions & 0 deletions
63
...rotection/src/main/resources/migrations/postgresql/V00012__add_highwatermark_metadata.sql
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,63 @@ | ||
ALTER TABLE metadata | ||
ADD COLUMN high_watermark_epoch NUMERIC(20), | ||
ADD COLUMN high_watermark_slot NUMERIC(20); | ||
|
||
-- inserted high watermark should be above low watermark | ||
|
||
CREATE OR REPLACE FUNCTION check_high_watermarks() RETURNS TRIGGER AS $$ | ||
DECLARE | ||
max_slot NUMERIC(20); | ||
max_epoch NUMERIC(20); | ||
BEGIN | ||
SELECT MAX(slot) INTO max_slot FROM low_watermarks; | ||
SELECT GREATEST(MAX(target_epoch), MAX(source_epoch)) INTO max_epoch FROM low_watermarks; | ||
|
||
IF NEW.high_watermark_slot <= max_slot THEN | ||
RAISE EXCEPTION 'Insert/Update violates constraint: high_watermark_slot must be greater than max slot in low_watermarks table'; | ||
END IF; | ||
|
||
IF NEW.high_watermark_epoch <= max_epoch THEN | ||
RAISE EXCEPTION 'Insert/Update violates constraint: high_watermark_epoch must be greater than max epoch in low_watermarks table'; | ||
END IF; | ||
|
||
RETURN NEW; | ||
END; | ||
$$ LANGUAGE plpgsql; | ||
|
||
CREATE TRIGGER check_before_insert_or_update_high_watermarks | ||
BEFORE INSERT OR UPDATE ON metadata | ||
FOR EACH ROW EXECUTE PROCEDURE check_high_watermarks(); | ||
|
||
|
||
-- inserted low watermark should be below or the same as high watermark | ||
|
||
CREATE OR REPLACE FUNCTION check_low_watermarks() RETURNS TRIGGER AS $$ | ||
DECLARE | ||
high_slot NUMERIC(20); | ||
high_epoch NUMERIC(20); | ||
BEGIN | ||
SELECT MIN(high_watermark_slot) INTO high_slot FROM metadata; | ||
SELECT MIN(high_watermark_epoch) INTO high_epoch FROM metadata; | ||
|
||
IF NEW.slot > high_slot THEN | ||
RAISE EXCEPTION 'Insert/Update violates constraint: low_watermark slot must be less than or equal to high_watermark_slot in the metadata table'; | ||
END IF; | ||
|
||
IF NEW.source_epoch > high_epoch THEN | ||
RAISE EXCEPTION 'Insert/Update violates constraint: low_watermark source epoch must be less than or equal to high_watermark_epoch in the metadata table'; | ||
END IF; | ||
|
||
IF NEW.target_epoch > high_epoch THEN | ||
RAISE EXCEPTION 'Insert/Update violates constraint: low_watermark target epoch must be less than or equal to high_watermark_epoch in the metadata table'; | ||
END IF; | ||
|
||
RETURN NEW; | ||
END; | ||
$$ LANGUAGE plpgsql; | ||
|
||
CREATE TRIGGER check_before_insert_or_update_low_watermarks | ||
BEFORE INSERT OR UPDATE ON low_watermarks | ||
FOR EACH ROW EXECUTE PROCEDURE check_low_watermarks(); | ||
|
||
|
||
UPDATE database_version SET version = 12 WHERE id = 1; |
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
Oops, something went wrong.