8000 Issues/bugs observed when running real applications at large scales · Issue #812 · LLNL/UnifyFS · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Issues/bugs observed when running real applications at large scales #812
Open
@wangvsa

Description

@wangvsa

Issues/bugs I noticed while running large-scale real applications on Frontier.
I use this for bookkeeping purpose. I will create a PR to fix them in the future.
The issues reported here occur only at large scales, e.g., 628-node FLASH-X runs.

System information

The issues are not system dependent.

Describe the problem you're observing

Most of the issues in the end will lead to Mercury TIMEOUT errors. Then the I/O (e.g., HDF5) will fail.

1:

This is inside the unifyfs_invoke_filesize_rpc() function. So the rpc id should be filesize_id not metaget_id.

hg_id_t req_hgid = unifyfsd_rpc_context->rpcs.metaget_id;

The bug causes that filesize rpc calls are never handled, all waiting forever.
We need to carefully examine if we have similar bugs like this. Best to have unit tests to cover all RPC routines.

2:

During servers initialization process, server rank 0 acts as coordinator and performs a tree-based broadcast.
The hard-coded 5 secs timeout may not be enough for a large number of servers. I have to increase it a little to avoid the timeout error for 628-node Flash runs.

timeout.tv_sec += 5; /* 5 sec */

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0