Featured Post

8 Ways to Optimize AWS Glue Jobs in a Nutshell

Image
  Improving the performance of AWS Glue jobs involves several strategies that target different aspects of the ETL (Extract, Transform, Load) process. Here are some key practices. 1. Optimize Job Scripts Partitioning : Ensure your data is properly partitioned. Partitioning divides your data into manageable chunks, allowing parallel processing and reducing the amount of data scanned. Filtering : Apply pushdown predicates to filter data early in the ETL process, reducing the amount of data processed downstream. Compression : Use compressed file formats (e.g., Parquet, ORC) for your data sources and sinks. These formats not only reduce storage costs but also improve I/O performance. Optimize Transformations : Minimize the number of transformations and actions in your script. Combine transformations where possible and use DataFrame APIs which are optimized for performance. 2. Use Appropriate Data Formats Parquet and ORC : These columnar formats are efficient for storage and querying, signif

2 Exclusive Ways to Start Kafka Services

The Kafka services start or stop you can do in two ways. Those are Systemd and Systemctl (sudo user). Below, you will find the commands for these two methods.


2 Ways to start Kafka Services


How to start/stop Kafka service

Here are exclusive ways. With these, you can start or stop Kafka services.  

1. Systemd service

The concept of unit files people who worked on Linux servers have familiarity with it. Also, they know creating the unit file to use by systemd.

To summarize, it initializes and maintains components throughout the system. This means that you can define ZooKeeper and Kafka as unit files, which then will be used by systems.


Commands

The first command starts the service, and the second command stops the service.

... [Service] ...

ExecStart=/opt/kafkainaction/bin/zookeeper-server-start.sh
ExecStop= /opt/kafkainaction/bin/zookeeper-server-stop.sh


2. Systemctl by Sudo (root) user

The root user can start or stop the Kafka services. This is more like front-end processing. This way of executing is called systemctl.

Commands

The first command starts the Zookeeper and the second one starts Kafka.

$sudo systemctl start zookeeper
$sudo systemctl start kafka

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

How to Check Kafka Available Brokers

SQL Query: 3 Methods for Calculating Cumulative SUM