Manage a workerpool
A workerpool manager is an essential actor in the iExec network. It will be in charge of proposing available computing resources (workers) to task requesters.
An iExec workerpool is orchestrated by an iExec Core Scheduler. The iExec Core Scheduler watches on-chain deals and schedules off-chain computation among available workers.
Deploy a workerpool
You can deploy your own workerpool on iExec with this repository. Be sure to check a particular release before starting your deployment.
Manage your workerpoolorders
Orders enable setting custom governance for resources.
Here you will learn how to manage your workerpool's monetization rules.
Publish a workerpool order
Initialize a workerpoolorder
:
Edit the workerpoolorder
part in iexec.json
to set the conditions to use your workerpool:
workerpool
workerpool address
workerpoolprice
price to charge the requester for each execution of the app (in nRLC)
volume
number of authorized uses, each use decreases this number
tag
restrict usage to a specific runtime such as Scone or Gramine TEE frameworks
category
Order category, will define the deal workClockTimeRef
and its deadlines
trust
Trust level of the execution, impacts the number of replicates
apprestrict
restrict the workerpool usage to a specifig app (1)
datasetrestrict
restrict the workerpool usage to a specific dataset (1)
requesterrestrict
restrict the workerpool usage to a specific requester (1)
the restriction is disabled by default with 0x0000000000000000000000000000000000000000.
The supported tags for workerpool orders are:
0x0000000000000000000000000000000000000000000000000000000000000000
Order for the execution of a standard task
0x0000000000000000000000000000000000000000000000000000000000000003
Order for the execution of a TEE task with Scone framework
0x0000000000000000000000000000000000000000000000000000000000000005
Order for the execution of a TEE task with Gramine framework (reserved value, do not use)
Do not publish workerpool orders with a tag value out of the specified list. Such an order could produce undesirable and unpredictable behaviors. The iExec SDK implements all required preflight checks to avoid erroneous orders publishing.
Currently, TEE workflow do not support tasks replication on several workers. TEE workerpool orders must be published with
trust
value equal to1
.TEE tasks with Gramine TEE framework are not supported yet. Do not publish orders with both
tee
andgramine
tag bits enabled.
As soon as your ẁorkerpoolorder
complies to your requirements, you must sign it and you may publish it.
Remove an order from iExec Marketplace
List the published orders for your workerpool.
Copy the orderHash
of the order you want to remove
Unpublish the workerpoolorder
from the iExec Marketplace
An unpublished order is still valid on the blockchain, to invalidate it use the cancel command.
Last updated