Skip to content

KVS new Design#172

Merged
vinodreddy-g merged 1 commit intoeclipse-score:mainfrom
Ahmed-Elsaka-JC:afe_new_uml_model
Feb 24, 2026
Merged

KVS new Design#172
vinodreddy-g merged 1 commit intoeclipse-score:mainfrom
Ahmed-Elsaka-JC:afe_new_uml_model

Conversation

@Ahmed-Elsaka-JC
Copy link
Contributor

@Ahmed-Elsaka-JC Ahmed-Elsaka-JC commented Nov 21, 2025

New Design for KVS

@github-actions
Copy link

github-actions bot commented Nov 21, 2025

License Check Results

🚀 The license check job ran with the Bazel command:

bazel run //:license-check

Status: ⚠️ Needs Review

Click to expand output
[License Check Output]
Extracting Bazel installation...
Starting local Bazel server (8.3.0) and connecting to it...
INFO: Invocation ID: a96879b4-9b8b-4ee3-9d47-ef8239ad6cfa
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
DEBUG: Rule 'rust_qnx8_toolchain+' indicated that a canonical reproducible form can be obtained by modifying arguments integrity = "sha256-oEubHgeZDdT0svMmBKJx7c3/2TdSI/vfwRUyDn+TPGA="
DEBUG: Repository rust_qnx8_toolchain+ instantiated at:
  <builtin>: in <toplevel>
Repository rule http_archive defined at:
  /home/runner/.bazel/external/bazel_tools/tools/build_defs/repo/http.bzl:394:31: in <toplevel>
Computing main repo mapping: 
WARNING: For repository 'score_process', the root module requires module version score_process@1.3.2, but got score_process@1.4.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Loading: 
Loading: 3 packages loaded
Loading: 3 packages loaded
    currently loading: 
Analyzing: target //:license-check (4 packages loaded)
Analyzing: target //:license-check (4 packages loaded, 0 targets configured)
Analyzing: target //:license-check (4 packages loaded, 0 targets configured)

Analyzing: target //:license-check (75 packages loaded, 10 targets configured)

Analyzing: target //:license-check (89 packages loaded, 10 targets configured)

Analyzing: target //:license-check (136 packages loaded, 504 targets configured)

Analyzing: target //:license-check (147 packages loaded, 2288 targets configured)

Analyzing: target //:license-check (156 packages loaded, 2727 targets configured)

Analyzing: target //:license-check (156 packages loaded, 2727 targets configured)

Analyzing: target //:license-check (156 packages loaded, 2727 targets configured)

Analyzing: target //:license-check (156 packages loaded, 2727 targets configured)

Analyzing: target //:license-check (159 packages loaded, 4734 targets configured)

Analyzing: target //:license-check (161 packages loaded, 8767 targets configured)

INFO: Analyzed target //:license-check (162 packages loaded, 9013 targets configured).
[8 / 14] Creating runfiles tree bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/score_tooling+/dash/tool/formatters/dash_format_converter.runfiles [for tool]; 0s local ... (2 actions, 1 running)
INFO: From Generating Dash formatted dependency file ...:
INFO: Successfully converted 62 packages from Cargo.lock to bazel-out/k8-fastbuild/bin/formatted.txt
[11 / 14] JavaToolchainCompileClasses external/rules_java+/toolchains/platformclasspath_classes; 0s disk-cache, processwrapper-sandbox
[12 / 14] JavaToolchainCompileBootClasspath external/rules_java+/toolchains/platformclasspath.jar; 0s disk-cache, processwrapper-sandbox
INFO: Found 1 target...
Target //:license.check.license_check up-to-date:
  bazel-bin/license.check.license_check
  bazel-bin/license.check.license_check.jar
INFO: Elapsed time: 32.658s, Critical Path: 2.34s
INFO: 14 processes: 9 internal, 4 processwrapper-sandbox, 1 worker.
INFO: Build completed successfully, 14 total actions
INFO: Running command line: bazel-bin/license.check.license_check ./formatted.txt <args omitted>
usage: org.eclipse.dash.licenses.cli.Main [-batch <int>] [-cd <url>]
       [-confidence <int>] [-ef <url>] [-excludeSources <sources>] [-help] [-lic
       <url>] [-project <shortname>] [-repo <url>] [-review] [-summary <file>]
       [-timeout <seconds>] [-token <token>]

@github-actions
Copy link

The created documentation from the pull request is available at: docu-html

@arkjedrz arkjedrz self-requested a review December 18, 2025 07:47

class IKvsBuilder <<implementation>> {
- instance_id: InstanceId
- need_defaults : bool
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-> -defaults : KvsDefaults

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

?

Copy link
Contributor Author

@Ahmed-Elsaka-JC Ahmed-Elsaka-JC Jan 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Expected values :

  • true : default storage must be exist
  • false : default storage may not be exist
  • Ignores : ignore default values even if we have default values storage.

- new ticket should be created to make c++ support this as rust.

class IKvsBuilder <<implementation>> {
- instance_id: InstanceId
- need_defaults : bool
- need_kvs : bool
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-> -kvs_load : KvsLoad

Copy link
Contributor Author

@Ahmed-Elsaka-JC Ahmed-Elsaka-JC Jan 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

kvs_load = OpenNeedKvs :
OpenNeedKvs has two values now :
new value will be added "IGNORE"

new ticket should be created to make c++ support this as rust.

+ set_value(Key:string, value:KvsValue): ResultBlank
+ remove_key(Key:string) : ResultBlank
+ flush() : ResultBlank
+ snapshot_count: Result<size_t>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a function.

Copy link
Contributor Author

@Ahmed-Elsaka-JC Ahmed-Elsaka-JC Jan 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@arkjedrz what is meant by this if a function ?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like this file is not included in any index file

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PUML file with class diagram shall be added into the doc-as-code index, so that it gets displayed in the documentation.

@Ahmed-Elsaka-JC Ahmed-Elsaka-JC changed the title Draft KVS new Design Jan 14, 2026
@Ahmed-Elsaka-JC Ahmed-Elsaka-JC marked this pull request as ready for review January 22, 2026 13:40
Copy link
Contributor

@arkjedrz arkjedrz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I won't discuss this PR anymore until requested changes are fixed. We're running in circles.
Please first review this document internally.

@PiotrKorkus
Copy link
Contributor

PiotrKorkus commented Jan 27, 2026

@Ahmed-Elsaka-JC Could you rebase on top of newest upstream/main?

Docs are building in other PRs and there shouldn't be an error.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

*.puml files itself will never be rendered. You need to reference it in any other .rst file as

.. uml:: class_diagram_cpp.puml


Copy link
Contributor

@PiotrKorkus PiotrKorkus Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Ahmed-Elsaka-JC UML is still not a part of any doc pages

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@PiotrKorkus till now we did not agree to add it to specific document ?
may i ask why do you block merge till it mentioned in doc page ?

Copy link
Contributor

@PiotrKorkus PiotrKorkus Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how do you find me blocking a merge? I just added a comment.

till it mentioned in doc page ?

where?

Copy link
Contributor Author

@Ahmed-Elsaka-JC Ahmed-Elsaka-JC Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Ahmed-Elsaka-JC As you can clearly see @tizava is not me definitely. You even didn't use @tizava to reply to me ;)

@Ahmed-Elsaka-JC Ahmed-Elsaka-JC force-pushed the afe_new_uml_model branch 2 times, most recently from c01888b to c2397f8 Compare February 19, 2026 14:31
@vinodreddy-g
Copy link
Contributor

vinodreddy-g commented Feb 23, 2026

@Ahmed-Elsaka-JC Would you stash commits with same commit message?

@Ahmed-Elsaka-JC
Copy link
Contributor Author

@Ahmed-Elsaka-JC Would you stash commits with same commit message?

i already squashed all commit to one commit .

@vinodreddy-g

@vinodreddy-g vinodreddy-g merged commit 8797bea into eclipse-score:main Feb 24, 2026
17 checks passed
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

Successfully merging this pull request may close these issues.

6 participants