Results 13 comments of Cesar Andres

@decebals I started using PF4J a couple of months ago and I am using Gradle, the demo was a big help for me. I opened https://github.com/decebals/pf4j/pull/177 to fix the demo...

@disoardi Please share your the Solr table configuration. Please also share the versions of Solr, Hive/Tez and Yarn (how many Yarn node do you have?)

Do you have only one Zookeeper node? Usually the minimum recommended amount of Zookeeper nodes is 3. The zk string should be something like: ``` 'solr.zkhost' = 'host1:2181,host2:2181,host3:2181/solr' ``` Can...

To compile with java 1.7, please use the following commit: https://github.com/lucidworks/hive-solr/commit/f39cd7b0d5ba02cb0e06f4230d21c0d2a83cc346 `hive-solr` in master was updated to Solr 6.x and it now only works with java 1.8

The problem is with the submodule. You need to change it too. use this commit for the `solr-hadoop-common` https://github.com/lucidworks/solr-hadoop-common/commit/b484c84223d769a1231d091bf44056794bf65439

@jalongar I think the query should be something like:`'solr.query' = '*:*',` (looks like a typo). Please try to add the kerberos properties at the hive shell level. ``` hive> add...

Can you share the schema of the hive table? I suggest you to use Solr dynamic field for the hive table. Example ``` CREATE EXTERNAL TABLE solr (id string, string_field_s...

you can try changing the schema of the table, ``` CREATE EXTERNAL TABLE sales_table (id string, vin_s string, make_nm_s string,series_nm_s string,business_month_s string,msrp_s string,inctv_amt_s string ) ``` I suspect that the...

@vishnucg can you please open a new issue with your question?

@gseshwar Not sure if it is a typo but the second step you have a different table: ``` LOAD DATA LOCAL INPATH '/home/Solr1.csv' OVERWRITE INTO TABLE ER_ENTITY1; ``` ER_ENTITY1 ->...