微软近期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. &nbsp

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:

• &nbsp&nbsp&nbsp&nbsp Love to design and write good code

• &nbsp&nbsp&nbsp&nbsp Have great technical passion, &nbsp strong problem-solving skills, drive for results, and ability to work independently

• &nbsp&nbsp&nbsp&nbsp Have experienced full product life cycle; managed project development and schedule to a successful shipping

• &nbsp&nbsp&nbsp&nbsp Good &nbsp communication and collaboration skills

• &nbsp&nbsp&nbsp&nbsp Fluent in one of the major programming languages: C, C++, C#, or Java

• &nbsp&nbsp&nbsp&nbsp Experience in one of the following areas : &nbsp Hadoop, MapReduce, operating system kernels, distributed systems, storage systems, and compiler and development environment

• &nbsp&nbsp&nbsp&nbsp Minimum of 3 to 5 years of software development experiences. Bachelor degree in computer science or a related field is required. &nbsp 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的更多相关文章

  1. 微软职位内部推荐-SW Engineer II for Cloud Servi

    微软近期Open的职位: Do you have a passion for embedded devices and services? &nbsp Does the following m ...

  2. 微软职位内部推荐-SW Engineer II for Azure Network

    微软近期Open的职位: Software Engineer II The world is moving to cloud computing. Microsoft is betting Windo ...

  3. 微软职位内部推荐-SW Engineer II for Skype

    微软近期Open的职位: We are the Skype Beijing team. Skype division drives the communications strategy for Mi ...

  4. 微软职位内部推荐-SW Engineer II for Embedded System

    微软近期Open的职位: Do you have a passion for embedded devices and services? &nbsp Does the following m ...

  5. 微软职位内部推荐-SW Engineer II for WinCE

    微软近期Open的职位: Do you have a passion for embedded devices and services? &nbsp Does the following m ...

  6. 微软职位内部推荐-SW Engineer II for Enterprise Platform

    微软近期Open的职位: Job posting title: SDE II Location: China, Beijing Group Overview Discovery & Colla ...

  7. 微软职位内部推荐-SW Engineer II for Windows System

    微软近期Open的职位: Microsoft's Operating Systems Group delivers the operating system and core user experie ...

  8. 微软职位内部推荐-Software Engineer II

    微软近期Open的职位: Job Description Group: Search Technology Center Asia (STCA)/Search Ads Title: SDEII-Sen ...

  9. 微软职位内部推荐-ATG Engineer II

    微软近期Open的职位: ATG Engineer - GeneralistReady to work on some of the most advanced hardware on the pla ...

随机推荐

  1. Android开机广播

    有些时候我们常常需要某个程序开机运行.在这个时候我们就需要监听系统的开机广播,然后启动我们的程序即可. 不多说 直接上代码: public class BootReceiver extends Bro ...

  2. DOM样式操作

    CSS 到 DOM的抽象 通过操作 CSS 对应的 DOM对象来更新CSS样式 换肤操作 如何获取实际的样式(不仅有行内,更有页面和外联样式表中定义的样式) 样式表分为三类: 外联,页面,行内 内部样 ...

  3. 安卓开发第一步:Android Studio安装配置

    虽然本人是JAVA开发工程师平时主要开发Web App,但因为项目需求需要开发对应的移动端.一时又找不到合适的安卓开发人员,兄弟我只好被项目经理"抓来当壮丁了".俗话说好" ...

  4. JavaScript Patterns 6.6 Mix-ins

    Loop through arguments and copy every property of every object passed to the function. And the resul ...

  5. Tomcat指定特定JDK版本

    我们知道在Linux服务器上,可以安装多个版本的JDK,那么当有多个JDK时,是否可以为Tomcat这类应用程序指定对应的JDK版本呢?答案是可以,指定tomcat使用特定的JDK版本.今天正好碰到这 ...

  6. C#调用SQL Server分页存储过程

    以SQL Server2012提供的offset ..rows fetch next ..rows only为例 e.g. 表名:Tab1 ------------------------------ ...

  7. itextpd f生成 pdf 文件

    一.简介 itextpdf 是一个开源的允许你去创建和操作PDF文档的库.它使的开发者可以提高web和其他应用来动态地生成或操作PDF文档.通过iText 中的Document和PdfWriter类, ...

  8. ubuntu16.04源码编译安装wine1.8.6安装不上引来的错误

    configure: libxcomposite 64-bit development files not found, Xcomposite won't be supported. configur ...

  9. my_strstr()

    const char* my_strstr(const char* S1,const char* S2){ int i=0,flag=0; while('\0'!=*(S1+i)){ if(*(S1+ ...

  10. my_strcmp()

    void my_strcmp(const char* s1,const char* s2){ int i=0; while(*(s1+i)!='\0'||*(s2+i)!='\0'){ if(*(s1 ...