Can ray-core work over decentralized p2p network created by libp2p?
Which language is more adequate for that?
Please code with examples without Ray[AIR]
I have my own p2p decentralized(gossip) network created with libp2p and must to use RAY-core
to work simple AI task using that existing p2p network.
In conclusion must to use Ray together with libp2p.
Which language need to use and how show the simple code?
I not want or intend to use one cluster from ray or other resources from ray.
I want to use my node’s resources from my private(isolate) peer2peer(p2p) network
and in this case how can do that from ray?
So need to use ray but on my private libp2p network… that ideea!
Can be done that from ray and in which langauage go,python or java?
So need to create one distributed task(like AI or any distributed calculation) but using resourses from my private p2p network(already created with libp2p)
result_ids =
for i in range(10):
for j in range(10):
result_ids.append(add.remote(i, j))
result = sum(ray.get(result_ids))
print(result)
can be used in this form from python? or … ray need/must to have access to my private routing table(because my routing table was stored into swarm’s blockchain and for local nodes I used mDNS and for internet nodes I used Kademlia DHT protocol…in plus the my private network was created using libp2p from GO/golang)?