nginScript – A New and Powerful Way to Configure NGINX

nginScript – A New and Powerful Way to Configure NGINX

Title Slide
The following is adapted from a presentation given by Igor Sysoev at nginx.conf 2015, held in San Francisco in September. You can view the video of the nginScript talk on YouTube.

Table of Contents
0:27 nginScript Beginnings
1:30 The Lua Module
2:23 Choosing JavaScript
3:33 JavaScript VMs
4:04 V8 Issues
6:15 The nginScript VM
7:51 The State of nginScript
9:10 The nginScript Interface
9:58 $r.response
11:34 Questions and Answers

0:27 nginScript Beginnings

Slide 1 - Alternatives

Since the start of NGINX’s development, I’ve wanted NGINX to have the ability to run scripts inside the server.

I first attempted to implement this capability in 2005. At that time I tried to embed Perl – which was, and still is, my favorite language for general scripting.

Perl has some drawbacks, however, that make it unsuitable as a server scripting language. For example, when it runs out of memory, Perl just exits. Now that may be acceptable for an ordinary script but it’s very bad for servers. Servers need to behave much more gracefully in those situations.

1:30 The Lua Module

Slide 2 - Lua Oddities

Some time after that, we decided to embed Lua, another scripting language, inside NGINX. This was made available through a third-party module.

But Lua has some oddities. If you’ve never programmed with Lua, you will find the syntax a bit strange and different from what you may be used to with C (for example). You will see strange regular expressions as well, using unusual syntax.

2:23 Choosing JavaScript

Slide 3 - Languages

In fact, JavaScript also has a lot of its own oddities, but people are already used to them. But in the case of Lua, they would have to get used to these things all over again.

Based on popularity, we decided to choose JavaScript instead of Lua. Lua is a niche language. If you look at Github’s statistics, you will see Javascript in first place while Lua is not even in the top ten languages.

3:33 JavaScript VMs

Slide 4 - Javascript VMs

There are several Javascript implementations – by Google, Mozilla, and Apple. These engines are all very good but they were developed for the browser environment.

4:04 V8 Issues

Slide 5 - V8

If we take V8 for example, there are several issues that make it difficult to use in a server environment. The first one is portability. V8 uses just-in-time compilation, compiling Javascript into machine code. This limits V8 to certain hardware platforms. For example, V8 can only run on Intel CPUs, ARM, and there are also ports for MIPS and PowerPC.

The second issue is memory. V8 runs in one browser tab, and if it runs out of memory, it will stop and maybe just close that tab. This is not acceptable for servers. Servers should behave more gracefully in these situations. It should just close that request and continue to process other requests.

The next thing is preemption. There is no easy way to use one V8 virtual machine, preempt it, and switch to running another V8 VM.

And the last thing is having to chase all the API changes made by Google. As you may know, Node.js never uses the latest version of V8. This is because Google changes the API quite often and developers simply cannot keep up.

6:15 The nginScript VM

Slide 6 - nginscript VM

So I decided to write my own Javascript implementation. We run virtual machines per request. So, we do not share one Javascript virtual machine – as Node.js does, for example. This approach allows us to preempt these machines without any issues. And also in many cases, for short-lived requests, we don’t need garbage collection at all. We can just throw these virtual machines away when the requests complete. In contrast, Node.js needs to run a garbage collector if there is a memory shortage.

All these virtual machines share the same bytecode which compiles at start-up, so creating a new virtual machine is quite cheap. We just need to allocate some memory and copy some initial values to this memory. Teardown is even cheaper. We just free all allocated memory, which is a fast operation.

We use a register-based virtual machine. This is not stack-based, so the size of the virtual machine is quite small. For small tasks, it takes roughly several kilobytes of memory. So, it’s quite lightweight.

7:51 The State of nginScript

Slide 7 - ECMAScript Subset

The current state of our implementation is a subset of ECMAScript 5.1. We do not support closures yet. We don’t yet support some built-in objects, like date, month, et cetera, but we are considering adding these things later.

Currently, we have no garbage collector. As I’ve mentioned earlier, a garbage collector is not required for short-lived requests due to our implementation, but we would also like to support long-lived connections. In this case, a garbage collector may be required.

And we currently do not support just-in-time compilation. We use bytecode. Bytecode allows us to run on any platform where you can build Javascript. We plan to add JIT later, probably using the Low-Level Virtual Machines Project, but it’s not something we’re looking at for the near future.

9:10 The nginScript Interface

Slide 8 - $r

Recently, we released nginScript, and we’re looking to get feedback on our interface, the Javascript interface which gives access to NGINX’s internals.

We have the $r object, which represent requests. This object has several fields: method, uri, arguments{}, httpVersion, headers{}, and remoteAddress. This list will expand in the future.

9:58 $r.response

Slide 9 - $r.response

There is another object, inside the request object $r , which allows us to work with the response. $r.response gives us the fields status, headers{}, contentType, and contentLength.

And $r.response also has three methods that allow you to send a response to the client.

Slide 10 - $r.response methods

This is a short overview of our Javascript interface. We’d like to get feedback on how Javascript developers feel about it. We heard a lot of different opinions of how this interface should be implemented, should it be done with functions, should it be using objects, et cetera. So based on your feedback, we will plan our next step in developing nginScript.

11:34 Questions and Answers

Q: What phases does this execute at?

A: Currently, nginScript can be used for declaring/defining variables, and it can be run in the content generating phase. There are other phases in NGINX, for example the access phase, the log writing phase. Eventually, we will add support for these phases. But currently, nginScript is limited to the content generation phase.

Q: Did you do any comparisons or benchmarking against LuaJIT?

A: When I started this project, I ran some simple benchmarks. I supposed that the most common task would be working with strings, so I wrote a simple benchmark evaluating Fibonacci numbers by concatenating strings.

Instead of adding numbers, which is the slowest algorithm to calculate the Fibonacci sequence, it recursively calls two numbers. I changed the numbers to strings, and at the end of the procedure I just count the length of the string. So, this micro-benchmark tests the overhead of function calls and concatenating strings which I believe will be the most common tasks while scripting inside NGINX.

I wrote this benchmark in a number of languages; and our implementation is comparable with Perl, with Ruby, with PHP, with Lua. Of course, it’s slower than LuaJIT, and it’s slower than Javascript implementations like V8, SpiderMonkey, and JavascriptCore which use JIT. But it’s comparable with popular scripting languages like PHP or Ruby and Python. Python and Perl.

Of course, it’s not suitable for some mass operations, for encryptions, for compressing, et cetera, but It’s good for string manipulations, and actually this is the most important task in a server environment.

To learn more about nginScript:

The post nginScript – A New and Powerful Way to Configure NGINX appeared first on NGINX.

Source: nginScript – A New and Powerful Way to Configure NGINX

About KENNETH 19688 Articles
지락문화예술공작단

Be the first to comment

Leave a Reply

Your email address will not be published.


*


이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.