midarch

module
v1.14.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 7, 2023 License: MIT

README

midarch Go Reference Go Report Card

Installing & Configuring

1. Download gMidArch
2. Configure gMidArch
2.1 Environment variable
  • Configure environment variable GMIDARCH=<path-to-gmidarch>
2.2 Certificates

If you are going to use TLS then configure TLS environment variables:

  • Configure CA_PATH=<path-to-ca-cert-file>
  • Configure CRT_PATH=<path-to-cert-file>
  • Configure KEY_PATH=<path-to-cert-key-file>

If you don't have certificades and want to generate certificates just for developing and/or testing:

mkdir -p ./examples/certs/
cd ./examples/certs/

# Generate CA key
openssl genrsa -out myCA.key 1024
# Generate the CA Certificate
## Ask for common name, country, ...
openssl req -x509 -new -nodes -key myCA.key -sha256 -days 3650 -out myCA.pem
## Or provide in script common name, country, ...
openssl req -x509 -new -nodes -key myCA.key -sha256 -days 3650 -out myCA.pem -subj '/CN=MidArchCA/C=BR/ST=Pernambuco/L=Recife/O=MidArch'

# Generate Server Certificate
openssl req -new -nodes -newkey rsa:1024 -out server.csr -keyout server.key -subj '/CN=localhost/C=BR/ST=Pernambuco/L=Recife/O=MidArch'
# Sign the Server Certificate
openssl x509 -req -in server.csr -CA myCA.pem -CAkey myCA.key -CAcreateserial -sha256 -days 3650 -out server.pem -extfile <(printf "subjectAltName=DNS:localhost")

Where:

  • CN = <Common Name (e.g. server FQDN or YOUR name)>
  • C = <Country Name (2 letter code)>
  • ST = <State or Province Name (eg, city)>
  • L = <Locality Name (eg, city)>
  • O = <Organization Name (eg, company)>
  • OU = <Organizational Unit Name (eg, section)>
2.3 QUIC

To use QUIC on linux it is necessary to increase the maximum buffer size.

sysctl -w net.core.rmem_max=2500000

More on https://github.com/quic-go/quic-go/wiki/UDP-Receive-Buffer-Size

3. Install FDR4

Experiments

Scenario 1 (gMidArch - RPC)
  1. Go to GMIDARCH/pkg/apps/artefacts/madls
  2. Edit 'midfibonacciserver.madl' (set 'Adaptability' to 'None')
  3. Go to GMIDARCH/examples/fibonaccidistributed/naming
  4. Compile 'go build naming.go'
  5. Start Naming Service: './naming'
  6. Go to GMIDARCH/examples/fibonaccidistributed/server
  7. Compile 'go build server.go'
  8. Start Fibonacci Server: './server'
  9. Go to GMIDARCH/examples/fibonaccidistributed/client
  10. Compile 'go build client.go'
  11. Start Fibonacci: './client '
Scenario 2 (Adaptive gMidArch - RPC)
  1. Go to GMIDARCH/pkg/apps/artefacts/madls
  2. Edit 'midfibonacciserver.madl' (set 'Adaptability' to 'Evolutive')
  3. Go to GMIDARCH/examples/fibonaccidistributed/naming
  4. Compile 'go build naming.go'
  5. Start Naming Service: './naming'
  6. Go to GMIDARCH/examples/fibonaccidistributed/server
  7. Compile 'go build server.go'
  8. Start Fibonacci Server: './server'
  9. Go to GMIDARCH/examples/fibonaccidistributed/client
  10. Compile 'go build client.go'
  11. Start Fibonacci Client: './client '

Directories

Path Synopsis
examples
internal
pkg

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL