How to resolve MongoDB client library missing issue in Bold BI?
When working with Bold BI and MongoDB, you may encounter a situation where the MongoDB client library is missing. This typically occurs if the MongoDB libraries were not installed during the Bold BI installation process.
To resolve this issue, follow the steps below based on your deployment.
Windows deployment:
- Go to Bold BI installed location in your machine (C:\Program Files (x86)\Bold BI Enterprise Edition\Client Library).
- Run the ClientLibrary package installer.
- Select the Mongo-csharp-driver in the popup and click the install button.
-
This will copy the required DLLs to the appropriate location in your Bold BI installation folder. Typically, this is the “lib” folder in the Bold BI installation directory.
-
Now, you should be able to connect to your MongoDB database without any issues.
Kubernetes deployment:
If you are utilizing helm, please perform the following steps:
- Add the optional library name in the helm values.yaml file as shown below.
optionalLibs: ‘mongodb,mysql,influxdb,snowflake,oracle,clickhouse,google.’
- Then upgrade the Bold BI, run the below command.
helm upgrade [RELEASE_NAME] boldbi/boldbi -f [Crafted values.yaml file] -n [Namespcace]
Example command:
helm upgrade boldbi boldbi/boldbi -f gke-values.yaml -n bold-services.
- Once the upgrade is completed, ensure the client library installation in dataservice pod logs by running the below command.
kubectl logs [bi-dataservice-pod-name] -n [Namespace]
- Now, you should be able to connect to your MongoDB database without any issues.
If you are using kubectl, please perform the following steps:
- Open the deployment.yaml file and update the client library names in the specified section as shown below.
- In the terminal, navigate to the deployment.yaml file directory and run: the command to apply the changes.
Docker deployment:
Run the Below command to install the client libraries by passing the name as environment variable.
Bold BI in docker - https://hub.docker.com/r/syncfusion/boldbi
Linux deployment:
Follow the steps given here to install client libraries in Linux deployment.
Azure ARM deployment:
Follow the steps given here to install client libraries in Linux deployment.
Related Articles: