Could Not Calculate Build Plan

参考http://stackoverflow.com/questions/12533885/could-not-calculate-build-plan-plugin-org-apache-maven-pluginsmaven-resources
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved

I had the exact same problem and since I read somewhere that the error was caused by a cached file, I fixed it by deleting all the files under de .m2 repository folder. The next time I built the project I had to download all the dependencies again but it was worth it - 0 errors!!

多个程序向同一个Kafka Topic写入数据

经测试, 在多个程序同时向同一个kafka topic中写入数据, 不会出现数据冲突或者丢失的情况.

测试数据:
向kafka中写数据

program instance 1 : 10000条数据
program instance 2 : 10000条数据
program instance 3 : 10000条数据

同时启动上述3个程序, 程序每次写完一条数据,sleep 50ms.

从kafka中读取数据

共读取到30000条数据

结论

在多个程序同时向同一个kafka topic中写入数据, 不会出现数据冲突或者丢失的情况.

Hexo文章中插入图片

1
2
3
4
使用markdown写文章,插入图片的格式为![图片名称](链接地址),这里要说的是链接地址怎么写。
对于hexo,有两种方式:
使用本地路径:在hexo/source目录下新建一个img文件夹,将图片放入该文件夹下,插入图片时链接即为/img/图片名称。
使用微博图床,地址http://weibotuchuang.sinaapp.com/,将图片拖入区域中,会生成图片的URL,这就是链接地址。