In this video tutorial, you will learn how to use the Edge language, a simple and powerful domain-specific language created by OpenResty Inc. to invoke custom Lua modules in OpenResty Edge’s application page rules. With this approach, you can effortlessly perform gateway operations and calculations that are otherwise extremely complex.

Embeded image

Create a Lua module in OpenResty Edge

Let’s go to a web console of OpenResty Edge. This is our sample deployment of the console. Every user would have their own deployment.

Screenshot

First, we need to create a Lua module.

Screenshot

Go to the Global Config page.

Screenshot

Select “Global Lua Modules”.

Screenshot

The Lua modules we create here can be called by page rules and be as complex as possible to meet our needs.

Screenshot

We can upload a Lua file directly.

Screenshot

Or write the code in the edit box.

Screenshot

Here, we create a Lua file named output-md5.lua, which can calculate the md5 value of the input parameter.

Screenshot

Declare the Lua module table _M.

Screenshot

Now, add a function named calc to this Lua module, which can calculate the md5 value of the input parameter.

Screenshot

Finally, don’t forget to return the module table at the end.

Screenshot

After editing and clicking save, the Lua module will be automatically distributed to each gateway server and can then be referenced by Edgelang code.

Screenshot

Call the Lua module in an HTTP application of OpenResty Edge

Now we try to call the Lua module in an HTTP application of OpenResty Edge.

Screenshot

We can still use our continuing sample application, test-edge.com.

Screenshot

Enter the application.

Screenshot

Click to enter “Page Rules”.

Screenshot

We already have a page rule defined. This page rule sets up a reverse proxy to a pre-defined upstream.

Screenshot

Now let’s add a new page rule to call the Lua module.

Screenshot

We enable a rule condition to check for the URI /test-md5.

Screenshot

Let’s see all the variables we can choose from.

Screenshot

Select URI.

Screenshot

We choose the string equality operator.

Screenshot

Screenshot

Enter the value /test-md5 to match the root location only.

Screenshot

Then, add a new action.

Screenshot

You can search for the action you want to add here.

Screenshot

Search for “Using EdgeLang”.

Screenshot

Select it.

Screenshot

Add the Edgelang code we used to call the Lua module to the edit box. We use the URI argument “value” as the input parameter.

Screenshot

We make sure this rule runs before any existing normal rules.

Screenshot

Make sure we skip any subsequent rules when this rule is matched.

Screenshot

It’s not really necessary for this rule. But it is always a good idea to be explicit when we want to stop request processing immediately.

Create this rule for real.

Screenshot

As always, we need to make a new release to push out our new changes.

Screenshot

Click on this button.

Screenshot

Ship it!

Screenshot

Our new release is now synchronized to all our gateway servers.

Screenshot

Now the new page rule has been pushed to all the gateway clusters and servers.

Embeded video

Our configuration changes do NOT require server reload, restart, or binary upgrade. So, it’s very efficient and scalable.

Embeded image

Verify the effect of calling the Lua module

Next, we’ll verify the effect of calling the Lua module.

On the terminal, we send an HTTP request to this gateway server via the curl command-line utility.

Screenshot

Here, we send a request with URI argument value=test1. Note the value=test1 URI argument.

Screenshot

Run the command. We can get the returned md5 value.

Screenshot

Now, we change the URI argument.

Screenshot

Note the value=test2 URI argument.

Screenshot

Run it! Note that the returned md5 value has changed.

Screenshot

We can also call our Lua modules at the beginning of Page Rules.

Screenshot

Add Edgelang code here.

Screenshot

Click the “Edit” button.

Screenshot

Write Edgelang Code in the edit box.

Screenshot

It works the same way as the page rule we just set up.

Screenshot

What is OpenResty Edge

OpenResty Edge is a powerful distributed traffic management and private CDN software product based on OpenResty. It provides various features such as page rules, web application firewall (WAF), load balancing, and many more.

If you like this tutorial, please subscribe to this blog site and/or our YouTube channel. Thank you!

About The Author

Yichun Zhang (Github handle: agentzh), is the original creator of the OpenResty® open-source project and the CEO of OpenResty Inc..

Yichun is one of the earliest advocates and leaders of “open-source technology”. He worked at many internationally renowned tech companies, such as Cloudflare, Yahoo!. He is a pioneer of “edge computing”, “dynamic tracing” and “machine coding”, with over 22 years of programming and 16 years of open source experience. Yichun is well-known in the open-source space as the project leader of OpenResty®, adopted by more than 40 million global website domains.

OpenResty Inc., the enterprise software start-up founded by Yichun in 2017, has customers from some of the biggest companies in the world. Its flagship product, OpenResty XRay, is a non-invasive profiling and troubleshooting tool that significantly enhances and utilizes dynamic tracing technology. And its OpenResty Edge product is a powerful distributed traffic management and private CDN software product.

As an avid open-source contributor, Yichun has contributed more than a million lines of code to numerous open-source projects, including Linux kernel, Nginx, LuaJIT, GDB, SystemTap, LLVM, Perl, etc. He has also authored more than 60 open-source software libraries.