Apache Spark Java example - Spark Filter

Apache Spark Java example – Spark Filter

Table of Contents1. Overview2. Development environment3. Sample InputSample Input:4. SolutionUsing Spark CoreJava source file4.1 Build File : build.gradle4.2 Java Code: SparkFilterExample.java5. Build & Run Spark Filter Example6. Output(Portion)7. Source Code…

Spring Boot Slf4j and Logback Example

Spring Boot Slf4j and Logback Example

Table of Contents1. Overview2. Example2.1 Project Structure2.2 POM file configuration2.3 Controller2.4 logback-spring.xml2.5 Output3. Conclusion4. References5. Source Code 1. Overview Slf4j (Simple Logging Facade for Java) APIs provides abstraction using facade…

Spring Boot Log4j2 Example

Spring Boot Log4j2 Example

Table of Contents1. Overview2. Example2.1 Project Structure2.2 POM file configuration2.3 Controller2.4 application.properties2.5 log4j2.properties2.5.1 Configure log4j2.properties file2.5.2 Output2.5.3 Configure log4j2.properties file for logging Output in the File3. Conclusion4. References5. Source Code…

Maven show dependency tree

Maven show dependency tree

Table of Contents1. Overview2. Example2.1 pom.xml2.2 Command to check maven dependency2.3 Output3. References 1. Overview A maven is a build tool which helps us to build an application. It will…

Elastic Search as Windows Service

Elastic Search as Windows Service

Table of Contents1. Overview2. elasticsearch-service.bat2.1 Install elastic search service2.2 start elastic search service2.3 stop elastic search service2.4 Remove elasticsearch service3. Conclusion4. References 1. Overview “In Windows operating systems, a Windows…

Elastic Search CSV Bulk Import Example

Elastic Search CSV Bulk Import Example

Table of Contents1. Overview2. Development Environment3. Steps to Index Multiple Documents using Transport Client4. ExampleInput FileProject Structurepom.xmlESBulkIndexingExample.javaOutputQuery Elastic Search using Google chrome extension5. Conclusion6. References7. Source Code 1. Overview Elastic Search…

Spring Boot Elastic Search Example

Spring Boot Elastic Search Example

Table of Contents1. OverviewSteps to configure Elastic with spring bootStart Elastic Search2. spring boot elastic search example2.1 pom.xml2.2 application.properties2.3 SpringBootConfig2.4 ElasticSearchConfig2.5 Creating a Document2.6 DocumentRepository2.7 ESDocumentController2.8 Build & Run Application2.9…