Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Problem in StaticIrMetaFetcher #4309

Open
zhanglei1949 opened this issue Nov 4, 2024 · 3 comments
Open

[BUG] Problem in StaticIrMetaFetcher #4309

zhanglei1949 opened this issue Nov 4, 2024 · 3 comments
Assignees

Comments

@zhanglei1949
Copy link
Collaborator

[2024-11-04 16:41:31,564][INFO][main][com.alibaba.graphscope.common.ir.meta.fetcher.StaticIrMetaFetcher:41] read meta: com.alibaba.graphscope.common.ir.meta.IrMeta@76b0ae1b
[2024-11-04 16:41:31,577][WARN][main][com.alibaba.graphscope.common.ir.meta.fetcher.StaticIrMetaFetcher:55] failed to read graph statistics, error is: java.lang.RuntimeException: java.lang.NullPointerException
@zhanglei1949
Copy link
Collaborator Author

modern_graph_statistics.json

{
    "total_vertex_count": 6,
    "total_edge_count": 6,
    "vertex_type_statistics": [
        {
            "type_id": 0,
            "type_name": "person",
            "count": 4
        },
        {
            "type_id": 1,
            "type_name": "software",
            "count": 2
        }
    ],
    "edge_type_statistics": [
        {
            "type_id": 0,
            "type_name": "knows",
            "vertex_type_pair_statistics": [
                {
                    "source_vertex": "person",
                    "destination_vertex": "person",
                    "count": 2
                }
            ]
        },
        {
            "type_id": 1,
            "type_name": "created",
            "vertex_type_pair_statistics": [
                {
                    "source_vertex": "person",
                    "destination_vertex": "sofware",
                    "count": 4
                }
            ]
        }
    ]
}

@zhanglei1949
Copy link
Collaborator Author

interactive_config_test.yaml

log_level: INFO
verbose_level: 10
default_graph: modern_graph
compute_engine:
  type: hiactor
  workers:
    - localhost:10000
  thread_num_per_worker: 1
  store:
    type: cpp-mcsr
  metadata_store:
    type: file # file/sqlite/etcd
compiler:
  planner:
    is_on: true
    opt: RBO
    rules:
      - FilterIntoJoinRule
      - FilterMatchRule
      - NotMatchToAntiJoinRule
  meta:
    reader:
      schema:
        uri: /workspaces/GraphScope/flex/interactive/examples/modern_graph/graph.yaml
        interval: 1000 # ms
      statistics:
        uri: /tmp/modern_graph_statistics.json
        interval: 86400000 # ms
  endpoint:
    default_listen_address: localhost
    bolt_connector:
      disabled: false
      port: 7687
    gremlin_connector:
      disabled: false
      port: 8182
  query_timeout: 40000
  gremlin_script_language_name: antlr_gremlin_calcite
http_service:
  default_listen_address: localhost
  admin_port: 7777
  query_port: 10000

Copy link
Contributor

/cc @shirly121, this issus/pr has had no activity for for a long time, could you folks help to review the status ?
To suppress further notifications,

  • for issues,
    • if it is waiting for further response from the reporter/author, please help to add the label requires-further-info,
    • if you have already started working on it, please add the label work-in-progress to the issue,
    • if this issue requires further designing discussion and not in current plan, or won't be fixed, please add the label requires-further-discussion or wontfix to the issue,
  • for pull requests,
    • if you are still working on it and it is not ready for reviewing, please convert this pull request as draft PR,
    • if you have decided to hold this development on, please add the requires-further-discussion label to the pull request.
      Thanks!

@github-actions github-actions bot removed the stale label Dec 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants