mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-01-26 15:36:33 -06:00
remove previous "nb" module, which will be replaced by the nb5 module soon
This commit is contained in:
parent
6e93468632
commit
a1cd44cb1c
21
.github/workflows/build.yml
vendored
21
.github/workflows/build.yml
vendored
@ -68,9 +68,6 @@ jobs:
|
||||
with:
|
||||
name: exported-docs
|
||||
|
||||
- name: unzip docs
|
||||
run: unzip exported_docs.zip
|
||||
|
||||
- run: ls -la
|
||||
|
||||
- name: clone nosqlbench-build-docs
|
||||
@ -85,18 +82,26 @@ jobs:
|
||||
git remote set-url origin https://${{secrets.NBDROID_NAME}}:${{secrets.NBDROID_TOKEN}}@github.com/nosqlbench/nosqlbench-build-docs.git
|
||||
git remote -v
|
||||
|
||||
- name: import zipfile
|
||||
run: |
|
||||
mv exported-docs.zip nosqlbench-build-docs/
|
||||
|
||||
- name: set CNAME
|
||||
run: |
|
||||
echo "previewdocs.nosqlbench.io" > nosqlbench-build-docs/site/static/CNAME
|
||||
|
||||
- name: commit changes
|
||||
run: |
|
||||
cd nosqlbench-build-docs
|
||||
git add -A
|
||||
|
||||
- name: push changes
|
||||
env:
|
||||
NBDROID_NAME: ${{ secrets.NBDROID_NAME }}
|
||||
NBDROID_TOKEN: ${{ secrets.NBDROID_TOKEN }}
|
||||
run: |
|
||||
set -x
|
||||
find . -ls
|
||||
rsync -av --delete -I --exclude '_index.md' drivers/ nosqlbench-build-docs/site/content/docs/drivers
|
||||
rsync -av --delete -I --exclude '_index.md' bindings/ nosqlbench-build-docs/site/content/docs/bindings
|
||||
echo "previewdocs.nosqlbench.io" > nosqlbench-build-docs/site/static/CNAME
|
||||
cd nosqlbench-build-docs
|
||||
git add -A
|
||||
CHANGES=$(git status --porcelain 2>/dev/null| wc -l)
|
||||
echo "found $CHANGES to push for doc updates"
|
||||
if (( $CHANGES > 0 ))
|
||||
|
@ -9,6 +9,12 @@
|
||||
* Deprecated old drivers (conflicts, etc)
|
||||
- version conflicts (removing cql drivers 1.9.* 3.*)
|
||||
|
||||
# Performance
|
||||
* dryrun capability
|
||||
* slightly improved rate limiter performance
|
||||
* improved concurrency tracking for activities
|
||||
* and a bug fix for threads=1 and uncaught errors
|
||||
|
||||
## New Topic
|
||||
* Advanced linearization features
|
||||
* variable capture in results
|
||||
@ -238,3 +244,31 @@ review:
|
||||
- 394580d66c107127cc68f88cdc64a59e9c481d43
|
||||
- 0330c18a7ba0904b3b3420b94416b04ee73dd7fb
|
||||
- 11dd8f62daf3d1603b75cdd85fbb872dbfaac111
|
||||
|
||||
* For developers
|
||||
* New APIs
|
||||
* DriverAdapter
|
||||
* SpaceCache
|
||||
* ParsedOp
|
||||
* OpMapper
|
||||
* OpDispenser
|
||||
|
||||
* Removal of Phases loop
|
||||
* Some support for console colors
|
||||
* Logging subsystem improvements
|
||||
|
||||
* Discovery Options
|
||||
|
||||
* Project Improvements
|
||||
* Testing and Documentation Methods
|
||||
* Literate test examples as documentation
|
||||
* Integrated test logs are artifacts
|
||||
* Auto-generated reference docs are not auto-imported
|
||||
* Major releases are gated by static analysis audits
|
||||
* We're adding code coverage
|
||||
* We've added more developers to the project
|
||||
* Testing Improvements - stability and low-core build systems (gh actions)
|
||||
|
||||
* config
|
||||
* options can be mutually exclusive, like the thread-local rate and the per-activity rate
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user