Coder Social home page Coder Social logo

Comments (16)

welcome avatar welcome commented on July 27, 2024

Thanks for opening this issue. A contributor should be by to give feedback soon. In the meantime, please check out the contributing guidelines and explore other ways you can get involved.

from cortx-motr.

stale avatar stale commented on July 27, 2024

This issue/pull request has been marked as needs attention as it has been left pending without new activity for 4 days. Tagging @huanghua78 @mukundkanekar for appropriate assignment. Sorry for the delay & Thank you for contributing to CORTX. We will get back to you as soon as possible.

from cortx-motr.

madhavemuri avatar madhavemuri commented on July 27, 2024

@imvenkip : Can you check this PR and verify it ?

from cortx-motr.

imvenkip avatar imvenkip commented on July 27, 2024

@imvenkip : Can you check this PR and verify it ?
Sure @madhavemuri . Will check it.

from cortx-motr.

imvenkip avatar imvenkip commented on July 27, 2024

@somnathbghule Could you add exactly used m0crate commands?

from cortx-motr.

somnathbghule avatar somnathbghule commented on July 27, 2024

@somnathbghule``` Could you add exactly used m0crate commands?

I used following command to run m0crate kv test.
cmd#
m0crate -S <kv_test .yaml file>

For example:
motr/m0crate/tests/test6.yaml template can be used in m0crate kv test run.
Note: you would require to update few fields in .yaml file like MOTR_LOCAL_ADDR, MOTR_HA_ADDR, PROF,  PROCESS_FID etc

from cortx-motr.

imvenkip avatar imvenkip commented on July 27, 2024

@somnathbghule``` Could you add exactly used m0crate commands?

I used following command to run m0crate kv test.
cmd#
m0crate -S <kv_test .yaml file>

For example:
motr/m0crate/tests/test6.yaml template can be used in m0crate kv test run.
Note: you would require to update few fields in .yaml file like MOTR_LOCAL_ADDR, MOTR_HA_ADDR, PROF,  PROCESS_FID etc

@somnathbghule Could you share contents of kv_test .yaml file?

from cortx-motr.

stale avatar stale commented on July 27, 2024

This issue/pull request has been marked as needs attention as it has been left pending without new activity for 4 days. Tagging @huanghua78 @mukundkanekar for appropriate assignment. Sorry for the delay & Thank you for contributing to CORTX. We will get back to you as soon as possible.

from cortx-motr.

nkommuri avatar nkommuri commented on July 27, 2024

@imvenkip @truptiatseagate Any improvements happened to m0crate as part of this ticket?

from cortx-motr.

imvenkip avatar imvenkip commented on July 27, 2024

@nkommuri Already fix is available in main line.
Commit id: 7a734e7
Merged PR: #461

from cortx-motr.

stale avatar stale commented on July 27, 2024

This issue/pull request has been marked as needs attention as it has been left pending without new activity for 4 days. Tagging @nkommuri @mehjoshi @huanghua78 for appropriate assignment. Sorry for the delay & Thank you for contributing to CORTX. We will get back to you as soon as possible.

from cortx-motr.

stale avatar stale commented on July 27, 2024

This issue/pull request has been marked as needs attention as it has been left pending without new activity for 4 days. Tagging @nkommuri @mehjoshi @huanghua78 for appropriate assignment. Sorry for the delay & Thank you for contributing to CORTX. We will get back to you as soon as possible.

from cortx-motr.

cortx-admin avatar cortx-admin commented on July 27, 2024

Zoheb Khan commented in Jira Server:

{noformat}
[root@cortx-data-headless-svc-ssc-vm-rhev4-1739 tmp]# m0crate -S m0crate_sample.yaml
info: starting workload 0
info: workload type index/3
info: random seed: 0
info: number of threads: 1
info: dix: End of operations.
result: total_s, 156.043289, avg_time_per_op_ns, 876352816.0, key_size_bytes, 16, value_size_bytes, -1, ops, 32
result: PUT, total_time_s, 75.440199, avg_time_per_op_ns, 357506212.0, ops, 32
result: GET, total_time_s, 0.000000, avg_time_per_op_ns, 0.0, ops, 0
result: NEXT, total_time_s, 0.000000, avg_time_per_op_ns, 0.0, ops, 0
result: DEL, total_time_s, 0.000000, avg_time_per_op_ns, 0.0, ops, 0Total: time=[156:043290138] ([4:876352816] per op) ops=32
PUT: [75:440198800] ([2:357506212] per op) ops=32
info: done workload 0
info: ---------------------------------------
{noformat}

from cortx-motr.

cortx-admin avatar cortx-admin commented on July 27, 2024

Zoheb Khan commented in Jira Server:

This is observed that when VALUE_SIZE is given as random, the value size is shown as -1 in output which is wrong or invalid since size(in bytes) can't be a negative number.

Workload file used:

 
{noformat}
CrateConfig_Sections:

  • MOTR_CONFIG
  • WORKLOAD_SPECMOTR_CONFIG:
    MOTR_LOCAL_ADDR: inet:tcp:cortx-data-headless-svc-ssc-vm-rhev4-1739@5001
    MOTR_HA_ADDR: inet:tcp:cortx-data-headless-svc-ssc-vm-rhev4-1739@2001
    PROF: 0x7000000000000001:0xde
    PROCESS_FID: 0x7200000000000001:0x8d
    LAYOUT_ID: 1 # Defines the UNIT_SIZE (9: 1MB)
    IS_OOSTORE: 1 # Is oostore-mode?
    IS_READ_VERIFY: 0 # Enable read-verify?
    TM_RECV_QUEUE_MIN_LEN: 16 # Minimum length of the receive queue
    M0_MAX_RPC_MSG_SIZE: 262144 # Maximum rpc message size
    IDX_SERVICE_ID: 1WORKLOAD_SPEC: # Workload specification section
    WORKLOAD: # First Workload
    WORKLOAD_TYPE: 0 # Index(0), IO(1)
    WORKLOAD_SEED: tstamp # SEED to the random number generator
    NUM_KVP: 2 # int
    NXRECORDS: 2 # int or default
    OP_COUNT: 64 # int [units] or unlimited, total operations count.
    EXEC_TIME: unlimited # int (seconds) or unlimited
    WARMUP_PUT_CNT: 0 # int (ops) or all
    WARMUP_DEL_RATIO: 0 # int (ops / ratio)
    KEY_PREFIX: random # int or random
    KEY_ORDER: ordered # ordered or random
    KEY_SIZE: random # int or random
    VALUE_SIZE: random # int or random
    MAX_KEY_SIZE: 16384 # int
    MAX_VALUE_SIZE: 32768 # int
    INDEX_FID: <7800000000000001:3> # fid
    PUT: 60 # int (in percentage)
    DEL: 10 # int (in percentage)
    GET: 20 # int (in percentage)
    NEXT: 10 # int (in percentage)
    LOG_LEVEL: 2 # err(0), warn(1), info(2), trace(3), debug(4)
    [root@cortx-data-headless-svc-ssc-vm-rhev4-1739 tmp]#
    [zoheb] 0:root@ssc-vm-rhev4-1739:~* {noformat}
    Result: {color:#de350b}Look for  "value_size_bytes, -1" in the below section{color}

 
{noformat}
[root@cortx-data-headless-svc-ssc-vm-rhev4-1739 tmp]# m0crate -S m0crate_sample_new.yaml
info: starting workload 0
info: workload type index/3
info: random seed: 0
info: number of threads: 1
info: dix: End of operations.
result: total_s, 4.577239, avg_time_per_op_ns, 73826440.0, key_size_bytes, 1809, value_size_bytes, -1, ops, 62
result: PUT, total_time_s, 2.848022, avg_time_per_op_ns, 74947955.0, ops, 38
result: GET, total_time_s, 0.773699, avg_time_per_op_ns, 64474937.0, ops, 12
result: NEXT, total_time_s, 0.600257, avg_time_per_op_ns, 100042859.0, ops, 6
result: DEL, total_time_s, 0.258094, avg_time_per_op_ns, 43015598.0, ops, 6Total: time=[4:577239329] ([0:073826440] per op) ops=62
PUT: [2:848022296] ([0:074947955] per op) ops=38
GET: [0:773699252] ([0:064474937] per op) ops=12
NEXT: [0:600257159] ([0:100042859] per op) ops=6
DEL: [0:258093589] ([0:043015598] per op) ops=6
info: done workload 0
info: ---------------------------------------
{noformat}
This needs to be fixed.

from cortx-motr.

stale avatar stale commented on July 27, 2024

This issue/pull request has been marked as needs attention as it has been left pending without new activity for 4 days. Tagging @nkommuri @mehjoshi @huanghua78 for appropriate assignment. Sorry for the delay & Thank you for contributing to CORTX. We will get back to you as soon as possible.

from cortx-motr.

cortx-admin avatar cortx-admin commented on July 27, 2024

Chandradhar Raval commented in Jira Server:

Marking this issue Closed as the same is not targeted for alpha release. If required the same can be reopened or tracked via story ticket in future

from cortx-motr.

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.