in google’s bigtable context, what does a commit log mean? and what is the use of a commit log?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In any database context, a “commit” is the application of a single transaction to the DB. A commit log is a record of transactions. It’s used to keep track of what’s happening, and help with e.g. disaster recovery – generally, all commits are written to the log before being applied, so transactions that were in flight when the server went down can be recovered and re-applied by checking the log.