Skip to content

Yuuki77/mage-module-shard

 
 

Repository files navigation

mage-module-shard

Module to help you create distributed MAGE modules.

Installation

npm install --save mage-module-shard

Usage

Please take note the following requirments:

  1. All forwardable methods must be async functions
  2. Methods on objects will not be set on the remote node; you should stick to sending only data objects

lib/modules/sharded/index.ts

import AbstractShardedModule, {
  IShard
} from 'mage-module-shard'

class ShardedModule extends AbstractShardedModule {
    public async willForwardSomeCalls(state: mage.core.IState) {
      const shard = this.createShard(state.actorId)
      const val = await shard.willRunRemotely(state)

      return { shard, val }
    }

    public async forwardUsingShard(state: mage.core.IState, shardData: IShard) {
      const shard = this.getShard(shardData)
      const val = await shard.willRunRemotely(state)

      return { shard, val }
    }

    public async willRunRemotely(state: mage.core.IState) {
      return 1
    }
}

export default new ShardedModule()

This module works as follow:

  1. Call this.createShard(string) to receive a proxy instance; all API calls made on this proxy will always be forwarded to the same server
  2. Keep this proxy around: Normally, you will pass this to your game client(s)
  3. Reuse the proxy data in future calls: Game clients will send you back this data, and you will use it to route other related calls to the same MAGE node

Todo

  • limit: only let a limited number of nodes run this module
  • broadcast: send a call to all nodes in the cluster and receive an array of responses

License

MIT

About

Module to help you implement modules that act as shards within a MAGE cluster

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 100.0%