123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- /*
- * This file is part of the storage node for the Joystream project.
- * Copyright (C) 2019 Joystream Contributors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- 'use strict'
- const debug = require('debug')('joystream:sync')
- const _ = require('lodash')
- const { ContentId } = require('@joystream/types/storage')
- // The number of concurrent sync sessions allowed. Must be greater than zero.
- const MAX_CONCURRENT_SYNC_ITEMS = 20
- async function syncContent({ api, storage, contentBeingSynced, contentCompleteSynced }) {
- const knownEncodedContentIds = (await api.assets.getAcceptedContentIds()).map((id) => id.encode())
- // Select ids which we have not yet fully synced
- const needsSync = knownEncodedContentIds
- .filter((id) => !contentCompleteSynced.has(id))
- .filter((id) => !contentBeingSynced.has(id))
- // Since we are limiting concurrent content ids being synced, to ensure
- // better distribution of content across storage nodes during a potentially long
- // sync process we don't want all nodes to replicate items in the same order, so
- // we simply shuffle.
- const candidatesForSync = _.shuffle(needsSync)
- // TODO: get the data object
- // make sure the data object was Accepted by the liaison,
- // don't just blindly attempt to fetch them
- while (contentBeingSynced.size < MAX_CONCURRENT_SYNC_ITEMS && candidatesForSync.length) {
- const id = candidatesForSync.shift()
- try {
- contentBeingSynced.set(id)
- const contentId = ContentId.decode(api.api.registry, id)
- await storage.synchronize(contentId, (err, status) => {
- if (err) {
- contentBeingSynced.delete(id)
- debug(`Error Syncing ${err}`)
- } else if (status.synced) {
- contentBeingSynced.delete(id)
- contentCompleteSynced.set(id)
- }
- })
- } catch (err) {
- // Most likely failed to resolve the content id
- debug(`Failed calling synchronize ${err}`)
- contentBeingSynced.delete(id)
- }
- }
- }
- async function createNewRelationships({ api, contentCompleteSynced }) {
- const roleAddress = api.identities.key.address
- const providerId = api.storageProviderId
- // Create new relationships for synced content if required and
- // compose list of relationship ids to be set to ready.
- return (
- await Promise.all(
- [...contentCompleteSynced.keys()].map(async (id) => {
- const contentId = ContentId.decode(api.api.registry, id)
- const { relationship, relationshipId } = await api.assets.getStorageRelationshipAndId(providerId, contentId)
- if (relationship) {
- // maybe prior transaction to set ready failed for some reason..
- if (!relationship.ready) {
- return relationshipId
- }
- } else {
- // create relationship
- debug(`Creating new storage relationship for ${id}`)
- try {
- return await api.assets.createStorageRelationship(roleAddress, providerId, contentId)
- } catch (err) {
- debug(`Error creating new storage relationship ${id}: ${err.stack}`)
- }
- }
- return null
- })
- )
- ).filter((id) => id !== null)
- }
- async function setRelationshipsReady({ api, relationshipIds }) {
- const roleAddress = api.identities.key.address
- const providerId = api.storageProviderId
- return Promise.all(
- relationshipIds.map(async (relationshipId) => {
- try {
- await api.assets.toggleStorageRelationshipReady(roleAddress, providerId, relationshipId, true)
- } catch (err) {
- debug('Error setting relationship ready')
- }
- })
- )
- }
- async function syncPeriodic({ api, flags, storage, contentBeingSynced, contentCompleteSynced }) {
- const retry = () => {
- setTimeout(syncPeriodic, flags.syncPeriod, {
- api,
- flags,
- storage,
- contentBeingSynced,
- contentCompleteSynced,
- })
- }
- try {
- debug('Sync run started.')
- const chainIsSyncing = await api.chainIsSyncing()
- if (chainIsSyncing) {
- debug('Chain is syncing. Postponing sync run.')
- return retry()
- }
- if (!flags.anonymous) {
- // Retry later if provider is not active
- if (!(await api.providerIsActiveWorker())) {
- debug(
- 'storage provider role account and storageProviderId are not associated with a worker. Postponing sync run.'
- )
- return retry()
- }
- const recommendedBalance = await api.providerHasMinimumBalance(300)
- if (!recommendedBalance) {
- debug('Warning: Provider role account is running low on balance.')
- }
- const sufficientBalance = await api.providerHasMinimumBalance(100)
- if (!sufficientBalance) {
- debug('Provider role account does not have sufficient balance. Postponing sync run!')
- return retry()
- }
- }
- await syncContent({ api, storage, contentBeingSynced, contentCompleteSynced })
- // Only update on-chain state if not in anonymous mode
- if (!flags.anonymous) {
- const relationshipIds = await createNewRelationships({ api, contentCompleteSynced })
- await setRelationshipsReady({ api, relationshipIds })
- debug(`Sync run completed, set ${relationshipIds.length} new relationships to ready`)
- }
- } catch (err) {
- debug(`Error in sync run ${err.stack}`)
- }
- // always try again
- retry()
- }
- function startSyncing(api, flags, storage) {
- // ids of content currently being synced
- const contentBeingSynced = new Map()
- // ids of content that completed sync and may require creating a new relationship
- const contentCompleteSynced = new Map()
- syncPeriodic({ api, flags, storage, contentBeingSynced, contentCompleteSynced })
- }
- module.exports = {
- startSyncing,
- }
|