From 6212b59a19701a8f5aa4f6afb49467d8aeed01cf Mon Sep 17 00:00:00 2001 From: Sungho Kim Date: Thu, 11 Jan 2024 12:25:37 +0900 Subject: [PATCH] Update bin info and link --- docs/cli-cluster.md | 36 ++++++++++++++++---------------- docs/command-line-interface.md | 36 ++++++++++++++++---------------- docs/get-started-with-scratch.md | 2 +- docs/how-to-use-flashbase.md | 16 +++++++------- docs/release-note.md | 17 +++++++++++---- docs/tutorial.md | 4 ++-- 6 files changed, 60 insertions(+), 51 deletions(-) diff --git a/docs/cli-cluster.md b/docs/cli-cluster.md index d47c360..763326d 100644 --- a/docs/cli-cluster.md +++ b/docs/cli-cluster.md @@ -1095,28 +1095,28 @@ export SR2_REDIS_MASTER_HOSTS=( "127.0.0.1" ) export SR2_REDIS_MASTER_PORTS=( $(seq 18300 18304) ) ## Slave hosts and ports (optional) -#export SR2_REDIS_SLAVE_HOSTS=( "127.0.0.1" ) -#export SR2_REDIS_SLAVE_PORTS=( $(seq 18600 18609) ) +[[export]] SR2_REDIS_SLAVE_HOSTS=( "127.0.0.1" ) +[[export]] SR2_REDIS_SLAVE_PORTS=( $(seq 18600 18609) ) ## only single data directory in redis db and flash db ## Must exist below variables; 'SR2_REDIS_DATA', 'SR2_REDIS_DB_PATH' and 'SR2_FLASH_DB_PATH' -#export SR2_REDIS_DATA="/nvdrive0/nvkvs/redis" -#export SR2_REDIS_DB_PATH="/nvdrive0/nvkvs/redis" -#export SR2_FLASH_DB_PATH="/nvdrive0/nvkvs/flash" +[[export]] SR2_REDIS_DATA="/nvdrive0/nvkvs/redis" +[[export]] SR2_REDIS_DB_PATH="/nvdrive0/nvkvs/redis" +[[export]] SR2_FLASH_DB_PATH="/nvdrive0/nvkvs/flash" ## multiple data directory in redis db and flash db export SSD_COUNT=3 -#export HDD_COUNT=3 +[[export]] HDD_COUNT=3 export SR2_REDIS_DATA="~/sata_ssd/ssd_" export SR2_REDIS_DB_PATH="~/sata_ssd/ssd_" export SR2_FLASH_DB_PATH="~/sata_ssd/ssd_" ####################################################### # Example : only SSD data directory -#export SSD_COUNT=3 -#export SR2_REDIS_DATA="/ssd_" -#export SR2_REDIS_DB_PATH="/ssd_" -#export SR2_FLASH_DB_PATH="/ssd_" +[[export]] SSD_COUNT=3 +[[export]] SR2_REDIS_DATA="/ssd_" +[[export]] SR2_REDIS_DB_PATH="/ssd_" +[[export]] SR2_FLASH_DB_PATH="/ssd_" ####################################################### ``` @@ -1135,23 +1135,23 @@ export SR2_REDIS_SLAVE_PORTS=( $(seq 18350 18354) ) ## only single data directory in redis db and flash db ## Must exist below variables; 'SR2_REDIS_DATA', 'SR2_REDIS_DB_PATH' and 'SR2_FLASH_DB_PATH' -#export SR2_REDIS_DATA="/nvdrive0/nvkvs/redis" -#export SR2_REDIS_DB_PATH="/nvdrive0/nvkvs/redis" -#export SR2_FLASH_DB_PATH="/nvdrive0/nvkvs/flash" +[[export]] SR2_REDIS_DATA="/nvdrive0/nvkvs/redis" +[[export]] SR2_REDIS_DB_PATH="/nvdrive0/nvkvs/redis" +[[export]] SR2_FLASH_DB_PATH="/nvdrive0/nvkvs/flash" ## multiple data directory in redis db and flash db export SSD_COUNT=3 -#export HDD_COUNT=3 +[[export]] HDD_COUNT=3 export SR2_REDIS_DATA="~/sata_ssd/ssd_" export SR2_REDIS_DB_PATH="~/sata_ssd/ssd_" export SR2_FLASH_DB_PATH="~/sata_ssd/ssd_" ####################################################### # Example : only SSD data directory -#export SSD_COUNT=3 -#export SR2_REDIS_DATA="/ssd_" -#export SR2_REDIS_DB_PATH="/ssd_" -#export SR2_FLASH_DB_PATH="/ssd_" +[[export]] SSD_COUNT=3 +[[export]] SR2_REDIS_DATA="/ssd_" +[[export]] SR2_REDIS_DB_PATH="/ssd_" +[[export]] SR2_FLASH_DB_PATH="/ssd_" ####################################################### ``` diff --git a/docs/command-line-interface.md b/docs/command-line-interface.md index a07caa2..85de528 100644 --- a/docs/command-line-interface.md +++ b/docs/command-line-interface.md @@ -491,28 +491,28 @@ export SR2_REDIS_MASTER_HOSTS=( "127.0.0.1" ) export SR2_REDIS_MASTER_PORTS=( $(seq 18300 18304) ) ## Slave hosts and ports (optional) -#export SR2_REDIS_SLAVE_HOSTS=( "127.0.0.1" ) -#export SR2_REDIS_SLAVE_PORTS=( $(seq 18600 18609) ) +[[export]] SR2_REDIS_SLAVE_HOSTS=( "127.0.0.1" ) +[[export]] SR2_REDIS_SLAVE_PORTS=( $(seq 18600 18609) ) ## only single data directory in redis db and flash db ## Must exist below variables; 'SR2_REDIS_DATA', 'SR2_REDIS_DB_PATH' and 'SR2_FLASH_DB_PATH' -#export SR2_REDIS_DATA="/nvdrive0/nvkvs/redis" -#export SR2_REDIS_DB_PATH="/nvdrive0/nvkvs/redis" -#export SR2_FLASH_DB_PATH="/nvdrive0/nvkvs/flash" +[[export]] SR2_REDIS_DATA="/nvdrive0/nvkvs/redis" +[[export]] SR2_REDIS_DB_PATH="/nvdrive0/nvkvs/redis" +[[export]] SR2_FLASH_DB_PATH="/nvdrive0/nvkvs/flash" ## multiple data directory in redis db and flash db export SSD_COUNT=3 -#export HDD_COUNT=3 +[[export]] HDD_COUNT=3 export SR2_REDIS_DATA="~/sata_ssd/ssd_" export SR2_REDIS_DB_PATH="~/sata_ssd/ssd_" export SR2_FLASH_DB_PATH="~/sata_ssd/ssd_" ####################################################### # Example : only SSD data directory -#export SSD_COUNT=3 -#export SR2_REDIS_DATA="/ssd_" -#export SR2_REDIS_DB_PATH="/ssd_" -#export SR2_FLASH_DB_PATH="/ssd_" +[[export]] SSD_COUNT=3 +[[export]] SR2_REDIS_DATA="/ssd_" +[[export]] SR2_REDIS_DB_PATH="/ssd_" +[[export]] SR2_FLASH_DB_PATH="/ssd_" ####################################################### ``` @@ -531,23 +531,23 @@ export SR2_REDIS_SLAVE_PORTS=( $(seq 18350 18354) ) ## only single data directory in redis db and flash db ## Must exist below variables; 'SR2_REDIS_DATA', 'SR2_REDIS_DB_PATH' and 'SR2_FLASH_DB_PATH' -#export SR2_REDIS_DATA="/nvdrive0/nvkvs/redis" -#export SR2_REDIS_DB_PATH="/nvdrive0/nvkvs/redis" -#export SR2_FLASH_DB_PATH="/nvdrive0/nvkvs/flash" +[[export]] SR2_REDIS_DATA="/nvdrive0/nvkvs/redis" +[[export]] SR2_REDIS_DB_PATH="/nvdrive0/nvkvs/redis" +[[export]] SR2_FLASH_DB_PATH="/nvdrive0/nvkvs/flash" ## multiple data directory in redis db and flash db export SSD_COUNT=3 -#export HDD_COUNT=3 +[[export]] HDD_COUNT=3 export SR2_REDIS_DATA="~/sata_ssd/ssd_" export SR2_REDIS_DB_PATH="~/sata_ssd/ssd_" export SR2_FLASH_DB_PATH="~/sata_ssd/ssd_" ####################################################### # Example : only SSD data directory -#export SSD_COUNT=3 -#export SR2_REDIS_DATA="/ssd_" -#export SR2_REDIS_DB_PATH="/ssd_" -#export SR2_FLASH_DB_PATH="/ssd_" +[[export]] SSD_COUNT=3 +[[export]] SR2_REDIS_DATA="/ssd_" +[[export]] SR2_REDIS_DB_PATH="/ssd_" +[[export]] SR2_FLASH_DB_PATH="/ssd_" ####################################################### ``` diff --git a/docs/get-started-with-scratch.md b/docs/get-started-with-scratch.md index aae1b69..f00b387 100644 --- a/docs/get-started-with-scratch.md +++ b/docs/get-started-with-scratch.md @@ -48,7 +48,7 @@ Remove SWAP Partition (Comment out SWAP partition with using `#` and reboot) ``` bash ... -#/dev/mapper/centos-swap swap swap defaults 0 0 +[[/dev/mapper/centos-swap]] swap swap defaults 0 0 ... ``` diff --git a/docs/how-to-use-flashbase.md b/docs/how-to-use-flashbase.md index fe265ba..72d8b92 100644 --- a/docs/how-to-use-flashbase.md +++ b/docs/how-to-use-flashbase.md @@ -194,23 +194,23 @@ export SR2_REDIS_SLAVE_PORTS=( $(seq 18150 18159) ) // need to configure in ## only single data directory in redis db and flash db ## Must exist below variables; 'SR2_REDIS_DATA', 'SR2_REDIS_DB_PATH' and 'SR2_FLASH_DB_PATH' -#export SR2_REDIS_DATA="/nvdrive0/nvkvs/redis" -#export SR2_REDIS_DB_PATH="/nvdrive0/nvkvs/redis" -#export SR2_FLASH_DB_PATH="/nvdrive0/nvkvs/flash" +[[export]] SR2_REDIS_DATA="/nvdrive0/nvkvs/redis" +[[export]] SR2_REDIS_DB_PATH="/nvdrive0/nvkvs/redis" +[[export]] SR2_FLASH_DB_PATH="/nvdrive0/nvkvs/flash" ## multiple data directory in redis db and flash db export SSD_COUNT=3 // need to configure -#export HDD_COUNT=3 +[[export]] HDD_COUNT=3 export SR2_REDIS_DATA="/sata_ssd/ssd_" // need to configure. With this settings, '/sata_ssd/ssd_01', '/sata_ssd/ssd_02' and '/sata_ssd/ssd_03' are used. export SR2_REDIS_DB_PATH="/sata_ssd/ssd_" // need to configure export SR2_FLASH_DB_PATH="/sata_ssd/ssd_" // need to configure ####################################################### # Example : only SSD data directory -#export SSD_COUNT=3 -#export SR2_REDIS_DATA="/ssd_" -#export SR2_REDIS_DB_PATH="/ssd_" -#export SR2_FLASH_DB_PATH="/ssd_" +[[export]] SSD_COUNT=3 +[[export]] SR2_REDIS_DATA="/ssd_" +[[export]] SR2_REDIS_DB_PATH="/ssd_" +[[export]] SR2_FLASH_DB_PATH="/ssd_" ####################################################### ``` diff --git a/docs/release-note.md b/docs/release-note.md index 7d704a1..a56dee8 100644 --- a/docs/release-note.md +++ b/docs/release-note.md @@ -1,13 +1,22 @@ # 1. Recommended Version -[LightningDB ver 1.3.1](https://flashbase.s3.ap-northeast-2.amazonaws.com/latest/lightningdb.release.release.flashbase_v1.3.1.44c438.bin)[^1] +[LightningDB ver 1.3.1](https://drive.google.com/file/d/171jadrc0FI1EESCNBUaYsN--HQnWD-MA/view?usp=sharing)[^1] # 2. Release Notes +**Ver 1.4.2** + +- Date: 2022.06.01 +- Download: [LightningDB ver 1.4.2](https://drive.google.com/file/d/171jadrc0FI1EESCNBUaYsN--HQnWD-MA/view?usp=sharing) +- License: free +- Description + - Support Kubernetes + + **Ver 1.3.1** - Date: 2021.06.03 -- Download: [LightningDB ver 1.3.1](https://flashbase.s3.ap-northeast-2.amazonaws.com/latest/lightningdb.release.release.flashbase_v1.3.1.44c438.bin) +- Download: [LightningDB ver 1.3.1](https://drive.google.com/file/d/1BDXVLmPygd7YrthI5e4vIN09xBummRGN/view?usp=sharing) - License: free - Description - Support k-NN Search @@ -19,7 +28,7 @@ **Ver 1.2.3** - Date: 2020.07.21 -- Download: [LightningDB ver 1.2.3](https://flashbase.s3.ap-northeast-2.amazonaws.com/latest/lightningdb.release.release.flashbase_v1.2.3.45814d.bin) +- Download: [LightningDB ver 1.2.3](https://drive.google.com/file/d/1gjsx-Ng1TvxuLXoF3uKgKp7sfq5YFLgq/view?usp=sharing) - License: free - Description - Nondisruptive scale-out(Adding new nodes) @@ -34,7 +43,7 @@ **Ver 1.0** - Date: 2019.11.20 -- Download: [LightningDB ver 1.0](https://flashbase.s3.ap-northeast-2.amazonaws.com/latest/lightningdb.release.master.5a6a38.bin) +- Download: [LightningDB ver 1.0](https://drive.google.com/file/d/1gjsx-Ng1TvxuLXoF3uKgKp7sfq5YFLgq/view?usp=sharing) - License: free - Description - Initial version diff --git a/docs/tutorial.md b/docs/tutorial.md index 61d052c..f361aaa 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -118,9 +118,9 @@ EXECUTOR_MEMORY=1g // 수정 필요 EXECUTORS=12 // 수정 필요 EXECUTOR_CORES=12 // 수정 필요 -#JSON_PATH=~/Flashbase/flashbase-benchmark/json/load_no_skew +[[JSON_PATH]]=~/Flashbase/flashbase-benchmark/json/load_no_skew JSON_PATH=/home/ltdb/tsr2-test/json // 수정 필요, json file 업데이트 시 kaetlyn 재시작 필요! -#HIVE_METASTORE_URI=thrift://localhost:9083 +[[HIVE_METASTORE_URI]]=thrift://localhost:9083 HIVE_METASTORE_URI='' // 수정 필요 KAFKA_CONSUMER_GROUP_ID=nvkvs_redis_connector // 수정 필요 KAFKA_CONSUMING_TOPIC_LIST=nvkvs3 // 수정 필요