I have updated mongo and now in the log the following error appears: Use of the aggregate command without the cursor option is deprecated
Mo
Replace this : $this->db->{$collection}->aggregate($options); with below code by adding cursor array. $this->db->{$collection}->aggregate($options,array('cursor'=>array('batchSize' => 1)));