Git Product home page Git Product logo

Comments (11)

ariesdevil avatar ariesdevil commented on May 27, 2024

@ellenzhu web ui 需要装一下 gevent,稍后会在 setup.py 里修复这个问题,不过没有这个不影响任务执行。

from dpark.

ellenzhu avatar ellenzhu commented on May 27, 2024

装好之后又出现了这个:[INFO] [dpark.context] start listening on Web UI with port: 33920, 啥意思?

from dpark.

ariesdevil avatar ariesdevil commented on May 27, 2024

@qingfeng 字面意思,web ui 启动在了 33920 这个端口上

from dpark.

ellenzhu avatar ellenzhu commented on May 27, 2024

@ariesdevil 但是为啥还是跑不起来呢? 不显示结果

from dpark.

ariesdevil avatar ariesdevil commented on May 27, 2024

@ellenzhu 贴一下具体信息?

from dpark.

ellenzhu avatar ellenzhu commented on May 27, 2024

运行不成功显示:[@ffff /data]# python analyze.py
2018-07-27 16:43:18,857 [INFO] [dpark.context] start listening on Web UI with port: 39013
正常服务器运行显示:[@ffff /data/]# python analyze.py
[(u'021', 1), (u'038', 80), (u'036', 18), (u'007', 1), (1531888385.919384, 1), (u'039', 83), (u'035', 8), (u'037', 10), (u'020', 5)]

from dpark.

ariesdevil avatar ariesdevil commented on May 27, 2024

@ellenzhu 是在 mesos 上跑吗?可以看到任务已经提交到 mesos 了吗?

from dpark.

ellenzhu avatar ellenzhu commented on May 27, 2024

@ariesdevil 不是的 单机上,另一台服务器之前装好的dpark可以正常跑,现在这台也想装上dprak, 跑一下就这样了。

from dpark.

ariesdevil avatar ariesdevil commented on May 27, 2024

@ellenzhu 执行的时候加 -v 参数看一下 log

from dpark.

ellenzhu avatar ellenzhu commented on May 27, 2024

@ariesdevil log:
2018-07-30 10:40:55,457 [INFO] [dpark.context] start listening on Web UI with port: 35591
2018-07-30 10:40:55,483 [DEBUG] [dpark.env] start env in 16675: True {'is_local': True}
2018-07-30 10:40:55,484 [DEBUG] [dpark.tracker] TrackerServer started at tcp://forrest16-71-142:39146
2018-07-30 10:40:55,586 [DEBUG] [dpark.shuffle] shuffle dir: ['/dev/shm/forrest16-71-142-b5791055-a3f4-4a92-840f-5c5c7c4ca6dd', '/tmp/dpark/forrest16-71-142-b5791055-a3f4-4a92-840f-5c5c7c4ca6dd']
2018-07-30 10:40:55,586 [DEBUG] [dpark.shuffle] MapOutputTracker started
2018-07-30 10:40:55,588 [DEBUG] [dpark.broadcast] broadcast started: tcp://forrest16-71-142:35866
2018-07-30 10:40:55,588 [DEBUG] [dpark.env] env started
2018-07-30 10:40:55,589 [DEBUG] [dpark.schedule] new stage: <Stage(1) for <MappedRDD <MappedRDD <ParallelCollection 258>>>>
2018-07-30 10:40:55,589 [DEBUG] [dpark.schedule] new stage: <Stage(2) for <ShuffledRDD <MappedRDD <MappedRDD <ParallelCollection 258>>>>>
2018-07-30 10:40:55,589 [DEBUG] [dpark.schedule] Final stage: <Stage(2) for <ShuffledRDD <MappedRDD <MappedRDD <ParallelCollection 258>>>>>, 2
2018-07-30 10:40:55,589 [DEBUG] [dpark.schedule] Parents of final stage: [<dpark.schedule.Stage instance at 0x2a56290>]
2018-07-30 10:40:55,589 [DEBUG] [dpark.schedule] Missing parents: [<dpark.schedule.Stage instance at 0x2a56290>]
2018-07-30 10:40:55,590 [DEBUG] [dpark.schedule] submit stage <Stage(2) for <ShuffledRDD <MappedRDD <MappedRDD <ParallelCollection 258>>>>>
2018-07-30 10:40:55,590 [DEBUG] [dpark.broadcast] guide start at tcp://forrest16-71-142:35866
2018-07-30 10:40:55,590 [DEBUG] [dpark.schedule] submit stage <Stage(1) for <MappedRDD <MappedRDD <ParallelCollection 258>>>>
2018-07-30 10:40:55,590 [DEBUG] [dpark.schedule] add to pending 2 tasks
2018-07-30 10:40:55,590 [DEBUG] [dpark.schedule] submit tasks [<ShuffleTask(1, 0) of <MappedRDD <MappedRDD <ParallelCollection 258>>>>, <ShuffleTask(1, 1) of <MappedRDD <MappedRDD <ParallelCollection 258>>>>] in LocalScheduler
2018-07-30 10:40:55,592 [DEBUG] [dpark.schedule] Running task <ShuffleTask(1, 0) of <MappedRDD <MappedRDD <ParallelCollection 258>>>>
2018-07-30 10:40:55,593 [DEBUG] [dpark.task] shuffling 0 of <MappedRDD <MappedRDD <ParallelCollection 258>>>
2018-07-30 10:40:55,599 [DEBUG] [dpark.schedule] Running task <ShuffleTask(1, 1) of <MappedRDD <MappedRDD <ParallelCollection 258>>>>
2018-07-30 10:40:55,599 [DEBUG] [dpark.task] shuffling 1 of <MappedRDD <MappedRDD <ParallelCollection 258>>>
2018-07-30 10:40:55,602 [DEBUG] [dpark.schedule] remove from pending <ShuffleTask(1, 0) of <MappedRDD <MappedRDD <ParallelCollection 258>>>> from <Stage(1) for <MappedRDD <MappedRDD <ParallelCollection 258>>>>
2018-07-30 10:40:55,602 [DEBUG] [dpark.schedule] remove from pending <ShuffleTask(1, 1) of <MappedRDD <MappedRDD <ParallelCollection 258>>>> from <Stage(1) for <MappedRDD <MappedRDD <ParallelCollection 258>>>>
2018-07-30 10:40:55,602 [DEBUG] [dpark.schedule] <Stage(1) for <MappedRDD <MappedRDD <ParallelCollection 258>>>> finished; looking for newly runnable stages

from dpark.

ariesdevil avatar ariesdevil commented on May 27, 2024

@ellenzhu 方便贴一下代码吗?

from dpark.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.