99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁職業(yè)發(fā)展大數(shù)據(jù)公司Hortonworks周五IPO:發(fā)行價16美元
大數(shù)據(jù)公司Hortonworks周五IPO:發(fā)行價16美元
2014-12-12
收藏

大數(shù)據(jù)公司Hortonworks周五IPO:發(fā)行價16美元

北京時間12月12日上午消息,從雅虎剝離出來的大數(shù)據(jù)公司Hortonworks證實,該公司將于本周五IPO(首次公開招股)。該公司希望以每股16美元的價格發(fā)行625萬股股票,募集1億美元資金。該公司將在納斯達克市場掛牌交易,股票交易代碼為“HDP”。該股承銷商還有權額外購買93.75萬股股票。

  Hortonworks針對開源平臺Hadoop出售支持和服務。Hadoop由非營利組織Apache軟件基金會管理,目前已經(jīng)孕育了多家公司,包括Cloudera和MapR。不過,Hortonworks卻是這些公司中率先IPO的。

  雅虎前CTO瑞米·斯塔塔(Raymie Stata)表示,Hortonworks的IPO對這一生態(tài)系統(tǒng)中的所有創(chuàng)業(yè)公司都是利好?!斑@證明了多數(shù)人對Hadoop的看法:這已經(jīng)成為一個必備的基礎設施。而開源也已經(jīng)成為IT買家的首選方式?!彼f。

  Hortonworks今年以來實現(xiàn)營收3330萬美元,但虧損8670萬美元。不過該公司的技術已經(jīng)得到了市場驗證。Hadoop也已經(jīng)從雅虎、eBay和Facebook等公司的晦澀工具,變成了就連金融服務等老牌企業(yè)也在使用的大數(shù)據(jù)分析工具。

  Hortonworks聯(lián)合創(chuàng)始人兼架構師阿倫·穆熙(Arun C. Murthy)表示,Hadoop的成功不只是雅虎或Hortonworks的成功,而是整個社區(qū)的成功。

  “我希望我們五年后回顧現(xiàn)在時,會認為這只是個開始?!彼顾f。

數(shù)據(jù)分析咨詢請掃描二維碼

若不方便掃碼,搜微信號:CDAshujufenxi

數(shù)據(jù)分析師考試動態(tài)
數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調用 initGeetest 進行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調,回調的第一個參數(shù)驗證碼對象,之后可以使用它調用相應的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗服務器是否宕機 new_captcha: data.new_captcha, // 用于宕機時表示是新驗證碼的宕機 product: "float", // 產品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計時完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }