I have to remove large amount of features (about 100 mln records) from Geomesa data store as fast as possible. I tried to use:
String cql = DATE_TIME_FIELD + " BEFORE " +
strCurrentDateTime + ") AND " + "(" + TIMING_FIELD + " > 0)";
Filter filter = CQL.toFilter(cql);
featureStore.removeFeatures(filter)
However it works too slow. Both DATE_TIME_FIELD and TIMING_FIELD have indexes. Is there some another ways?
Thank you!