in modules/spark/src/main/java/org/apache/fluo/recipes/spark/FluoSparkHelper.java [286:294]
public BulkImportOptions setAccumuloClient(AccumuloClient client) {
Objects.requireNonNull(client);
try {
this.conn = Connector.from(client);
} catch (AccumuloSecurityException | AccumuloException e) {
throw new RuntimeException(e);
}
return this;
}