private void checkOutputSpecs(Configuration conf) {
   if (ConfigHelper.getOutputKeyspace(conf) == null
       || ConfigHelper.getOutputColumnFamily(conf) == null) {
     throw new UnsupportedOperationException(
         "you must set the keyspace and columnfamily with setColumnFamily()");
   }
 }