-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2cc308b
commit 07fbdd1
Showing
1 changed file
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,12 @@ tmp_options.compaction_service = std::make_shared<MyTestCompactionService>( | |
- Run Control Plane and CSA | ||
|
||
```shell | ||
cd $build | ||
git clone [email protected]:asu-idi/CaaS-LSM.git | ||
cd CaaS-LSM | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make -j100 | ||
./procp_server #run Control Plane server | ||
./csa_server #run CSA server | ||
``` | ||
|
@@ -46,8 +51,13 @@ cd $build | |
- Run CSA | ||
|
||
``` | ||
git clone [email protected]:asu-idi/CaaS-LSM.git | ||
cd CaaS-LSM | ||
git checkout disaggre-rocksdb | ||
cd $build | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make -j100 | ||
./csa_server # The name is the same, but the function of CSA is different with that of CaaS-LSM | ||
``` | ||
|
||
|