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

From epsciwiki
Jump to navigation Jump to search
(Created page with "<font size="+1"> WORK IN PROGRESS!! : '''Setup some environmental variables (assuming bash)''' <blockquote> <pre> export GRPC_INSTALL_DIR=/daqfs/gRPC/installation export PA...")
 
Line 3: Line 3:
  
 
WORK IN PROGRESS!!
 
WORK IN PROGRESS!!
 +
 +
: '''Find the ET system libs and includes'''
 +
Generally the ET system will be looked for under the $CODA directory which is perhaps easiest for now.
 +
 +
<blockquote>
 +
<pre>
 +
export GRPC_INSTALL_DIR=/daqfs/gRPC/installation
 +
export PATH="$GRPC_INSTALL_DIR/bin:$PATH"
 +
export LD_LIBRARY_PATH="$GRPC_INSTALL_DIR/lib:$LD_LIBRARY_PATH"
 +
</pre>
 +
</blockquote>
  
 
: '''Setup some environmental variables (assuming bash)'''
 
: '''Setup some environmental variables (assuming bash)'''
 +
 
<blockquote>
 
<blockquote>
 
<pre>
 
<pre>
Line 12: Line 24:
 
</pre>
 
</pre>
 
</blockquote>
 
</blockquote>
 +
  
 
: '''Start by Running the ET system.'''
 
: '''Start by Running the ET system.'''

Revision as of 17:37, 3 January 2023


WORK IN PROGRESS!!

Find the ET system libs and includes

Generally the ET system will be looked for under the $CODA directory which is perhaps easiest for now.

export GRPC_INSTALL_DIR=/daqfs/gRPC/installation
export PATH="$GRPC_INSTALL_DIR/bin:$PATH"
export LD_LIBRARY_PATH="$GRPC_INSTALL_DIR/lib:$LD_LIBRARY_PATH"
Setup some environmental variables (assuming bash)
export GRPC_INSTALL_DIR=/daqfs/gRPC/installation
export PATH="$GRPC_INSTALL_DIR/bin:$PATH"
export LD_LIBRARY_PATH="$GRPC_INSTALL_DIR/lib:$LD_LIBRARY_PATH"


Start by Running the ET system.



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)