I have 2 servers one running analytics node(10.3.11.90) and other running solr node(10.3.11.91). Now i loaded the data into cassandra database through java code(ran in 10.3.11.90) . Schema for my dataset is as below:
CREATE KEYSPACE mapping
with strategy_options={replication_factor:1}
and placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy';
use mapping;
create column family chemicals
with key_validation_class=LongType
and comparator=AsciiType
and column_metadata=[
{ column_name: 'name', validation_class: AsciiType }
{ column_name: 'code', validation_class: AsciiType }];
I want to have solr serch with the data present in mapping keyspace -- What is the correct procedure. (Note: While running the solr demo on wikipedia I get the front pagee but data is not being loaded on right side)
