Indexing error log
Record errors that occur during document indexing.
Specifically, this log records errors that occur during document validation. A common scenario is where a non-stored copy field is copied into a field with an incompatible type.
JMX Analog
None.
Schema
CREATE TABLE IF NOT EXISTS dse_perf.solr_indexing_errors ( node_ip inet, core text, date timestamp, time timeuuid, document text, field_name text, field_type text, message text, PRIMARY KEY ((node_ip, core, date), time) ) WITH CLUSTERING ORDER BY (time DESC)
Field | Type | Purpose |
---|---|---|
node_ip |
inet |
Node address. |
core |
text |
search core name, such as keyspace.table. |
date |
timestamp |
Midnight on the mm/dd/yyyy the error occurred. |
time |
timeuuid |
Timestamp for the time the error occurred. |
document |
text |
The primary key for the table row corresponding to the document. For example: [foo, bar, baz] for a complex PK, or foo for a single element PK. |
field_name |
text |
Name of the field that caused the validation error. |
field_type |
text |
Name of the field that caused the validation error, such as solr.StrField. |
message |
text |
Error message. |
Indexing validation errors recorded on 10/17/2014 for core keyspace.table for at node 127.0.0.1:
SELECT * FROM solr_indexing_errors WHERE core = 'keyspace.table' AND date = '2014-10-17' AND node_ip = '127.0.0.1';
Most recent 5 indexing validation errors recorded on 10/17/2014 for core keyspace.table for at node 127.0.0.1:
SELECT * FROM solr_indexing_errors WHERE core = 'keyspace.table' AND date = '2014-10-17' AND node_ip = '127.0.0.1' ORDER BY time DESC LIMIT 5;