Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
540 views
in Technique[技术] by (71.8m points)

node.js - Firebase realtime database transaction handler gets called twice most of the time

I am using transactions to write to a specific location in firebase realtime database with firebase admin api in my nodejs app. I observed that the transaction handler gets called twice, even when there are no other clients using the database.

Following is a minimal code which displays this behavior.

firebaseAdmin.database().ref('some/path').transaction(currentData => {
    console.log('transaction handler got called');
    return {'abc': 'def'};
}, null, false).then(value => {
    console.log('transaction complete')
}).catch(reason => {
    console.log('transaction failed. ' + reason);
});

I can observe that transaction handler got called gets logged twice for each execution of above code.

I understand that the handler can get called multiple times if some other client writes to the db path in the window between currentData is read for a transaction and the new data is attempted to be committed to the db path. But, there are no other clients in my case, so I cannot understand why the transaction handler needs to get called twice.

Does anyone know what is the reason for this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...