Skip to content

Commit

Permalink
Colossus cleanup fix + tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Lezek123 committed Oct 16, 2024
1 parent f98ab20 commit ec6a278
Show file tree
Hide file tree
Showing 12 changed files with 215 additions and 29 deletions.
8 changes: 7 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ services:
environment:
# ACCOUNT_URI overrides command line arg --accountUri
- ACCOUNT_URI=${COLOSSUS_2_TRANSACTOR_URI}
# Env that allows testing cleanup
- CLEANUP_NEW_OBJECT_EXPIRATION_PERIOD=10
- CLEANUP_MIN_REPLICATION_THRESHOLD=1
entrypoint: ['yarn', 'storage-node']
command: [
'server', '--worker=${COLOSSUS_2_WORKER_ID}', '--port=3333', '--uploads=/data/uploads',
Expand All @@ -113,7 +116,10 @@ services:
'--apiUrl=${JOYSTREAM_NODE_WS}',
'--logFilePath=/logs',
'--tempFolder=/data/temp/',
'--pendingFolder=/data/pending/'
'--pendingFolder=/data/pending/',
# Use cleanup on colossus-2 for testing purposes
'--cleanup',
'--cleanupInterval=1'
]

distributor-2:
Expand Down
6 changes: 6 additions & 0 deletions storage-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 4.2.0

- Fix `util:cleanup` script (call `loadDataObjectIdCache` first)
- Allow changing default log level using environment variable (`COLOSSUS_DEFAULT_LOG_LEVEL`)
- Allow adjusting cleanup constants via env (`CLEANUP_MIN_REPLICATION_THRESHOLD`, `CLEANUP_NEW_OBJECT_EXPIRATION_PERIOD`)

### 4.1.2

- Bump @joystream/types to Petra version
Expand Down
44 changes: 22 additions & 22 deletions storage-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/cancel-invite.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/cancel-invite.ts)_
_See code: [src/commands/leader/cancel-invite.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/cancel-invite.ts)_

## `storage-node leader:create-bucket`

Expand Down Expand Up @@ -244,7 +244,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/create-bucket.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/create-bucket.ts)_
_See code: [src/commands/leader/create-bucket.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/create-bucket.ts)_

## `storage-node leader:delete-bucket`

Expand All @@ -271,7 +271,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/delete-bucket.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/delete-bucket.ts)_
_See code: [src/commands/leader/delete-bucket.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/delete-bucket.ts)_

## `storage-node leader:invite-operator`

Expand Down Expand Up @@ -300,7 +300,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/invite-operator.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/invite-operator.ts)_
_See code: [src/commands/leader/invite-operator.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/invite-operator.ts)_

## `storage-node leader:remove-operator`

Expand All @@ -327,7 +327,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/remove-operator.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/remove-operator.ts)_
_See code: [src/commands/leader/remove-operator.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/remove-operator.ts)_

## `storage-node leader:set-bucket-limits`

Expand Down Expand Up @@ -357,7 +357,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/set-bucket-limits.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/set-bucket-limits.ts)_
_See code: [src/commands/leader/set-bucket-limits.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/set-bucket-limits.ts)_

## `storage-node leader:set-global-uploading-status`

Expand Down Expand Up @@ -385,7 +385,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/set-global-uploading-status.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/set-global-uploading-status.ts)_
_See code: [src/commands/leader/set-global-uploading-status.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/set-global-uploading-status.ts)_

## `storage-node leader:update-bag-limit`

Expand All @@ -412,7 +412,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/update-bag-limit.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/update-bag-limit.ts)_
_See code: [src/commands/leader/update-bag-limit.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/update-bag-limit.ts)_

## `storage-node leader:update-bags`

Expand Down Expand Up @@ -468,7 +468,7 @@ OPTIONS
Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/update-bags.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/update-bags.ts)_
_See code: [src/commands/leader/update-bags.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/update-bags.ts)_

## `storage-node leader:update-blacklist`

Expand Down Expand Up @@ -497,7 +497,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/update-blacklist.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/update-blacklist.ts)_
_See code: [src/commands/leader/update-blacklist.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/update-blacklist.ts)_

## `storage-node leader:update-bucket-status`

Expand Down Expand Up @@ -526,7 +526,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/update-bucket-status.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/update-bucket-status.ts)_
_See code: [src/commands/leader/update-bucket-status.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/update-bucket-status.ts)_

## `storage-node leader:update-data-fee`

Expand All @@ -553,7 +553,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/update-data-fee.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/update-data-fee.ts)_
_See code: [src/commands/leader/update-data-fee.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/update-data-fee.ts)_

## `storage-node leader:update-data-object-bloat-bond`

Expand Down Expand Up @@ -581,7 +581,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/update-data-object-bloat-bond.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/update-data-object-bloat-bond.ts)_
_See code: [src/commands/leader/update-data-object-bloat-bond.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/update-data-object-bloat-bond.ts)_

## `storage-node leader:update-dynamic-bag-policy`

Expand Down Expand Up @@ -611,7 +611,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/update-dynamic-bag-policy.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/update-dynamic-bag-policy.ts)_
_See code: [src/commands/leader/update-dynamic-bag-policy.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/update-dynamic-bag-policy.ts)_

## `storage-node leader:update-voucher-limits`

Expand Down Expand Up @@ -640,7 +640,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/leader/update-voucher-limits.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/leader/update-voucher-limits.ts)_
_See code: [src/commands/leader/update-voucher-limits.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/leader/update-voucher-limits.ts)_

## `storage-node operator:accept-invitation`

Expand Down Expand Up @@ -673,7 +673,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/operator/accept-invitation.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/operator/accept-invitation.ts)_
_See code: [src/commands/operator/accept-invitation.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/operator/accept-invitation.ts)_

## `storage-node operator:set-metadata`

Expand Down Expand Up @@ -704,7 +704,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/operator/set-metadata.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/operator/set-metadata.ts)_
_See code: [src/commands/operator/set-metadata.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/operator/set-metadata.ts)_

## `storage-node server`

Expand Down Expand Up @@ -810,7 +810,7 @@ OPTIONS
directory will be used.
```

_See code: [src/commands/server.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/server.ts)_
_See code: [src/commands/server.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/server.ts)_

## `storage-node util:cleanup`

Expand Down Expand Up @@ -848,7 +848,7 @@ OPTIONS
--keyStore=keyStore Path to a folder with multiple key files to load into keystore.
```

_See code: [src/commands/util/cleanup.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/util/cleanup.ts)_
_See code: [src/commands/util/cleanup.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/util/cleanup.ts)_

## `storage-node util:fetch-bucket`

Expand Down Expand Up @@ -881,7 +881,7 @@ OPTIONS
under the uploads directory will be used.
```

_See code: [src/commands/util/fetch-bucket.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/util/fetch-bucket.ts)_
_See code: [src/commands/util/fetch-bucket.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/util/fetch-bucket.ts)_

## `storage-node util:multihash`

Expand All @@ -896,7 +896,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [src/commands/util/multihash.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/util/multihash.ts)_
_See code: [src/commands/util/multihash.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/util/multihash.ts)_

## `storage-node util:verify-bag-id`

Expand Down Expand Up @@ -924,5 +924,5 @@ OPTIONS
- dynamic:member:4
```

_See code: [src/commands/util/verify-bag-id.ts](https://github.com/Joystream/joystream/blob/v4.0.0/src/commands/util/verify-bag-id.ts)_
_See code: [src/commands/util/verify-bag-id.ts](https://github.com/Joystream/joystream/blob/v4.2.0/src/commands/util/verify-bag-id.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion storage-node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "storage-node",
"description": "Joystream storage subsystem.",
"version": "4.1.2",
"version": "4.2.0",
"author": "Joystream contributors",
"bin": {
"storage-node": "./bin/run"
Expand Down
2 changes: 2 additions & 0 deletions storage-node/src/commands/util/cleanup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import ApiCommandBase from '../../command-base/ApiCommandBase'
import logger from '../../services/logger'
import { QueryNodeApi } from '../../services/queryNode/api'
import { performCleanup } from '../../services/sync/cleanupService'
import { loadDataObjectIdCache } from '../../services/caching/localDataObjects'

/**
* CLI command:
Expand Down Expand Up @@ -51,6 +52,7 @@ export default class Cleanup extends ApiCommandBase {
const bucketId = flags.bucketId.toString()
const api = await this.getApi()
const qnApi = new QueryNodeApi(flags.queryNodeEndpoint)
await loadDataObjectIdCache(flags.uploads)

logger.info('Cleanup...')

Expand Down
3 changes: 2 additions & 1 deletion storage-node/src/services/caching/newUploads.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import NodeCache from 'node-cache'

// Expiration period in seconds for the new uploads data.
const ExpirationPeriod = 3600 // seconds (1 hour)
// Default=3600 (1 hour)
const ExpirationPeriod = parseInt(process.env.CLEANUP_NEW_OBJECT_EXPIRATION_PERIOD || '0') || 3600

// Max ID number in local cache
const MaxEntries = 100000
Expand Down
4 changes: 4 additions & 0 deletions storage-node/src/services/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ const levels = {
*/
function createDefaultLoggerOptions(): winston.LoggerOptions {
const level = () => {
const levelFlag = process.env.COLOSSUS_DEFAULT_LOG_LEVEL
if (levelFlag && Object.keys(levels).includes(levelFlag)) {
return levelFlag
}
const env = process.env.NODE_ENV || 'development'
const isDevelopment = env === 'development'
return isDevelopment ? 'debug' : 'warn'
Expand Down
4 changes: 3 additions & 1 deletion storage-node/src/services/sync/cleanupService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ export const MAXIMUM_QN_LAGGING_THRESHOLD = 100
/**
* The number of (peer) storage operators that should hold the assets, before the
* cleanup/pruning of the outdated assets from this storage node can be initialed.
* Default=2.
*/
export const MINIMUM_REPLICATION_THRESHOLD = 2
export const MINIMUM_REPLICATION_THRESHOLD = parseInt(process.env.CLEANUP_MIN_REPLICATION_THRESHOLD || '0') || 2

/**
* Runs the data objects cleanup/pruning workflow. It removes all the local
Expand Down Expand Up @@ -80,6 +81,7 @@ export async function performCleanup(
const removedIds = _.difference(storedObjectsIds, assignedObjectsIds)
const removedObjects = await getDataObjectsByIDs(qnApi, removedIds)

logger.debug(`Cleanup - stored objects: ${storedObjectsIds.length}, assigned objects: ${assignedObjectsIds.length}`)
logger.debug(`Cleanup - pruning ${removedIds.length} obsolete objects`)

// Data objects permanently deleted from the runtime
Expand Down
8 changes: 7 additions & 1 deletion tests/network-tests/ColossusApi.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
import { Configuration, FilesApi } from '@joystream/storage-node-client'
import { Configuration, FilesApi, StateApi } from '@joystream/storage-node-client'
import { AxiosResponse } from 'axios'
import { assert } from 'chai'

export class ColossusApi {
public filesApi: FilesApi
public stateApi: StateApi

constructor(url: string) {
const config = new Configuration({
basePath: url,
})
this.filesApi = new FilesApi(config)
this.stateApi = new StateApi(config)
}

public async fetchAssetAsBuffer(assetId: string): Promise<AxiosResponse<Buffer>> {
Expand All @@ -28,4 +30,8 @@ export class ColossusApi {
assert.deepEqual([...response.data], [...expectedData])
assert.equal(response.headers['content-type'], expectedMimeType)
}

public async expectAssetNotFound(assetId: string): Promise<AxiosResponse<unknown>> {
return this.filesApi.filesApiGetFile(assetId, { validateStatus: (status) => status === 404 })
}
}
Loading

0 comments on commit ec6a278

Please sign in to comment.