Difference between revisions of "How to run a simulation of a control plane with ERSAP backend"

From epsciwiki
Jump to navigation Jump to search
Line 12: Line 12:
 
</pre>
 
</pre>
 
</blockquote>
 
</blockquote>
 +
  
 
: '''Access to ET system files has been made simple by placing them into the gRPC installation'''
 
: '''Access to ET system files has been made simple by placing them into the gRPC installation'''
Line 19: Line 20:
 
:: ET executables are in $GRPC_INSTALL_DIR/bin
 
:: ET executables are in $GRPC_INSTALL_DIR/bin
 
:: ET jar file is in $GRPC_JAVA_INSTALL_DIR/jars
 
:: ET jar file is in $GRPC_JAVA_INSTALL_DIR/jars
 +
  
 
: '''Start by Running the ET system as a fifo. Use 1000, 1500kB buffers'''
 
: '''Start by Running the ET system as a fifo. Use 1000, 1500kB buffers'''

Revision as of 18:33, 3 January 2023


Start with the gRPC installation directory and define some environmental variables
export GRPC_INSTALL_DIR=/daqfs/gRPC/installation
export GRPC_JAVA_INSTALL_DIR=/daqfs/gRPC/java_installation
export PATH="$GRPC_INSTALL_DIR/bin:$PATH"
export LD_LIBRARY_PATH="$GRPC_INSTALL_DIR/lib:$LD_LIBRARY_PATH"


Access to ET system files has been made simple by placing them into the gRPC installation
ET lib is in $GRPC_INSTALL_DIR/lib
ET includes are in $GRPC_INSTALL_DIR/include
ET executables are in $GRPC_INSTALL_DIR/bin
ET jar file is in $GRPC_JAVA_INSTALL_DIR/jars


Start by Running the ET system as a fifo. Use 1000, 1500kB buffers
cd $GRPC_INSTALL_DIR/bin
./et_start_fifo -f /tmp/fifoEt -d -s 150000 -n 1 -e 1000


Now that it compiles, as an example, implement ERSAP backend reassembler communication of fifo fill percentage to load-balancer control plane


Rename a few files and directories, from helloworld to loadBalancerControl (or whatever you want)