gorox

command module
v0.1.7 Latest Latest
Warning

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

Go to latest
Published: Jun 13, 2023 License: BSD-2-Clause Imports: 8 Imported by: 0

README

Welcome

Welcome to Gorox!

Gorox is an advanced Webapp Server, RPC Framework, and Network Proxy. It can be used as:

  • Web Server (HTTP 1/2/3, WebSocket, TLS, HWEB, AJP, FCGI, uwsgi)
  • Web Proxy Server (HTTP, WebSocket, Tunneling, Forward, Reverse, Caching)
  • App Server for Go (Frameworks, Applications)
  • RPC Framework for Go (HRPC, gRPC, Thrift)
  • Layer 4 Network Proxy (QUIC, TCP/TLS, UDP/DTLS)
  • Service Mesh (Data Plane)
  • API Gateway
  • ... and more through its highly extensible compoments design!

For more details about Gorox, please see: https://gorox.io/ .

Motivation

To be written.

Platforms

Gorox should be working on these operating systems:

  • Linux kernel >= 3.9
  • FreeBSD >= 12.0
  • Apple macOS >= Catalina
  • Microsoft Windows >= 10

And these 64-bit CPU architectures:

  • AMD64, also known as x64, x86-64, Intel 64
  • ARM64, also known as AArch64
  • RISCV64, also known as RV64, RISC-V 64
  • Loong64, also known as LA64, LoongArch 64

Other platforms are currently not tested and probably don't work.

Quickstart

To start using Gorox, you can download the official binary distributions. If you need to build from source, please ensure you have Go >= 1.19 installed:

shell> go version

Then build Gorox with Go (replace x.y.z as version number):

shell> cd gorox-x.y.z
shell> go build

If build failed, set CGO_ENABLED=0 and build again:

shell> go env -w CGO_ENABLED=0
shell> go build

After you have successfully built binaries from source, or have downloaded and uncompressed the official binary distributions, you can run Gorox as a daemon (remove the "-daemon" option if you don't like to run as a daemon):

shell> ./gorox serve -daemon

To ensure the leader and the worker process have been both started:

shell> ./gorox pids

Now visit http://localhost:3080 to check if it works. To exit server gracefully:

shell> ./gorox quit

For more actions and options, run:

shell> ./gorox help

To install, move the whole Gorox directory to where you like. To uninstall, just remove the whole Gorox directory.

Performance

Gorox is fast. You can use your favorite HTTP benchmarking tool (like wrk) to perform a benchmark against the following URLs:

Generally, the result is about 80% of nginx and slightly faster than fasthttp.

Documentation

View Gorox documentation online:

Or view locally (ensure your local Gorox is started):

Layout

By default, Gorox uses these directories:

  • apps/ - Place your Web applications,
  • cmds/ - Place your auxiliary commands,
  • conf/ - Place configs for Gorox and your commands,
  • data/ - Place static shared files of your project,
  • docs/ - Place docs of your project,
  • exts/ - Place extended components written for your project,
  • hemi/ - The Hemi Engine,
  • idls/ - Place your Interface Description Language files,
  • jobs/ - Place your Cronjobs written in Go and scheduled by Gorox,
  • libs/ - Place libs written by you for your project,
  • misc/ - Place misc resource of your project,
  • srvs/ - Place your General Servers, like Chat server, SMS server, and so on,
  • svcs/ - Place your RPC services,
  • test/ - Place tests for your project.

After Gorox is started, 3 extra directories are created:

  • logs/ - Place running logs,
  • temp/ - Place temp files which are safe to remove after Gorox is shutdown,
  • vars/ - Place dynamic data files used by Gorox.

Architecture

Deployment

A typical deployment architecture using Gorox might looks like this:

            mobile  pc iot
               |    |   |
               |    |   |           public internet
               |    |   |
               v    v   v
             +------------+
+------------| edgeProxy1 |-------------+ gorox cluster
|            +--+---+--+--+             |
|    web        |   |  |       tcp      |
|      +--------+   |  +-------+        |
|      |            |          |        |
|      v           rpc         v        |
|   +------+        |       +------+    |
|   | app1 +----+   |   +---+ srv1 |    |
|   +------+    |   |   |   +---+--+    |
|               |   |   |       |       | stateless layer
|               v   v   v       v       |
|  +------+   +----------+  +--------+  |   +------------------+
|  | svc1 |<->| sidecar1 |  | proxy2 |--+-->| php-fpm / tomcat |
|  +------+   +----+-----+  +--------+  |   +------------------+
|                  |                    |
|                  v                    |
|  +------+   +----------+   +------+   |
|  | svc2 |<--+ sidecar2 |   | job1 |   |
|  +------+   +----------+   +------+   |
|                                       |
+-----------+------+---------+----------+
            |      |         |
            v      v         v
+---------------------------------------+
|     +------+  +-----+  +--------+     |
| ... | db1  |  | mq1 |  | cache1 | ... | stateful layer
|     +------+  +-----+  +--------+     |
+---------------------------------------+

In this typical architecture, with various configurations, Gorox can play ALL of the roles in "gorox cluster":

  • edgeProxy1: The Edge Proxy, also works as an API Gateway or WAF,
  • app1 : A Web application implemented directly on Gorox,
  • srv1 : A TCP server implemented directly on Gorox,
  • svc1 : A public RPC service implemented directly on Gorox,
  • sidecar1 : A sidecar for svc1,
  • proxy2 : A gateway proxy passing requests to PHP-FPM / Tomcat server,
  • svc2 : A private RPC service implemented directly on Gorox,
  • sidecar2 : A sidecar for svc2,
  • job1 : A background application in Gorox doing something periodically.

The whole Gorox cluster can alternatively be managed by a Myrox instance, which behaves like the control plane in Service Mesh. In this configuration, all Gorox instances in the cluster connect to Myrox and are under its control.

Process

A Gorox instance has two processes: a leader process, and a worker process:

                  +----------------+         +----------------+ business traffic
         cmdConn  |                | admConn |                |<===============>
operator--------->| leader process |<------->| worker process |<===============>
                  |                |         |                |<===============>
                  +----------------+         +----------------+

Leader process manages the worker process, which do the real and heavy work.

A Gorox instance can be controlled by operators through the cmdui interface of leader process. Operators connect to leader, send commands, and leader executes the commands. Some commands are delivered to worker through admConn.

Alternatively, Gorox instances can connects to a Myrox instance and delegates its administration to Myrox. In this way, the cmdui interface in leader process is disabled.

Community

Currently Github Discussions is used for discussing:

https://github.com/hexinfra/gorox/discussions

Contact

Gorox is originally written by Zhang Jingcheng diogin@gmail.com. You can also contact him through Twitter: @diogin.

The official website of the Gorox project is at:

License

Gorox is licensed under a 2-clause BSD License. See LICENSE.md file.

Contributing

Gorox is hosted at Github:

https://github.com/hexinfra/gorox

Fork this repository and contribute your patch through Github Pull Requests.

By contributing to Gorox, you MUST agree to release your code under the BSD License that you can find in the LICENSE.md file.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
cmds

Jump to

Keyboard shortcuts

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