mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -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:
|
with:
|
||||||
name: exported-docs
|
name: exported-docs
|
||||||
|
|
||||||
- name: unzip docs
|
|
||||||
run: unzip exported_docs.zip
|
|
||||||
|
|
||||||
- run: ls -la
|
- run: ls -la
|
||||||
|
|
||||||
- name: clone nosqlbench-build-docs
|
- 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 set-url origin https://${{secrets.NBDROID_NAME}}:${{secrets.NBDROID_TOKEN}}@github.com/nosqlbench/nosqlbench-build-docs.git
|
||||||
git remote -v
|
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
|
- name: push changes
|
||||||
env:
|
env:
|
||||||
NBDROID_NAME: ${{ secrets.NBDROID_NAME }}
|
NBDROID_NAME: ${{ secrets.NBDROID_NAME }}
|
||||||
NBDROID_TOKEN: ${{ secrets.NBDROID_TOKEN }}
|
NBDROID_TOKEN: ${{ secrets.NBDROID_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
set -x
|
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
|
cd nosqlbench-build-docs
|
||||||
git add -A
|
|
||||||
CHANGES=$(git status --porcelain 2>/dev/null| wc -l)
|
CHANGES=$(git status --porcelain 2>/dev/null| wc -l)
|
||||||
echo "found $CHANGES to push for doc updates"
|
echo "found $CHANGES to push for doc updates"
|
||||||
if (( $CHANGES > 0 ))
|
if (( $CHANGES > 0 ))
|
||||||
|
@ -9,6 +9,12 @@
|
|||||||
* Deprecated old drivers (conflicts, etc)
|
* Deprecated old drivers (conflicts, etc)
|
||||||
- version conflicts (removing cql drivers 1.9.* 3.*)
|
- 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
|
## New Topic
|
||||||
* Advanced linearization features
|
* Advanced linearization features
|
||||||
* variable capture in results
|
* variable capture in results
|
||||||
@ -238,3 +244,31 @@ review:
|
|||||||
- 394580d66c107127cc68f88cdc64a59e9c481d43
|
- 394580d66c107127cc68f88cdc64a59e9c481d43
|
||||||
- 0330c18a7ba0904b3b3420b94416b04ee73dd7fb
|
- 0330c18a7ba0904b3b3420b94416b04ee73dd7fb
|
||||||
- 11dd8f62daf3d1603b75cdd85fbb872dbfaac111
|
- 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