Conversation
3c471ae to
44b0ed7
Compare
1. Enhance argument parsing and logging, add UTF-8 character removal, and update dependency handling 2. Tested Lustre configurations 3. Improved validation case to handle all cases 4. reduced logging to avoid blowing up log files
1. Generalized scheduler implementation to be updated by any user. 2. Specialized implementation for prolog and epilog script for slurm and flux and general.
…xisting probes from JSON
1. Build instructions 2. Required dependencies 3. Deployment options
44b0ed7 to
f2f4d17
Compare
f2f4d17 to
f6a8428
Compare
| get_filename_component(json-c_INCLUDE_DIR "${json-c_DIR}/../../../include" ABSOLUTE) | ||
| get_filename_component(json-c_LIBRARY_DIR "${json-c_DIR}/../../" ABSOLUTE) | ||
| include_directories(json-c::json-c) | ||
| include_directories(${json-c_INCLUDE_DIR}) |
There was a problem hiding this comment.
Investigate JSON-C package config.
There was a problem hiding this comment.
I tried across different version on different os version, this is very unreliable. I will keep it like this for now.
|
|
||
| std::cout << "\n"; | ||
| std::cout << "╔════════════════════════════════════════════════════════════════════════════╗\n"; | ||
| std::cout << "║ INVALID PROBES BY CATEGORY ║\n"; |
There was a problem hiding this comment.
| std::cout << "║ INVALID PROBES BY CATEGORY ║\n"; | |
| std::cout << "║ INVALID PROBES BY CATEGORY ║\n"; |
| match-leak-kinds: definite,indirect | ||
| ... | ||
| fun:pthread_* | ||
| } No newline at end of file |
| if (DATACRUMBS_SCHEDULER_JOBID_ENV_VAR STREQUAL "NONE") | ||
| if(DATACRUMBS_SCHEDULER_TYPE STREQUAL "SLURM") | ||
| set(DATACRUMBS_SCHEDULER_JOBID_ENV_VAR "SLURM_JOB_ID") | ||
| elseif(DATACRUMBS_SCHEDULER_TYPE STREQUAL "OPENMPI") |
There was a problem hiding this comment.
Consider DATACRUMBS_LAUNCHER_TYPE.
| fi | ||
|
|
||
| info "salloc ${DATACRUMBS_ARGS[*]}" | ||
| exec salloc "${DATACRUMBS_ARGS[@]}" |
| readonly DATACRUMBS_USER | ||
| fi | ||
|
|
||
| if [[ "${DATACRUMBS_ENV_LOADED:-0}" == "0" ]]; then |
There was a problem hiding this comment.
Need to keep readonly here.
| if [[ "${DATACRUMBS_ENV_LOADED:-0}" == "0" ]]; then | |
| readonly DATACRUMBS_IS_ROOT | |
| readonly DATACRUMBS_USER | |
| fi | |
| if [[ "${DATACRUMBS_ENV_LOADED:-0}" == "0" ]]; then |
There was a problem hiding this comment.
Looks like readonly is still missing in the script.
There was a problem hiding this comment.
Correction: I now see readonly is present in the final changes. GitHub wasn't rendering all the changes due to the large changeset.
| file(MAKE_DIRECTORY ${CMAKE_DATA_OUTPUT_DIRECTORY}) | ||
|
|
||
| if(_DATACRUMBS_DATA_FILES) | ||
| install(FILES ${_DATACRUMBS_DATA_FILES} |
There was a problem hiding this comment.
Completed this commit on 3/5/2026
milroy
left a comment
There was a problem hiding this comment.
Looks good! Approving this PR.
af202ed to
f6a8428
Compare
- Formatting on probe_validator.cpp - Change DATACRUMBS_SCHEDULER_TYPE -> DATACRUMBS_LAUNCHER_TYPE - Make DATACRUMBS_IS_ROOT and DATACRUMBS_USER readonly
af202ed to
e8211c2
Compare
milroy
left a comment
There was a problem hiding this comment.
After confirming the changes, I can re-approve the PR. Sorry for the delay.
| readonly DATACRUMBS_USER | ||
| fi | ||
|
|
||
| if [[ "${DATACRUMBS_ENV_LOADED:-0}" == "0" ]]; then |
There was a problem hiding this comment.
Correction: I now see readonly is present in the final changes. GitHub wasn't rendering all the changes due to the large changeset.
No description provided.