java - 如何用一台电脑实现分布式
黄舟
黄舟 2017-04-17 15:56:50
0
5
616

想做一个分布式的爬虫,但是只有一台笔记本。

请问这种硬件条件能完成一个分布式的项目的开发么?

项目不大用来做本科毕设的。

可以用什么技术来虚拟多台主机么?或者用云服务之类的其他人的服务器来完成这个。

Thanks!

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(5)
Peter_Zhu

For setting up a distributed crawler, I believe your main thing is still in the crawler code. Just split the content into multiple small services. You only need to design it to be scalable at the beginning, or simply put If you can add a node by adding an IP port, there is no difference between a single machine and multiple machines. You can start it on a single machine from the beginning. After the initial demo is completed, for example, if it is completed, you can crawl a page and then distribute the sub-resources inside. Go to different nodes (other processes that run on a single machine from the beginning) to load, and then find a multi-machine to run it. As for the machine, aws and ali cloud are all ok, or if you like to mess around, you can learn about Raspberry Pi.

小葫芦

If your laptop has 8 GB of memory, there is no big problem in running 4 or 5 server version (no GUI) Liunx virtual machines.
Free VirtualBox, paid VMWare, and Hyper-V that comes with Windows can all be used.

For cloud services, you can consider using Amazon AWS, write the code locally, and then turn on the machine on Amazon. Just find a smaller machine, which is billed by time. You can just turn it off after completing the experiment.

阿神

vagrant, a virtual development environment based on virtualbox, can run multiple virtual machines on one machine, and can configure IP networking
Official website http://www.vagrantup.com/
Simple usage method: http://segmentfault .com/a/1190000000264347

左手右手慢动作

Heavyweight solution: virtual machine, you can use virtualbox, vmware or API-based Vagrant
Lightweight solution: docker

大家讲道理

Commonly used virtual machine software can be used, such as virtualbox.
Linux can also run with 128M memory.
If the database is fast, it will consume more memory.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!