This assumes that you have read the spring batch beginner tutorial & industrial strength part 1. This is the final part. Step 1: The annotated Java classes are referenced directly…
…This assumes that you have read the spring batch beginner tutorial & industrial strength part 1. This is the final part. Step 1: The annotated Java classes are referenced directly…
Login Register 100+ Free Java interview FAQs 100+ Free Big Data interview FAQs
Q1. What is the key benefit of using Spring boot?
A1. The key benefit is that you can “build a production ready application from scratch in a matter of minutes”.
Over the years since its inception, Spring has grown to be very complex in terms of the amount of configuration an application requires.…
Step by step MySQL video tutorial to get started with MySQL database. Any decent self-taught projects require a database to store & retrieve data.
1. Getting started with MySQL database beginner tutorial.
Q1. What is Spring Cloud? A1. Spring Boot is widely used to develop MicroServices. As many organisations deploy these services on the cloud like AWS, etc you need to take…
Login Register 100+ Free Java interview FAQs 100+ Free Big Data interview FAQs
Installing Zookeepr on Windows Step 1: Download Zookeeper from http://zookeeper.apache.org/. At the time of writing downloading zookeeper-3.4.11.tar.gz. Step 2: Using 7-zip on windows unpack the gzipped tar file into a…
Login Register 100+ Free Java interview FAQs 100+ Free Big Data interview FAQs
Q1 How do you remove the Control-M characters from a file? A1 Using the sed command that replaces Control-M with nothing
1 |
sed 's/^M//g' ReadWriteFile.sh > ReadWriteFileNew.sh |
Note: The ^M is typed on the command…
Login Register 100+ Free Java interview FAQs 100+ Free Big Data interview FAQs
Apache Flume is used in the Hadoop ecosystem for ingesting data. In this example, let’s ingest data from Websphere MQ. Step 1: Apache flume is config driven. Hierarchy driven flume…
Login Register 100+ Free Java interview FAQs 100+ Free Big Data interview FAQs
Step 1: Download the latest version of “Apache Hadoop common” from http://apache.claz.org/hadoop using wget, curl or a browser. This tutorial uses “http://apache.claz.org/hadoop/core/hadoop-2.7.1/”.
Step 2: You can set Hadoop environment variables by appending the following commands to ~/.bashrc file.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1. |
Step 1: Signup to Databricks community edition – https://databricks.com/try-databricks. Fill in the details and you can leave your mobile number blank. Select “COMMUNITY EDITION” ==“GET STARTED“.
If you have a Cloud account then you can use it.
Step 2: Check your email and click the “link” in the email & reset your password.…
Docker, Jenkins, CI/CD, & DEV/OPS have been the buzz words for the last several years. You will be seeing this in more often in the job requirements as well. 21 Docker interview questions & answers | DevOps & CI/CD Interview Q&As
Pre-requisite: Docker is installed on your machine for example:
1 |
$ brew cask install docker |