Friday, March 13, 2020

Configuring the Zookeeper Properties Meaning

Following are  the default properties meaning.



tickTime
Length of a single tick, in milliseconds. ZooKeeper uses tick as the basic time unit to regulate timeouts. Default is 2000.
initLimit
Number of ticks after which the ZooKeeper server times out during the synchronization process. Default is 10.
syncLimit
Maximum number of ticks for the followers to wait to synchronize with the leader before the followers time out. Default is 5.
dataDir
Absolute path for the ZooKeeper to store the in-memory snapshots of the data and the transactional log of updates to the database.
clientPort
Port on which the ZooKeeper server listens for client connections

No comments:

Post a Comment

Recent Post

Databricks Delta table merge Example

here's some sample code that demonstrates a merge operation on a Delta table using PySpark:   from pyspark.sql import SparkSession # cre...