Bossies 2015: The Best of Open Source Software Awards
InfoWorld editors and contributors pick the top open source software for data centers, clouds, developers, data crunchers, and IT pros
Whenever you hear someone complain about developer productivity, just slap them. Having slogged through hundreds of open source projects each year for the past several years, I can assure you that developers are extremely productive. Every time we put together this package -- InfoWorld’s annual Best of Open Source Awards, aka the Bossies -- I end up wishing developers were just a little less on the ball.
Of course I had help. InfoWorld is fortunate to draw on many contributors who work as software developers, systems integrators, data scientists, security consultants, and networking gurus in real life. If there’s an open source tool in their domain they don’t already know, they’re eager to dive in. Thanks to the hard work of these experts, our 2015 Bossies encompass some 100 winners in six categories:
Among the major clouds offering mobile back ends as a service, InfoWorld judged Microsoft’s to be the
READ NOW- Bossie Awards 2015: The best open source applications
- Bossie Awards 2015: The best open source application development tools
- Bossie Awards 2015: The best open source big data tools
- Bossie Awards 2015: The best open source data center and cloud software
- Bossie Awards 2015: The best open source desktop and mobile software
- Bossie Awards 2015: The best open source networking and security software
Where do we find all of these winners? We hang out in the places that open source gathers. We take in the conferences, we hit the meetups, we climb the mountains of open source known as GitHub and Sourceforge -- and the hill of open source, CodePlex. (RIP, Google Code.) We never miss OSCON, and wherever we go, we keep our eyes and our ears open. When a leading light such as Joyent’s Bryan Cantrill reveals a tech crush (RethinkDB, recently), we zero in for a close look.
Some winners are inescapable. Docker has stolen every show that developers have attended for the last 18 months. And the Docker vortex has drawn a number of other new projects into the mix, as containers spark some radical rethinking of the operating system, the structure of applications, and how to monitor and manage all of the moving parts.
Other winners, like RethinkDB, sneak up on us. Just when you begin to think some part of the technology landscape is settling, a new project emerges to shake it up again. RethinkDB is one of a number of young projects that suggest there is much more to come in the world of postrelational databases.
We had no illusions that the Hadoop ecosystem was stabilizing, and sure enough, big data continues to explode. A number of new data analysis projects make their Bossies debut this year, some of them friends of Hadoop and some not. More real-time approaches to distributed data processing are kicking MapReduce to the curb, and for the first time since 2012, Hadoop itself is not among our winners.
Dev tools, databases, desktop apps, apps to run your business -- free, professional-grade software is falling from the sky. All you have to do is pick it up and use it. Open source licensing and the collaborative efforts of countless development teams (and the companies that employ them) are fueling an incredible boom in business software development. With our 2015 Bossies, we offer a guide to the best open source projects the boom has produced.

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。
持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。
转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。
- 上一篇
Docker之dockerfile
一、什么是dockerfile Docker通过对于在dockerfile中的一系列指令的顺序解析实现自动的Image的构建; 通过使用build命令,根据dockerfile的描述来构建镜像; build的两种方法: 通过源代码路径的方式; 通过标准输入流的方式; 通过源代码路径: Dockerfile需要放置在项目的根目录位置; 在构建的时候,Docker client会把整个Context打包发送到docker Server端,然后由Server端负责build镜像,在构建成功后,会删除Context目录; docker build -t {镜像名字}{项目的路径,可以是相对路径} 通过标准输入流: 通过标准输入流的方式获取dockerfile的内容; client不会打包上传context目录,因此对于一些ADD、COPY等涉及HOST本地文件复制的操作不能够支持; docker build -t {镜像名字} -< Dockerfile路径 build cache: Dockerfile中的每一个指令执行完毕后,都会提交为一个Image,这样保证了指令间不会有影响; ...
- 下一篇
docker进入容器
进入容器的三种方式: sshd nsenter exec sshd 在容器中开启一个SSHD的服务,通过SSH的协议登录到容器中,把容器看出一个vm nsenter: nsenter包含在util-linux包中,用来进入一个进程的Namespace 获取一个容器的进程ID: docker inspect --format "{{ .State.Pid}}" <container-id> nsenter --target $pid --mount --uts --ipc --net --pid exec: docker 1.3版本引入的一个新的指令,用来进入一个容器中运行指令 docker exec <container-id> ["CMD"] orchestration as a Service: orchestration as a Service的目标是协调在不同Host上的Container,把他们有机的组织在一起成为一个统一的系统; 解决Container的协调管理 单个数据中心单节点/多个节点跨数据中心 Container之间的网络通信 Oaas解...
相关文章
文章评论
共有0条评论来说两句吧...
文章二维码
点击排行
推荐阅读
最新文章
- SpringBoot2配置默认Tomcat设置,开启更多高级功能
- SpringBoot2整合Redis,开启缓存,提高访问速度
- Windows10,CentOS7,CentOS8安装Nodejs环境
- MySQL8.0.19开启GTID主从同步CentOS8
- Docker快速安装Oracle11G,搭建oracle11g学习环境
- SpringBoot2整合MyBatis,连接MySql数据库做增删改查操作
- Hadoop3单机部署,实现最简伪集群
- Eclipse初始化配置,告别卡顿、闪退、编译时间过长
- 设置Eclipse缩进为4个空格,增强代码规范
- SpringBoot2编写第一个Controller,响应你的http请求并返回结果