2022-12-03 00:00:55 +00:00
|
|
|
## Nim-Codex
|
|
|
|
## Copyright (c) 2022 Status Research & Development GmbH
|
|
|
|
## Licensed under either of
|
|
|
|
## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
|
|
## * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
|
|
## at your option.
|
|
|
|
## This file may not be copied, modified, or distributed except according to
|
|
|
|
## those terms.
|
|
|
|
|
|
|
|
import pkg/upraises
|
|
|
|
|
|
|
|
push: {.upraises: [].}
|
|
|
|
|
|
|
|
import pkg/chronos
|
|
|
|
import pkg/chronicles
|
2023-08-01 23:47:57 +00:00
|
|
|
import pkg/libp2p/cid
|
2023-07-20 07:56:28 +00:00
|
|
|
import pkg/metrics
|
2022-12-03 00:00:55 +00:00
|
|
|
import pkg/questionable
|
|
|
|
import pkg/questionable/results
|
|
|
|
import pkg/datastore
|
|
|
|
import pkg/stew/endians2
|
|
|
|
|
|
|
|
import ./blockstore
|
2023-03-08 15:04:54 +00:00
|
|
|
import ./keyutils
|
2022-12-03 00:00:55 +00:00
|
|
|
import ../blocktype
|
2023-03-08 15:04:54 +00:00
|
|
|
import ../clock
|
|
|
|
import ../systemclock
|
2022-12-03 00:00:55 +00:00
|
|
|
|
2023-08-01 23:47:57 +00:00
|
|
|
export blocktype, cid
|
2022-12-03 00:00:55 +00:00
|
|
|
|
|
|
|
logScope:
|
|
|
|
topics = "codex repostore"
|
|
|
|
|
2023-07-20 07:56:28 +00:00
|
|
|
declareGauge(codexRepostoreBlocks, "codex repostore blocks")
|
|
|
|
declareGauge(codexRepostoreBytesUsed, "codex repostore bytes used")
|
|
|
|
declareGauge(codexRepostoreBytesReserved, "codex repostore bytes reserved")
|
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
const
|
|
|
|
DefaultBlockTtl* = 24.hours
|
|
|
|
DefaultQuotaBytes* = 1'u shl 33'u # ~8GB
|
|
|
|
|
|
|
|
type
|
|
|
|
QuotaUsedError* = object of CodexError
|
|
|
|
QuotaNotEnoughError* = object of CodexError
|
|
|
|
|
|
|
|
RepoStore* = ref object of BlockStore
|
|
|
|
postFixLen*: int
|
|
|
|
repoDs*: Datastore
|
|
|
|
metaDs*: Datastore
|
2023-03-08 15:04:54 +00:00
|
|
|
clock: Clock
|
2023-07-20 07:56:28 +00:00
|
|
|
totalBlocks*: uint # number of blocks in the store
|
2023-04-10 20:45:10 +00:00
|
|
|
quotaMaxBytes*: uint # maximum available bytes
|
|
|
|
quotaUsedBytes*: uint # bytes used by the repo
|
|
|
|
quotaReservedBytes*: uint # bytes reserved by the repo
|
2022-12-03 00:00:55 +00:00
|
|
|
blockTtl*: Duration
|
|
|
|
started*: bool
|
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
BlockExpiration* = object
|
|
|
|
cid*: Cid
|
|
|
|
expiration*: SecondsSince1970
|
|
|
|
GetNext = proc(): Future[?BlockExpiration] {.upraises: [], gcsafe, closure.}
|
|
|
|
BlockExpirationIter* = ref object
|
|
|
|
finished*: bool
|
|
|
|
next*: GetNext
|
2022-12-03 00:00:55 +00:00
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
iterator items*(q: BlockExpirationIter): Future[?BlockExpiration] =
|
|
|
|
while not q.finished:
|
|
|
|
yield q.next()
|
2022-12-03 00:00:55 +00:00
|
|
|
|
2023-07-20 07:56:28 +00:00
|
|
|
proc updateMetrics(self: RepoStore) =
|
|
|
|
codexRepostoreBlocks.set(self.totalBlocks.int64)
|
|
|
|
codexRepostoreBytesUsed.set(self.quotaUsedBytes.int64)
|
|
|
|
codexRepostoreBytesReserved.set(self.quotaReservedBytes.int64)
|
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
func totalUsed*(self: RepoStore): uint =
|
|
|
|
(self.quotaUsedBytes + self.quotaReservedBytes)
|
|
|
|
|
[marketplace] Add Reservations Module (#340)
* [marketplace] reservations module
- add de/serialization for Availability
- add markUsed/markUnused in persisted availability
- add query for unused
- add reserve/release
- reservation module tests
- split ContractInteractions into client contracts and host contracts
- remove reservations start/stop as the repo start/stop is being managed by the node
- remove dedicated reservations metadata store and use the metadata store from the repo instead
- Split ContractInteractions into:
- ClientInteractions (with purchasing)
- HostInteractions (with sales and proving)
- compilation fix for nim 1.2
[repostore] fix started flag, add tests
[marketplace] persist slot index
For loading the sales state from chain, the slot index was not previously persisted in the contract. Will retrieve the slot index from the contract when the sales state is loaded.
* Revert repostore changes
In favour of separate PR https://github.com/status-im/nim-codex/pull/374.
* remove warnings
* clean up
* tests: stop repostore during teardown
* change constructor type identifier
Change Contracts constructor to accept Contracts type instead of ContractInteractions.
* change constructor return type to Result instead of Option
* fix and split interactions tests
* clean up, fix tests
* find availability by slot id
* remove duplication in host/client interactions
* add test for finding availability by slotId
* log instead of raiseAssert when failed to mark availability as unused
* move to SaleErrored state instead of raiseAssert
* remove unneeded reverse
It appears that order is not preserved in the repostore, so reversing does not have the intended effect here.
* update open api spec for potential rest endpoint errors
* move functions about available bytes to repostore
* WIP: reserve and release availabilities as needed
WIP: not tested yet
Availabilities are marked as used when matched (just before downloading starts) so that future matching logic does not match an availability currently in use.
As the download progresses, batches of blocks are written to disk, and the equivalent bytes are released from the reservation module. The size of the availability is reduced as well.
During a reserve or release operation, availability updates occur after the repo is manipulated. If the availability update operation fails, the reserve or release is rolled back to maintain correct accounting of bytes.
Finally, once download completes, or if an error occurs, the availability is marked as unused so future matching can occur.
* delete availability when all bytes released
* fix tests + cleanup
* remove availability from SalesContext callbacks
Availability is no longer used past the SaleDownloading state in the state machine. Cleanup of Availability (marking unused) is handled directly in the SaleDownloading state, and no longer in SaleErrored or SaleFinished. Likewise, Availabilities shouldn’t need to be handled on node restart.
Additionally, Availability was being passed in SalesContext callbacks, and now that Availability is only used temporarily in the SaleDownloading state, Availability is contextually irrelevant to the callbacks, except in OnStore possibly, though it was not being consumed.
* test clean up
* - remove availability from callbacks and constructors from previous commit that needed to be removed (oopsie)
- fix integration test that checks availabilities
- there was a bug fixed that crashed the node due to a missing `return success` in onStore
- the test was fixed by ensuring that availabilities are remaining on the node, and the size has been reduced
- change Availability back to non-ref object and constructor back to init
- add trace logging of all state transitions in state machine
- add generally useful trace logging
* fixes after rebase
1. Fix onProve callbacks
2. Use Slot type instead of tuple for retrieving active slot.
3. Bump codex-contracts-eth that exposes getActivceSlot call.
* swap contracts branch to not support slot collateral
Slot collateral changes in the contracts require further changes in the client code, so we’ll skip those changes for now and add in a separate commit.
* modify Interactions and Deployment constructors
- `HostInteractions` and `ClientInteractions` constructors were simplified to take a contract address and no overloads
- `Interactions` prepared simplified so there are no overloads
- `Deployment` constructor updated so that it takes an optional string parameter, instead `Option[string]`
* Move `batchProc` declaration
`batchProc` needs to be consumed by both `node` and `salescontext`, and they can’t reference each other as it creates a circular dependency.
* [reservations] rename `available` to `hasAvailable`
* [reservations] default error message to inner error msg
* add SaleIngored state
When a storage request is handled but the request does match availabilities, the sales agent machine is sent to the SaleIgnored state. In addition, the agent is constructed in a way that if the request is ignored, the sales agent is removed from the list of active agents being tracked in the sales module.
2023-04-04 07:05:16 +00:00
|
|
|
func available*(self: RepoStore): uint =
|
|
|
|
return self.quotaMaxBytes - self.totalUsed
|
|
|
|
|
|
|
|
func available*(self: RepoStore, bytes: uint): bool =
|
|
|
|
return bytes < self.available()
|
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
method getBlock*(self: RepoStore, cid: Cid): Future[?!Block] {.async.} =
|
|
|
|
## Get a block from the blockstore
|
|
|
|
##
|
|
|
|
|
2023-08-21 02:51:04 +00:00
|
|
|
if cid.isEmpty:
|
|
|
|
trace "Empty block, ignoring"
|
|
|
|
return success cid.emptyBlock
|
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
without key =? makePrefixKey(self.postFixLen, cid), err:
|
2022-12-03 00:00:55 +00:00
|
|
|
trace "Error getting key from provider", err = err.msg
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
without data =? await self.repoDs.get(key), err:
|
|
|
|
if not (err of DatastoreKeyNotFound):
|
|
|
|
trace "Error getting block from datastore", err = err.msg, key
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
return failure(newException(BlockNotFoundError, err.msg))
|
|
|
|
|
|
|
|
trace "Got block for cid", cid
|
|
|
|
return Block.new(cid, data)
|
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
proc getBlockExpirationTimestamp(self: RepoStore, ttl: ?Duration): SecondsSince1970 =
|
|
|
|
let duration = ttl |? self.blockTtl
|
|
|
|
self.clock.now() + duration.seconds
|
|
|
|
|
2023-06-22 15:11:18 +00:00
|
|
|
proc getBlockExpirationEntry(
|
|
|
|
self: RepoStore,
|
|
|
|
batch: var seq[BatchEntry],
|
|
|
|
cid: Cid,
|
|
|
|
ttl: ?Duration
|
|
|
|
): ?!BatchEntry =
|
|
|
|
## Get an expiration entry for a batch
|
2023-03-08 15:04:54 +00:00
|
|
|
without key =? createBlockExpirationMetadataKey(cid), err:
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
let value = self.getBlockExpirationTimestamp(ttl).toBytes
|
|
|
|
return success((key, value))
|
|
|
|
|
2023-07-20 07:56:28 +00:00
|
|
|
proc persistTotalBlocksCount(self: RepoStore): Future[?!void] {.async.} =
|
|
|
|
if err =? (await self.metaDs.put(
|
|
|
|
CodexTotalBlocksKey,
|
|
|
|
@(self.totalBlocks.uint64.toBytesBE))).errorOption:
|
|
|
|
trace "Error total blocks key!", err = err.msg
|
|
|
|
return failure(err)
|
|
|
|
return success()
|
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
method putBlock*(
|
2023-06-22 15:11:18 +00:00
|
|
|
self: RepoStore,
|
|
|
|
blk: Block,
|
|
|
|
ttl = Duration.none
|
|
|
|
): Future[?!void] {.async.} =
|
2022-12-03 00:00:55 +00:00
|
|
|
## Put a block to the blockstore
|
|
|
|
##
|
|
|
|
|
2023-08-21 02:51:04 +00:00
|
|
|
if blk.isEmpty:
|
|
|
|
trace "Empty block, ignoring"
|
|
|
|
return success()
|
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
without key =? makePrefixKey(self.postFixLen, blk.cid), err:
|
2022-12-03 00:00:55 +00:00
|
|
|
trace "Error getting key from provider", err = err.msg
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
if await key in self.repoDs:
|
|
|
|
trace "Block already in store", cid = blk.cid
|
|
|
|
return success()
|
|
|
|
|
|
|
|
if (self.totalUsed + blk.data.len.uint) > self.quotaMaxBytes:
|
|
|
|
error "Cannot store block, quota used!", used = self.totalUsed
|
|
|
|
return failure(
|
|
|
|
newException(QuotaUsedError, "Cannot store block, quota used!"))
|
|
|
|
|
|
|
|
trace "Storing block with key", key
|
|
|
|
|
|
|
|
var
|
|
|
|
batch: seq[BatchEntry]
|
|
|
|
|
|
|
|
let
|
|
|
|
used = self.quotaUsedBytes + blk.data.len.uint
|
|
|
|
|
|
|
|
if err =? (await self.repoDs.put(key, blk.data)).errorOption:
|
|
|
|
trace "Error storing block", err = err.msg
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
trace "Updating quota", used
|
|
|
|
batch.add((QuotaUsedKey, @(used.uint64.toBytesBE)))
|
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
without blockExpEntry =? self.getBlockExpirationEntry(batch, blk.cid, ttl), err:
|
|
|
|
trace "Unable to create block expiration metadata key", err = err.msg
|
2022-12-03 00:00:55 +00:00
|
|
|
return failure(err)
|
2023-03-08 15:04:54 +00:00
|
|
|
batch.add(blockExpEntry)
|
2022-12-03 00:00:55 +00:00
|
|
|
|
|
|
|
if err =? (await self.metaDs.put(batch)).errorOption:
|
|
|
|
trace "Error updating quota bytes", err = err.msg
|
|
|
|
|
|
|
|
if err =? (await self.repoDs.delete(key)).errorOption:
|
|
|
|
trace "Error deleting block after failed quota update", err = err.msg
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
self.quotaUsedBytes = used
|
2023-07-20 07:56:28 +00:00
|
|
|
inc self.totalBlocks
|
|
|
|
if isErr (await self.persistTotalBlocksCount()):
|
|
|
|
trace "Unable to update block total metadata"
|
|
|
|
return failure("Unable to update block total metadata")
|
|
|
|
|
|
|
|
self.updateMetrics()
|
2022-12-03 00:00:55 +00:00
|
|
|
return success()
|
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
proc updateQuotaBytesUsed(self: RepoStore, blk: Block): Future[?!void] {.async.} =
|
|
|
|
let used = self.quotaUsedBytes - blk.data.len.uint
|
|
|
|
if err =? (await self.metaDs.put(
|
|
|
|
QuotaUsedKey,
|
|
|
|
@(used.uint64.toBytesBE))).errorOption:
|
|
|
|
trace "Error updating quota key!", err = err.msg
|
|
|
|
return failure(err)
|
|
|
|
self.quotaUsedBytes = used
|
2023-07-20 07:56:28 +00:00
|
|
|
self.updateMetrics()
|
2023-03-08 15:04:54 +00:00
|
|
|
return success()
|
|
|
|
|
|
|
|
proc removeBlockExpirationEntry(self: RepoStore, cid: Cid): Future[?!void] {.async.} =
|
|
|
|
without key =? createBlockExpirationMetadataKey(cid), err:
|
|
|
|
return failure(err)
|
|
|
|
return await self.metaDs.delete(key)
|
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
method delBlock*(self: RepoStore, cid: Cid): Future[?!void] {.async.} =
|
|
|
|
## Delete a block from the blockstore
|
|
|
|
##
|
|
|
|
|
|
|
|
trace "Deleting block", cid
|
|
|
|
|
2023-08-21 02:51:04 +00:00
|
|
|
if cid.isEmpty:
|
|
|
|
trace "Empty block, ignoring"
|
|
|
|
return success()
|
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
if blk =? (await self.getBlock(cid)):
|
2023-03-08 15:04:54 +00:00
|
|
|
if key =? makePrefixKey(self.postFixLen, cid) and
|
2022-12-03 00:00:55 +00:00
|
|
|
err =? (await self.repoDs.delete(key)).errorOption:
|
|
|
|
trace "Error deleting block!", err = err.msg
|
|
|
|
return failure(err)
|
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
if isErr (await self.updateQuotaBytesUsed(blk)):
|
|
|
|
trace "Unable to update quote-bytes-used in metadata store"
|
|
|
|
return failure("Unable to update quote-bytes-used in metadata store")
|
2022-12-03 00:00:55 +00:00
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
if isErr (await self.removeBlockExpirationEntry(blk.cid)):
|
|
|
|
trace "Unable to remove block expiration entry from metadata store"
|
|
|
|
return failure("Unable to remove block expiration entry from metadata store")
|
2022-12-03 00:00:55 +00:00
|
|
|
|
|
|
|
trace "Deleted block", cid, totalUsed = self.totalUsed
|
|
|
|
|
2023-07-20 07:56:28 +00:00
|
|
|
dec self.totalBlocks
|
|
|
|
if isErr (await self.persistTotalBlocksCount()):
|
|
|
|
trace "Unable to update block total metadata"
|
|
|
|
return failure("Unable to update block total metadata")
|
|
|
|
|
|
|
|
self.updateMetrics()
|
2022-12-03 00:00:55 +00:00
|
|
|
return success()
|
|
|
|
|
|
|
|
method hasBlock*(self: RepoStore, cid: Cid): Future[?!bool] {.async.} =
|
|
|
|
## Check if the block exists in the blockstore
|
|
|
|
##
|
|
|
|
|
2023-08-21 02:51:04 +00:00
|
|
|
if cid.isEmpty:
|
|
|
|
trace "Empty block, ignoring"
|
|
|
|
return true.success
|
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
without key =? makePrefixKey(self.postFixLen, cid), err:
|
2022-12-03 00:00:55 +00:00
|
|
|
trace "Error getting key from provider", err = err.msg
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
return await self.repoDs.has(key)
|
|
|
|
|
|
|
|
method listBlocks*(
|
2023-06-22 15:11:18 +00:00
|
|
|
self: RepoStore,
|
|
|
|
blockType = BlockType.Manifest
|
|
|
|
): Future[?!BlocksIter] {.async.} =
|
2022-12-03 00:00:55 +00:00
|
|
|
## Get the list of blocks in the RepoStore.
|
|
|
|
## This is an intensive operation
|
|
|
|
##
|
|
|
|
|
|
|
|
var
|
|
|
|
iter = BlocksIter()
|
|
|
|
|
|
|
|
let key =
|
|
|
|
case blockType:
|
|
|
|
of BlockType.Manifest: CodexManifestKey
|
|
|
|
of BlockType.Block: CodexBlocksKey
|
|
|
|
of BlockType.Both: CodexRepoKey
|
|
|
|
|
|
|
|
without queryIter =? (await self.repoDs.query(Query.init(key))), err:
|
|
|
|
trace "Error querying cids in repo", blockType, err = err.msg
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
proc next(): Future[?Cid] {.async.} =
|
|
|
|
await idleAsync()
|
|
|
|
iter.finished = queryIter.finished
|
|
|
|
if not queryIter.finished:
|
|
|
|
if pair =? (await queryIter.next()) and cid =? pair.key:
|
|
|
|
trace "Retrieved record from repo", cid
|
|
|
|
return Cid.init(cid.value).option
|
|
|
|
|
|
|
|
return Cid.none
|
|
|
|
|
|
|
|
iter.next = next
|
|
|
|
return success iter
|
|
|
|
|
2023-03-08 15:04:54 +00:00
|
|
|
proc createBlockExpirationQuery(maxNumber: int, offset: int): ?!Query =
|
|
|
|
let queryKey = ? createBlockExpirationMetadataQueryKey()
|
|
|
|
success Query.init(queryKey, offset = offset, limit = maxNumber)
|
|
|
|
|
2023-06-22 15:11:18 +00:00
|
|
|
method getBlockExpirations*(
|
|
|
|
self: RepoStore,
|
|
|
|
maxNumber: int,
|
|
|
|
offset: int
|
|
|
|
): Future[?!BlockExpirationIter] {.async, base.} =
|
|
|
|
## Get block experiartions from the given RepoStore
|
2023-07-20 07:56:28 +00:00
|
|
|
##
|
2023-03-08 15:04:54 +00:00
|
|
|
without query =? createBlockExpirationQuery(maxNumber, offset), err:
|
|
|
|
trace "Unable to format block expirations query"
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
without queryIter =? (await self.metaDs.query(query)), err:
|
|
|
|
trace "Unable to execute block expirations query"
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
var iter = BlockExpirationIter()
|
|
|
|
|
|
|
|
proc next(): Future[?BlockExpiration] {.async.} =
|
|
|
|
if not queryIter.finished:
|
|
|
|
if pair =? (await queryIter.next()) and blockKey =? pair.key:
|
|
|
|
let expirationTimestamp = pair.data
|
|
|
|
let cidResult = Cid.init(blockKey.value)
|
|
|
|
if not cidResult.isOk:
|
|
|
|
raiseAssert("Unable to parse CID from blockKey.value: " & blockKey.value & $cidResult.error)
|
|
|
|
return BlockExpiration(
|
|
|
|
cid: cidResult.get,
|
|
|
|
expiration: expirationTimestamp.toSecondsSince1970
|
|
|
|
).some
|
|
|
|
else:
|
|
|
|
discard await queryIter.dispose()
|
|
|
|
iter.finished = true
|
|
|
|
return BlockExpiration.none
|
|
|
|
|
|
|
|
iter.next = next
|
|
|
|
return success iter
|
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
method close*(self: RepoStore): Future[void] {.async.} =
|
|
|
|
## Close the blockstore, cleaning up resources managed by it.
|
|
|
|
## For some implementations this may be a no-op
|
|
|
|
##
|
|
|
|
|
|
|
|
(await self.repoDs.close()).expect("Should close datastore")
|
|
|
|
|
|
|
|
proc reserve*(self: RepoStore, bytes: uint): Future[?!void] {.async.} =
|
|
|
|
## Reserve bytes
|
|
|
|
##
|
|
|
|
|
|
|
|
trace "Reserving bytes", reserved = self.quotaReservedBytes, bytes
|
|
|
|
|
|
|
|
if (self.totalUsed + bytes) > self.quotaMaxBytes:
|
|
|
|
trace "Not enough storage quota to reserver", reserve = self.totalUsed + bytes
|
|
|
|
return failure(
|
|
|
|
newException(QuotaNotEnoughError, "Not enough storage quota to reserver"))
|
|
|
|
|
|
|
|
self.quotaReservedBytes += bytes
|
|
|
|
if err =? (await self.metaDs.put(
|
|
|
|
QuotaReservedKey,
|
|
|
|
@(toBytesBE(self.quotaReservedBytes.uint64)))).errorOption:
|
|
|
|
|
|
|
|
trace "Error reserving bytes", err = err.msg
|
|
|
|
|
|
|
|
self.quotaReservedBytes += bytes
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
return success()
|
|
|
|
|
|
|
|
proc release*(self: RepoStore, bytes: uint): Future[?!void] {.async.} =
|
|
|
|
## Release bytes
|
|
|
|
##
|
|
|
|
|
|
|
|
trace "Releasing bytes", reserved = self.quotaReservedBytes, bytes
|
|
|
|
|
|
|
|
if (self.quotaReservedBytes.int - bytes.int) < 0:
|
|
|
|
trace "Cannot release this many bytes",
|
|
|
|
quotaReservedBytes = self.quotaReservedBytes, bytes
|
|
|
|
|
|
|
|
return failure("Cannot release this many bytes")
|
|
|
|
|
|
|
|
self.quotaReservedBytes -= bytes
|
|
|
|
if err =? (await self.metaDs.put(
|
|
|
|
QuotaReservedKey,
|
|
|
|
@(toBytesBE(self.quotaReservedBytes.uint64)))).errorOption:
|
|
|
|
|
|
|
|
trace "Error releasing bytes", err = err.msg
|
|
|
|
|
|
|
|
self.quotaReservedBytes -= bytes
|
|
|
|
|
|
|
|
return failure(err)
|
|
|
|
|
|
|
|
trace "Released bytes", bytes
|
2023-07-20 07:56:28 +00:00
|
|
|
self.updateMetrics()
|
2022-12-03 00:00:55 +00:00
|
|
|
return success()
|
|
|
|
|
|
|
|
proc start*(self: RepoStore): Future[void] {.async.} =
|
|
|
|
## Start repo
|
|
|
|
##
|
|
|
|
|
|
|
|
if self.started:
|
|
|
|
trace "Repo already started"
|
|
|
|
return
|
|
|
|
|
|
|
|
trace "Starting repo"
|
|
|
|
|
2023-07-20 07:56:28 +00:00
|
|
|
without total =? await self.metaDs.get(CodexTotalBlocksKey), err:
|
|
|
|
if not (err of DatastoreKeyNotFound):
|
|
|
|
error "Unable to read total number of blocks from metadata store", err = err.msg, key = $CodexTotalBlocksKey
|
|
|
|
|
|
|
|
if total.len > 0:
|
|
|
|
self.totalBlocks = uint64.fromBytesBE(total).uint
|
|
|
|
trace "Number of blocks in store at start", total = self.totalBlocks
|
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
## load current persist and cache bytes from meta ds
|
|
|
|
without quotaUsedBytes =? await self.metaDs.get(QuotaUsedKey), err:
|
|
|
|
if not (err of DatastoreKeyNotFound):
|
|
|
|
error "Error getting cache bytes from datastore",
|
|
|
|
err = err.msg, key = $QuotaUsedKey
|
|
|
|
|
|
|
|
raise newException(Defect, err.msg)
|
|
|
|
|
|
|
|
if quotaUsedBytes.len > 0:
|
|
|
|
self.quotaUsedBytes = uint64.fromBytesBE(quotaUsedBytes).uint
|
|
|
|
|
|
|
|
notice "Current bytes used for cache quota", bytes = self.quotaUsedBytes
|
|
|
|
|
|
|
|
without quotaReservedBytes =? await self.metaDs.get(QuotaReservedKey), err:
|
|
|
|
if not (err of DatastoreKeyNotFound):
|
|
|
|
error "Error getting persist bytes from datastore",
|
|
|
|
err = err.msg, key = $QuotaReservedKey
|
|
|
|
|
|
|
|
raise newException(Defect, err.msg)
|
|
|
|
|
|
|
|
if quotaReservedBytes.len > 0:
|
|
|
|
self.quotaReservedBytes = uint64.fromBytesBE(quotaReservedBytes).uint
|
|
|
|
|
|
|
|
if self.quotaUsedBytes > self.quotaMaxBytes:
|
|
|
|
raiseAssert "All storage quota used, increase storage quota!"
|
|
|
|
|
|
|
|
notice "Current bytes used for persist quota", bytes = self.quotaReservedBytes
|
|
|
|
|
2023-07-20 07:56:28 +00:00
|
|
|
self.updateMetrics()
|
2022-12-03 00:00:55 +00:00
|
|
|
self.started = true
|
|
|
|
|
|
|
|
proc stop*(self: RepoStore): Future[void] {.async.} =
|
|
|
|
## Stop repo
|
|
|
|
##
|
2023-03-16 15:00:36 +00:00
|
|
|
if not self.started:
|
2022-12-03 00:00:55 +00:00
|
|
|
trace "Repo is not started"
|
|
|
|
return
|
|
|
|
|
|
|
|
trace "Stopping repo"
|
|
|
|
(await self.repoDs.close()).expect("Should close repo store!")
|
|
|
|
(await self.metaDs.close()).expect("Should close meta store!")
|
|
|
|
|
2023-03-16 15:00:36 +00:00
|
|
|
self.started = false
|
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
func new*(
|
2023-06-22 15:11:18 +00:00
|
|
|
T: type RepoStore,
|
|
|
|
repoDs: Datastore,
|
|
|
|
metaDs: Datastore,
|
|
|
|
clock: Clock = SystemClock.new(),
|
|
|
|
postFixLen = 2,
|
|
|
|
quotaMaxBytes = DefaultQuotaBytes,
|
|
|
|
blockTtl = DefaultBlockTtl
|
|
|
|
): RepoStore =
|
2023-07-20 07:56:28 +00:00
|
|
|
## Create new instance of a RepoStore
|
|
|
|
##
|
2023-06-22 15:11:18 +00:00
|
|
|
RepoStore(
|
2022-12-03 00:00:55 +00:00
|
|
|
repoDs: repoDs,
|
|
|
|
metaDs: metaDs,
|
2023-03-08 15:04:54 +00:00
|
|
|
clock: clock,
|
2022-12-03 00:00:55 +00:00
|
|
|
postFixLen: postFixLen,
|
|
|
|
quotaMaxBytes: quotaMaxBytes,
|
|
|
|
blockTtl: blockTtl)
|