Skip to content

Commit

Permalink
Merge branch 'createdataset'
Browse files Browse the repository at this point in the history
  • Loading branch information
randersenYB committed Jul 1, 2024
2 parents 2a759e0 + 8691939 commit 4dbe4a4
Show file tree
Hide file tree
Showing 8 changed files with 1,226 additions and 445 deletions.
53 changes: 49 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"--timeout", "7200"],
"console": "integratedTerminal"
},
{
{
"name": "Python Debugger: hdf_import",
"type": "debugpy",
"request": "launch",
Expand All @@ -74,6 +74,21 @@
"--loglevel", "DEBUG"
],
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_import (prompt DS)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_import.py",
"cwd": "${workspaceFolder}/aerospike",
"args": [
"--hdf", "${input:enterDataset}",
"--concurrency", "5000",
"--idxdrop",
"--logfile", "./hdfimport.log",
"--loglevel", "DEBUG"
],
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_import LB",
Expand Down Expand Up @@ -132,13 +147,13 @@
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_query (check)",
"name": "Python Debugger: hdf_query (check prompt)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_query.py",
"cwd": "${workspaceFolder}/aerospike",
"args": [
"--dataset", "random-xs-20-angular",
"--hdf", "${input:enterDataset}",
"--logfile", "./hdfquery.log",
"--check",
"-r", "10"
Expand Down Expand Up @@ -174,5 +189,35 @@
],
"console": "integratedTerminal"
},
]
{
"name": "Python Debugger: hdf_create_dataset (prompt)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_create_dataset.py",
"cwd": "${workspaceFolder}/aerospike",
"args": [
"--hosts", "localhost:3000",
"--hdf", "${input:enterHDFFile}",
"--logfile", "./hdfcreatedataset.log",
"--indexname", "HDF-data_Idx",

],
"justMyCode": false,
"console": "integratedTerminal"
},
],
"inputs": [
{
"id": "enterDataset",
"type": "promptString",
"description": "Enter Dataset",
"default": "random-xs-20-angular"
},
{
"id": "enterHDFFile",
"type": "promptString",
"description": "Enter HDF Path",
"default": "test"
}
]
}
Loading

0 comments on commit 4dbe4a4

Please sign in to comment.