Install
Timeplus Enterprise in the cloud
The quickest and easiest way to get started with Timeplus is to sign up a free account at the fully-managed us.timeplus.cloud.
You just need to sign up with Google or Microsoft Single Sign-On, or create a new username and password. Then create a new workspace and start your streaming analytics journey.
Timeplus Enterprise self-hosted
Customers can install Timeplus Enterprise with high availability and scalability in own data center or cloud account, using the bare metal installer or the official Timeplus Kubernetes Helm Chart.
Timeplus Proton, the core engine
As a single binary
curl https://install.timeplus.com/oss | sh
Once the proton
binary is available, you can run Timeplus Proton in different modes:
- Local Mode. You run
proton local
to start it for fast processing on local and remote files using SQL without having to install a full server - Config-less Mode. You run
proton server
to start the server and put the config/logs/data in the current folder. Then useproton client -h 127.0.0.1
in the other terminal to start the SQL client. - Server Mode. You run
sudo proton install
to install the server in predefined path and a default configuration file. Then you can runsudo proton server -C/etc/proton-server/config.yaml
to start the server and useproton client
in the other terminal to start the SQL client.
For Mac users, you can also use Homebrew to manage the install/upgrade/uninstall:
brew tap timeplus-io/timeplus
brew install proton
As a Docker container
docker run -d --pull always --name proton ghcr.io/timeplus-io/proton:latest
In case you cannot access ghcr, you can pull the image from public.ecr.aws/timeplus/proton
You may need to expose ports from the Proton container so that other tools can connect to it, such as DBeaver. Please check Server Ports for each port to expose. For example:
docker run -d --pull always -p 8123:8123 -p 8463:8463 --name proton ghcr.io/timeplus-io/proton:latest
Docker Compose
The Docker Compose stack demonstrates how to read/write data in Kafka/Redpanda with external streams.
Kubernetes
Running the single node Proton via Kubernetes is possible. We recommend you contact us to deploy Timeplus Enterprise for on-prem deployment.