微软职位内部推荐-SW Engineer II for Cloud Service
微软近期Open的职位:
Positions: SDE for Big Data Cloud Services
Azure Big Data Cloud Services and Cosmos are key components of Microsoft’s big data strategy. We have exciting opportunities for engineers at all levels!
Cosmos is a massively-parallel distributed system comprised of tens of thousands of commodity servers, coordinating to provide vast reliable storage and stunning computation power. Every day we process hundreds of petabytes of data from Azure, Bing, AdCenter, MSN, and Windows Live. Every day we run thousands of computations that read and write petabytes of data. The underlying service needs to be unimaginably fast, and it needs to be rock-solid reliable.
The Cosmos Team (part of the overall Big Data Cloud Services team) is on path to scale to exabytes of storage in coming years. Our users run computations over the sum corpora of human knowledge - multiple copies of the world-wide-web and all of the structured data/imagery linked from it. A ‘small’ computation for us reasons over terabytes of storage within a few seconds; computations that read petabytes are becoming more and more common.
The Big Data team in C&E is effectively part of a bigger team located in Both Bellevue, WA, USA and Beijing.
Big Data team in C&E is looking for developers to help advance the state of the art in multiple areas, such as, Front End cloud services, Services management and Telemetry/Analytics. The engineer will design, implement, and deliver one or more important Big Data services, components, or tools.  
This is a fun and fast paced environment and a great opportunity to work on something highly strategic to Microsoft. We have very tough competition and there are a lot of challenges for us to tackle.
Candidates are expected to have following qualifications:
•      Love to design and write good code
•      Have great technical passion,   strong problem-solving skills, drive for results, and ability to work independently
•      Have experienced full product life cycle; managed project development and schedule to a successful shipping
•      Good   communication and collaboration skills
•      Fluent in one of the major programming languages: C, C++, C#, or Java
•      Experience in one of the following areas :   Hadoop, MapReduce, operating system kernels, distributed systems, storage systems, and compiler and development environment
•      Minimum of 3 to 5 years of software development experiences. Bachelor degree in computer science or a related field is required.   Master or Ph.D. is preferred.
Microsoft is an equal opportunity employer and supports workforce diversity.
如果你想试试这个职位,请跟我联系,我是微软的员工,可以做内部推荐。发你的中英文简历到我的邮箱:Nicholas.lu.mail(at)gmail.com
微软职位内部推荐-SW Engineer II for Cloud Service的更多相关文章
- 微软职位内部推荐-SW Engineer II for Cloud Servi
微软近期Open的职位: Do you have a passion for embedded devices and services?   Does the following m ...
- 微软职位内部推荐-SW Engineer II for Azure Network
微软近期Open的职位: Software Engineer II The world is moving to cloud computing. Microsoft is betting Windo ...
- 微软职位内部推荐-SW Engineer II for Skype
微软近期Open的职位: We are the Skype Beijing team. Skype division drives the communications strategy for Mi ...
- 微软职位内部推荐-SW Engineer II for Embedded System
微软近期Open的职位: Do you have a passion for embedded devices and services?   Does the following m ...
- 微软职位内部推荐-SW Engineer II for WinCE
微软近期Open的职位: Do you have a passion for embedded devices and services?   Does the following m ...
- 微软职位内部推荐-SW Engineer II for Enterprise Platform
微软近期Open的职位: Job posting title: SDE II Location: China, Beijing Group Overview Discovery & Colla ...
- 微软职位内部推荐-SW Engineer II for Windows System
微软近期Open的职位: Microsoft's Operating Systems Group delivers the operating system and core user experie ...
- 微软职位内部推荐-Software Engineer II
微软近期Open的职位: Job Description Group: Search Technology Center Asia (STCA)/Search Ads Title: SDEII-Sen ...
- 微软职位内部推荐-ATG Engineer II
微软近期Open的职位: ATG Engineer - GeneralistReady to work on some of the most advanced hardware on the pla ...
随机推荐
- iOS 使用GCD实现倒计时效果
在APP开发过程中,经常有需要实现倒计时效果, 比如语音验证码倒计时...代码如下: __block int timeout = 100; dispatch_queue_t queue = dispa ...
- 设计模式 之 策略(Strategy)模式
最近看了<head first 设计模式>一书,便总结了里面的一些内容,今天就简单介绍一下策略模式. 策略模式:定义了算法族,分别封装起来,让他们能够相互替换,此模式让算法的变化独立于使用 ...
- Github入门(一)
之前早就听说过Git的大名,但由于合作项目时的团体都非常小,所以一直没有开始系统的学习和使用(其实就是懒!),最近终于有动力开始进行入门的学习. 首先介绍一下自学用书:https://git-scm. ...
- java多线程与单例模式(Singleton)不得不说的故事
转发自:http://blog.csdn.net/ligang7560/article/details/50890282 单例模式的多种实现方式 我们都知道单例模式有几种常用的写法: - 饿汉模式 - ...
- MySQL锁机制总结(二)
前言: Mysql是一个支持插件式存储引擎的数据库系统,本文讨论的锁机制也主要包含两部分SERVER层的锁和存储引擎的锁,存储引擎是指innodb,其它存储引暂不讨论. 1. 数据库中锁相关的基本概念 ...
- phpStydy配置memcache扩展
一.下载并安装memcached服务器端软件 1.下载memcached软件 32位下载地址: memcached-win32-1.4.4-14.zip(直接下载),memcached-win3 ...
- jqGrid 学习笔记--数据异步加载方法(转)
var commonQuery = '../importantInfoReport/pageQueryImportantInfoReport.action?type=0'; jQuery(" ...
- gulp系列:简单实践
coffescript测试源码 gulp = require('gulp') #删除 1.清空目录 常用插件 gulp-clean .del (nodejs模块) del = require('d ...
- Tomcat 目录详解
一.文字版本: bin: 该目录下存放的是二进制可执行文件,如果是安装版,那么这个目录下会有两个exe文件:tomcat6.exe.tomcat6w.exe,前者是在控制台下启动Tomcat,后者是 ...
- sizeof和strlen()区别
sizeof关键字和strlen()标准函数都可以用来测试字符串的长度,但是两者有很大的不同 sizeof只能在本函数内, 使用""和不指定长度的字符数组中才能测出字符串的真实长度 ...