Data Lake Analytics How to implement Data Lake on GCP By admin Introduction In this blog we are going to cover how to implement Data Lake on GCP. Google Cloud Platform (GCP) enables us to build modern datalake platform that can store petabytes of structured and unstructured data , data ingestion and...
Data Lake Analytics How to implement Data Lake Analytics on Azure By admin Introduction In this blog we are going to cover how to implement Data Lake on Azure. Azure cloud services enable us to build modern datalake platform that can store petabytes of structured and unstructured data , data ingestion and data...
Machine Learning Support Vector Machine (SVM) in Machine Learning By admin What is Machine Learning? A computer’s ability to learn from data without explicit programming is called machine learning. It works like this: The machine learns from the existing data and predicts or makes decisions about future data. Your data set must...
Pentaho How To Use Java Script In Pentaho By admin Pentaho is a business intelligence and data integration platform, and you can use JavaScript in various components and steps, such as in transformations or filters, to manipulate data. To filter rows in Pentaho using JavaScript, you can follow these general...
Pentaho How To Send Mail With Attachments In Pentaho By admin Sending emails with attachments is a common requirement in business intelligence and data integration scenarios. In this document, we will guide you through the steps to send mail with attachments in Pentaho using a transformation and jobs. Here are the...
Java Mocking of private method and private field By admin In this article we are going to learn about how to improve code coverage of private methods and mocking private field. Private Field : As we face difficult in mocking private field as it use in all across whole class,...
Teableau How To Use Cascading Filter In Tableau By admin Concept : Cascading filter is nothing but dependant filters.It is the filter functionality where on selecting filter value in the first filter it will limits or it will show relevant filter values in the second filter.In order to create cascade...
Jaspersoft How to connect Jasper Soft Studio With Trino By admin Download Trino JDBC driver - You can download the Driver from official site of the trino Create a new Data Adapter In Jasper Using the Database JDBC Connection Add the jar file on the Driver Classpath page Put the relevant...
Machine Learning Regularization in Machine Learning By admin What is Regularization? Regularization is one of the most important concepts of machine learning. It is a technique to prevent the model from overfitting by adding extra information to it. Sometimes the machine learning model performs well with the training...
Snowflake How to Create a Database and Tables in Snowflake Using Portal By admin In this article we will learn how to create a database in snowflake portal,creating a table and how to insert multiple rows of data into the table from snowflake portal.Here are few steps to insert data into the tables. Step...
Software Testing Mastering Mockito in JUnit Testing: Simplifying Test Development By admin Mockito is junit testing framework , which actually mock the behaviour of methods. It simplify the development of tests of classes with dependencies. I hope you are familiar with junit . A mock object is dummy object of classes and...
Big Data Containerizing a Flask App with Docker and Load Balancing using NGINX By admin Prerequisites 1. A System with docker installed on it. Introduction Containerization, driven by the magic of Docker, has completely changed the game for building and launching applications. In this section, we are going to dive into the heart of containerization,...