Giter Club home page Giter Club logo

Comments (3)

meister03 avatar meister03 commented on June 15, 2024

The new implementation, should work also when clusters are offline. I will need to test it, why it is not working 🤔

from discord-hybrid-sharding.

Mr-KayJayDee avatar Mr-KayJayDee commented on June 15, 2024

Maybe my code is wrong somewhere 🤔

from discord-hybrid-sharding.

Mr-KayJayDee avatar Mr-KayJayDee commented on June 15, 2024

What i did was spawning 3 clusters, kill a cluster after everything is spawned so i'm left with 2 alive and when the killed one is restarting i'm making my api request that will broadcast eval (and my error comes here)

import { ClusterManager } from "discord-hybrid-sharding";
import clientToken from "./config";
import log from "./utils/logger";

const manager = new ClusterManager(`${__dirname}/index.js`, {
	totalShards: 3,
	shardsPerClusters: 1,
	mode: "process",
	token: clientToken.token,
});

manager.on("clusterCreate", (cluster) =>
	log(
		`Launched Cluster ${cluster.id}\n-------------------------------------------------------------`,
		"cluster"
	)
);
manager.spawn({ timeout: -1 });

setTimeout(() => {
	const clusterToKill = manager.clusters.get(0);
	if (clusterToKill) {
		clusterToKill.kill({
			force: true,
		});
		log(`Killed Cluster ${clusterToKill.id}`, "cluster");
	}
}, 30000);

from discord-hybrid-sharding.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.