mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 05:18:58 +00:00
(converter) Swallow errors in parquet data stream
This commit is contained in:
parent
ff7d1a250e
commit
bcecc93e39
@ -46,8 +46,14 @@ public class ParquetSerializableCrawlDataStream implements AutoCloseable, Serial
|
|||||||
createDomainRecord(nextRecord);
|
createDomainRecord(nextRecord);
|
||||||
wroteDomainRecord = true;
|
wroteDomainRecord = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
createDocumentRecord(nextRecord);
|
createDocumentRecord(nextRecord);
|
||||||
}
|
}
|
||||||
|
catch (Exception ex) {
|
||||||
|
logger.error("Failed to create document record", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
return !nextQ.isEmpty();
|
return !nextQ.isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user