Couchbase view data not up to date

Hi all,

I’ve created a view to get some transaction records and it cannot return the latest record recently, I’ve located the issue in function header from the view, when I put the space before the " meta", all data will come back, anyone know WHY?

Not working
function(doc,meta) {

Working
function(doc, meta) {

I’ve the other finding, I’ve around 35 views under this “_design/dev_main” directory,

If I move the view to the other directory, like “_design/dev_main_test”, all the data from the view will be back again.

I found the root cause finally, one of the view got exception for some of the transaction data which impacted the other view.