Installing Memphis with an External Metadata Database
Memphis is a real-time data processing platform that can be configured to use an external metadata database for enhanced scalability and flexibility.
Last updated
Was this helpful?
Memphis is a real-time data processing platform that can be configured to use an external metadata database for enhanced scalability and flexibility.
Last updated
Was this helpful?
(kubectl
command) to interact with Kubernetes.
(helm
command) to install Kubernetes packages.
An external metadata database ( PostgreSQL) set up and accessible.
A Kubernetes namespace provides a mechanism to partition cluster resources between multiple users.
When creating a secret for your database password, you must replace CHANGEIT
with the actual password you use to access your database. This should be done securely to prevent exposing the password:
After creating the namespace and the secret, you can verify their existence with the following kubectl
commands:
To get memphis namespace:
To view the created secret in memphis
:
Now, you're ready to install Memphis into your Kubernetes cluster, specifically into the memphis
namespace. Use the helm install
command:
Before running the Helm install command, identify all the CHANGEIT
placeholder values in your configuration or command instructions.
After completing the installation of Memphis (or any application) in both production and development environments using Helm, you should verify the installation to ensure that the application's pods are running as expected. The kubectl get pods --namepsace memphis
command is a straightforward way to check the status of your pods within the memphis namespace.