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
7bcc7d6bfc
commit
38088659c9
1
nb/.gitignore
vendored
1
nb/.gitignore
vendored
@ -1 +0,0 @@
|
||||
cache/**
|
@ -1,12 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Name=nosqlbench
|
||||
Exec=nb %F
|
||||
Icon=nb
|
||||
Type=Application
|
||||
Categories=Development;Network;Utility;Science;
|
||||
Comment=nosqlbench
|
||||
MimeType=text/yaml;application/yaml;
|
||||
Name[nb]=nb
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
NoDisplay=false
|
Binary file not shown.
Before Width: | Height: | Size: 1.3 KiB |
@ -1,35 +0,0 @@
|
||||
#!/bin/bash
|
||||
#set -x
|
||||
DIR="$(dirname "$(readlink -f "$0")")"
|
||||
if [ "$1" = "--wrapper-help" ]
|
||||
then
|
||||
echo "OPTIONS:"
|
||||
echo " # run the bundled JRE with -version"
|
||||
echo " --java-version"
|
||||
echo " # run the app with JDWP debugging support, with suspend=n"
|
||||
echo " --DN"
|
||||
echo " # run the app with JDWP debugging support, with suspend=y"
|
||||
echo " --DY"
|
||||
echo " # set additional JRE options ..."
|
||||
echo " JAVA_OPTS=... $0 ..."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$1" = "--java-version" ]
|
||||
then
|
||||
shift
|
||||
$DIR/jre/bin/java -version
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ "$1" = "-DN" ]
|
||||
then
|
||||
shift
|
||||
exec $DIR/jre/bin/java -Dnashorn.args="--no-deprecation-warning" ${JAVA_OPTS} -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 -jar $DIR/nb.jar "$@"
|
||||
elif [ "$1" = "-DY" ]
|
||||
then
|
||||
shift
|
||||
exec $DIR/jre/bin/java -Dnashorn.args="--no-deprecation-warning" ${JAVA_OPTS} -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar $DIR/nb.jar "$@"
|
||||
else
|
||||
exec $DIR/jre/bin/java -Dnashorn.args="--no-deprecation-warning" ${JAVA_OPTS} -jar $DIR/nb.jar "$@"
|
||||
fi
|
@ -1,26 +0,0 @@
|
||||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/xsd/assembly-2.0.0.xsd">
|
||||
|
||||
<id>jar-with-dependencies</id>
|
||||
<formats>
|
||||
<format>jar</format>
|
||||
</formats>
|
||||
<includeBaseDirectory>false</includeBaseDirectory>
|
||||
|
||||
<dependencySets>
|
||||
<dependencySet>
|
||||
<outputDirectory>/</outputDirectory>
|
||||
<useProjectArtifact>true</useProjectArtifact>
|
||||
<unpack>true</unpack>
|
||||
<scope>runtime</scope>
|
||||
</dependencySet>
|
||||
</dependencySets>
|
||||
|
||||
<containerDescriptorHandlers>
|
||||
<containerDescriptorHandler>
|
||||
<handlerName>metaInf-services</handlerName>
|
||||
</containerDescriptorHandler>
|
||||
</containerDescriptorHandlers>
|
||||
|
||||
</assembly>
|
@ -1,81 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -x
|
||||
|
||||
APPDIR=target/NB.AppDir
|
||||
mkdir -p ${APPDIR}
|
||||
|
||||
|
||||
BUILD_OPENJ9="false"
|
||||
if [ "$1" = "--with-openj9" ]
|
||||
then
|
||||
BUILD_OPENJ9="true"
|
||||
printf "using openj9 for build\n"
|
||||
shift;
|
||||
fi
|
||||
|
||||
if [ ! -f target/nb.jar ]
|
||||
then
|
||||
printf "target/nb.jar does not exist"
|
||||
exit 2
|
||||
fi
|
||||
|
||||
#if [ -x "target/nb" ]
|
||||
#then
|
||||
# printf "Removing stale target/nb...\n"
|
||||
# rm target/nb
|
||||
#fi
|
||||
|
||||
rsync -av appimage/skel/ "${APPDIR}/"
|
||||
cp target/nb.jar "${APPDIR}/usr/bin/nb.jar"
|
||||
JAVA_VERSION="17"
|
||||
|
||||
mkdir -p "${APPDIR}/usr/bin/jre"
|
||||
|
||||
|
||||
if [ "$JAVA_VERSION" == "17" ]
|
||||
then
|
||||
if [ ! -d "cache/jdk17" ] ; then
|
||||
printf "getting jdk17 once into cache/jdk17\n";
|
||||
mkdir -p cache
|
||||
(cd cache && (
|
||||
wget -c https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.1%2B12/OpenJDK17U-jdk_x64_linux_hotspot_17.0.1_12.tar.gz
|
||||
tar -xf OpenJDK17U-jdk_x64_linux_hotspot_17.0.1_12.tar.gz
|
||||
mv jdk-17.0.1+12 jdk17
|
||||
rm OpenJDK17U-jdk_x64_linux_hotspot_17.0.1_12.tar.gz
|
||||
))
|
||||
fi
|
||||
rsync -av cache/jdk17/ "${APPDIR}/usr/bin/jre/"
|
||||
else
|
||||
printf "Unknown java version indicated in $0"
|
||||
exit 2
|
||||
fi
|
||||
|
||||
if [ ! -f "${APPDIR}/AppRun" ]
|
||||
then
|
||||
( cd ${APPDIR} && (
|
||||
printf "Linking AppRun...\n";
|
||||
ln -s usr/bin/nb AppRun
|
||||
))
|
||||
fi
|
||||
|
||||
printf "getting appimage tool and building image...\n";
|
||||
|
||||
( cd target && (
|
||||
if [ ! -x "appimagetool-x86_64.AppImage" ]
|
||||
then
|
||||
wget -c https://github.com/AppImage/AppImageKit/releases/download/12/appimagetool-x86_64.AppImage
|
||||
chmod +x appimagetool-x86_64.AppImage
|
||||
fi
|
||||
|
||||
ARCH=x86_64 ./appimagetool-x86_64.AppImage NB.AppDir nb
|
||||
# && chmod +x nb
|
||||
)
|
||||
)
|
||||
|
||||
if [ -x "target/nb" ]
|
||||
then
|
||||
printf "nosqlbench AppImage binary was built at target/nb\n";
|
||||
fi
|
||||
|
@ -1,65 +0,0 @@
|
||||
#!/bin/bash
|
||||
# update nuxt
|
||||
set -x
|
||||
set -e
|
||||
|
||||
GUIDEBOOK="target/guidebook"
|
||||
|
||||
if [ ! -f "target/nb.jar" ]
|
||||
then
|
||||
printf "You should not run this unless you have target/nb.jar\n"
|
||||
exit 6
|
||||
fi
|
||||
|
||||
if [ ! -d "target/guidebook" ]
|
||||
then
|
||||
|
||||
# pushd ../docsys/src/main/node/docsys || exit 1
|
||||
# if ! ./update.sh "$@"
|
||||
# then
|
||||
# printf "Unable to update the guidebook static app\n"
|
||||
# exit 2;
|
||||
# fi
|
||||
# popd
|
||||
cp -R ../docsys/src/main/resources/docsys-guidebook/ ${GUIDEBOOK}/
|
||||
else
|
||||
printf "${GUIDEBOOK} exists, not building again until mvn clean\n"
|
||||
fi
|
||||
|
||||
JAVA=java
|
||||
if [ -n "$JAVA_HOME" ]
|
||||
then JAVA=${JAVA_HOME}/bin/java
|
||||
fi
|
||||
|
||||
if [ ! -x "$JAVA" ]
|
||||
then
|
||||
printf "Java was not found in the path and JAVA_HOME is not set\n"
|
||||
exit 5
|
||||
fi
|
||||
|
||||
$JAVA -jar target/nb.jar docserver generate ${GUIDEBOOK}/
|
||||
|
||||
$JAVA -jar target/nb.jar virtdata gendocs basedir ${GUIDEBOOK}/services/docs/bindings
|
||||
|
||||
driversdir="${GUIDEBOOK}/services/docs/drivers"
|
||||
mkdir -p $driversdir
|
||||
|
||||
drivers=$($JAVA -jar target/nb.jar --list-drivers)
|
||||
for driver in $drivers
|
||||
do
|
||||
echo "driver: $driver"
|
||||
targetmd="${driversdir}/${driver}.md"
|
||||
echo "targetmd: $targetmd"
|
||||
printf -- "---\ntitle: driver - $driver\nweight: 50\n---\n" > $targetmd
|
||||
printf -- "drivers/${driver}.md\n" >> ${GUIDEBOOK}/services/docs/markdown.csv
|
||||
$JAVA -jar target/nb.jar help $driver >> $targetmd
|
||||
done
|
||||
(
|
||||
cd ${GUIDEBOOK}/services/docs;
|
||||
find * -type f -name '*.md' | sort > markdown.csv
|
||||
)
|
||||
|
||||
#JAVA_HOME=${JAVA_HOME:-JAVA_HOME must be specified if java isn not in the path}
|
||||
#
|
||||
## static site for gh pages
|
||||
#java -jar nb/target/nb.jar docserver generate ${GUIDEBOOK}/
|
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
set -x
|
||||
|
||||
NBJAR_VERSION=${NBJAR_VERSION:?NBJAR_VERSION must be specified}
|
||||
echo "NBJAR_VERSION: ${NBJAR_VERSION}"
|
||||
|
||||
|
||||
|
||||
cd target
|
||||
if [ -e "nb.jar" ]
|
||||
then
|
||||
echo "nb.jar link exists, skipping"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
for qualifier in jar-with-dependencies
|
||||
do
|
||||
JARNAME="nb-${NBJAR_VERSION}-${qualifier}.jar"
|
||||
if [ -e "$JARNAME" ]
|
||||
then
|
||||
echo "linking $JARNAME to nb.jar"
|
||||
ln -s $JARNAME nb.jar
|
||||
echo "linked $JARNAME to nb.jar, exiting"
|
||||
exit 0
|
||||
else
|
||||
echo "$JARNAME does not exist, skipping"
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
echo "Unable to find any jar to link to nb.jar name.."
|
||||
exit 2
|
||||
|
243
nb/pom.xml
243
nb/pom.xml
@ -1,243 +0,0 @@
|
||||
<!--
|
||||
~ Copyright (c) 2022 nosqlbench
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
<parent>
|
||||
<artifactId>mvn-defaults</artifactId>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
<relativePath>../mvn-defaults</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>nb</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>${project.artifactId}</name>
|
||||
<description>CLI for nosqlbench.</description>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<javadoc.name>nosqlbench Command Line</javadoc.name>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>nbr</artifactId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-stdout</artifactId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-diag</artifactId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-dynamodb</artifactId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-cqld4</artifactId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-pulsar</artifactId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Everything below this line constitutes the delta between nb and nb5 -->
|
||||
<!-- All driver-* modules should be migrated to adapter-* modules and added to nb5 -->
|
||||
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>io.nosqlbench</groupId>-->
|
||||
<!-- <artifactId>driver-kafka</artifactId>-->
|
||||
<!-- <version>4.17.22-SNAPSHOT</version>-->
|
||||
<!-- </dependency>-->
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>driver-jmx</artifactId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>driver-pulsar</artifactId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>driver-cockroachdb</artifactId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
<filtering>true</filtering>
|
||||
</resource>
|
||||
</resources>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>3.3.0</version>
|
||||
<configuration>
|
||||
<descriptors>
|
||||
<descriptor>assembly.xml</descriptor>
|
||||
</descriptors>
|
||||
<archive>
|
||||
<manifest>
|
||||
<mainClass>io.nosqlbench.engine.cli.NBCLI</mainClass>
|
||||
</manifest>
|
||||
<manifestEntries>
|
||||
<Multi-Release>true</Multi-Release>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>assemble-nb</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>exec-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>link-nb-jar-name</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>exec</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<environmentVariables>
|
||||
<NBJAR_VERSION>${project.version}</NBJAR_VERSION>
|
||||
</environmentVariables>
|
||||
<basedir>${project.basedir}</basedir>
|
||||
<executable>${project.basedir}/nb-scripts/link-jar-name.sh</executable>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>with-mongodb</id>
|
||||
<activation>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>driver-mongodb</artifactId>
|
||||
<version>4.17.22-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>build-nb-appimage</id>
|
||||
<activation>
|
||||
<os>
|
||||
<family>unix</family>
|
||||
<name>linux</name>
|
||||
<arch>amd64</arch>
|
||||
</os>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>exec-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>build-nb-appimage</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>exec</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<basedir>${project.basedir}</basedir>
|
||||
<executable>${project.basedir}/build-bin.sh</executable>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>enforce</id>
|
||||
<activation>
|
||||
<activeByDefault>false</activeByDefault>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<configuration>
|
||||
<rules>
|
||||
<dependencyConvergence />
|
||||
</rules>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
|
||||
</profiles>
|
||||
|
||||
|
||||
</project>
|
Loading…
Reference in New Issue
Block a user