public void enqueue(IndexOperation indexOp) throws AnalyticsException {
   try {
     this.primaryQueue.enqueue(indexOp.getBytes());
   } catch (IOException e) {
     throw new AnalyticsException("Error in index data enqueue: " + e.getMessage(), e);
   }
 }