Answer Posted / Vaseem Ahmad
Write Ahead Logging (WAL) or journaling is a database mechanism that ensures data integrity and durability. It works by writing transactions to a log file first and then updating the main database later. If there's an unexpected failure during the write process, the database can be recovered using the log file.nIn Apache Spark, write ahead logging is used in write-ahead logs (WAL) files to ensure that data written by the application is durable and can withstand failures.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers