中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MapReduce引擎如何實現

發布時間:2021-06-26 14:09:23 來源:億速云 閱讀:176 作者:Leah 欄目:數據庫

今天就跟大家聊聊有關MapReduce引擎如何實現,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

   MapReduce引擎怎么實現

  使用例子見下,只需要import一個名即可。

  #!/usr/bin/env python

  import mincemeat

  data = ["Humpty Dumpty sat on a wall",

  "Humpty Dumpty had a great fall",

  "All the King's horses and all the King's men",

  "Couldn't put Humpty together again",

  ]

  def mapfn(k, v):

  for w in v.split():

  yield w, 1

  def reducefn(k, vs):

  MapReduce引擎怎么實現

  result = 0

  for v in vs:

  result += v

  return result

  s = mincemeat.Server()

  # The data source can be any dictionary-like object

  s.datasource = dict(enumerate(data))

  s.mapfn = mapfn

  s.reducefn = reducefn

  results = s.run_server(password="changeme")

  print results

  然后將mincemeat.py 和example.py 放在同一個目錄下,執行example.py

  python example.py

  這時程序會掛起一個daemon

  然后另開一終端運行:

  python mincemeat.py -p changeme localhost

  就會看到剛才的daemon打印出了MapReduce結果并退出了。

  {‘a’: 2, ‘on’: 1, ‘great’: 1, ‘Humpty’: 3, ‘again’: 1, ‘wall’: 1, ‘Dumpty’: 2, ‘men’: 1, ‘had’: 1, ‘all’: 1, ‘together’: 1, “King’s”: 2, ‘horses’: 1, ‘All’: 1, “Couldn’t”: 1, ‘fall’: 1, ‘and’: 1, ‘the’: 2, ‘put’: 1, ’sat’: 1}

看完上述內容,你們對MapReduce引擎如何實現有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

烟台市| 佛坪县| 葵青区| 新乡市| 隆安县| 承德市| 水富县| 呼伦贝尔市| 新竹县| 金湖县| 沅陵县| 晋州市| 平湖市| 莱芜市| 垫江县| 屏东市| 沙湾县| 武乡县| 玉田县| 秀山| 元朗区| 香格里拉县| 固阳县| 金湖县| 壶关县| 延川县| 广水市| 正镶白旗| 澄城县| 宜城市| 汉中市| 同江市| 疏附县| 九龙坡区| 苍南县| 海口市| 衡阳市| 维西| 黎川县| 工布江达县| 高淳县|