Configuration Files
By using configuration files, you can customize the behavior of Skytable.
An example configuration
A configuration file is a TOML file, which has the following basic structure:
[server]
host = "127.0.0.1"
port = 2003
noart = false
maxcon = 50000
mode = "prod"
[bgsave]
enabled = true
every = 120
[snapshot]
every = 3600
atmost = 4
failsafe = true
[ssl]
key = "/path/to/keyfile.pem"
chain = "/path/to/chain.pem"
port = 2004
only = true
Let’s understand what each of the keys mean along with some other keys that can be used for more advanced configuration:
server
(required):host
: This is the IP address to which you want the database server to bind to. It can be any valid IPv4 or IPv6 address, as a quoted stringport
: This is the port to which you want Sky to bind tonoart
(optional): This is recommended for secure environments where displaying terminal artwork might cause problemsmaxcon
(optional): Set the maximum number of clients that can query concurrentlymode
(optional): Should be set toprod
for production deployments anddev
during development
bgsave
(optional):enabled
(optional): This is an optional key, which is to be set to true to enable BGSAVE or false to disable it. If this key is not specified, Sky will enable BGSAVE by defaultevery
: Run BGSAVEevery
seconds. So, for example, if you set this to 120, BGSAVE will run every two minutes. This is also an optional key, and if you don’t provide it, the default BGSAVE duration of 120 seconds is used
snapshot
(optional): This key can be used to configure snapshots and is not enabled by default. See this for more information.ssl
(optional): This key can be used to configure SSL/TLS options. See this for more information.
Using a configuration file
To use a configuration file:
- Create it! We recommend you to name it as
skyd.toml
for easy identification - Start the database server with:
skyd -c /path/to/your/file.toml
- Done 🎉
If you’re confused about creating a configuration file, we always recommend you to download the template configuration from this link.
That’s all that’s there to using configuration files!
Bonus tip
If you’re using a custom host/port, then you can bind skysh
to a custom host/port by starting skysh
like:
skysh -h [HOST] -p [PORT]
You can do the same for sky-bench
:
sky-bench -h [HOST] -p [PORT]
Using a configuration file with Docker containers
The official Docker image will look for a configuration file at /etc/skytable/skyd.toml
within the container. To use a file on the host as the configuration file in the container, we’ll make use of Docker volumes. Simply follow the steps above and then start your docker image like this:
docker run --name skyd \
-v /path/to/your/file.toml:/etc/skytable/skyd.toml \
skytable/sdb:v0.7.3