Session currentSession = HibernateSessionFactory.currentSession();
fullTextSession=Search.getFullTextSession(currentSession);
Transaction beginTransaction = fullTextSession.beginTransaction();
ExtendedSearchIntegrator integrator = ContextHelper.getSearchIntegrator(fullTextSession);
integrator.getWorker().performWork(new DeleteByQueryWork(PojoIndexedTypeIdentifier.convertFromLegacy(MyBigMassDataTable.class),new SingularTermDeletionQuery("columnname","selectfordelete")),new EventSourceTransactionContext((EventSource) currentSession));
fullTextSession.getTransaction().commit();