Member since
02-11-2014
162
Posts
2
Kudos Received
4
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4149 | 12-04-2015 12:46 PM | |
5686 | 02-12-2015 01:06 PM | |
4504 | 03-20-2014 12:41 PM | |
8756 | 03-19-2014 08:54 AM |
04-28-2014
12:30 PM
Hi, Can I run multiple instances of cloudera manager pointing to a different oracle database instance in the same oracle cluster with different SIDs.Say I create 3 oracle db instances (o1,o2 and o3) within the same cluster for my dev and qa instances.Is it supported?. Thanks, Nishanth
... View more
Labels:
- Labels:
-
Cloudera Manager
04-25-2014
01:05 PM
Thank you.If I am not wrong can I can also put my java code to parse the the soap message here.I am a java guy,so it seems to be easy for me.
... View more
04-24-2014
02:29 PM
Hi , I understood that part.But let us say i extract an xml from the hbase cell with following elements(name,city,country) and I want to index the solr .My solr schema also has fields (name,city and country).Now I need to parse the xml ,ge these fileds and index it to solr. extractHBaseCells { mappings : [ { inputColumn : "messages:name" outputField : "name" type : String source : value } { inputColumn : "messages:city" outputField : "city" type : String source : value } { inputColumn : "messages:country" outputField : "country" type : String source : value } ] } This would have been possible If was able to retrieve data from hbase in this format.But what extractHbaseCell would give me is an xml file.I am loking for a way to parse this using xquery and then assign then assign values to solr field.
... View more
04-24-2014
01:58 PM
Hi, I am trying to get more information on extracHbaseCells command.How ever I am unable to find it in the morphline reference guide.Can some one please let me know where I can find the documentation on this.The following is the refernce guide Iam looking at. http://cloudera.github.io/cdk/docs/0.9.1/cdk-morphlines/morphlinesReferenceGuide.html
... View more
Labels:
- Labels:
-
Apache HBase
04-17-2014
02:54 PM
Hi It did work and I am able to index the documents now. How ever when I go to solr admin page and query for the data ,I get an error message as below.I can see an increase in the number of documents indexed each time I put add a row into hbase. This is what I have done in general. 1.set up lily. 2.Insert record into hbase 3.navigate to solr admin UI and created a solr core for my collection. I tried restarting the solr service once I saw this error but still keeps getting it. error": { "msg": "no servers hosting shard: ", "code": 503 }
... View more
04-17-2014
09:26 AM
Hi , I am trying to register a lily indexer after creating the solr collection.I am getting the below warning once I run the command.Apparently the log says zoo keeper connection string not specified.I am using cdh 4.6 and search 1.2. Can some one help? hbase-indexer add-indexer -n trial1indexer -c indexer-config.xml -cp solr.zk=xxx:2181,yyy:2181,bbb:2181,kkk:2181,ccc:2181,ddt:2181/solr -cp solr.collection=trial1_collection LOGS: SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/opt/cloudera/parcels/SOLR-1.2.0-1.cdh4.5.0.p0.4/lib/hbase-solr/lib/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/usr/lib/zookeeper/lib/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. ZooKeeper connection string not specified, using default: localhost:2181 [WARN ][16:19:03,775][host:2181)] org.apache.zookeeper.ClientCnxn - Session 0x0 for server null, unexpected error, closing socket connection and attempting reconnect java.net.ConnectException: Connection refused at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:739) at org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:350) at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1068) Indexer added: trial1indexer
... View more
Labels:
04-09-2014
03:45 PM
HI All, I am getting the below error now after doing some modifications.Any idea?. org.apache.hadoop.net.ConnectTimeoutException: 20000 millis timeout while waiting for channel to be ready for connect. ch : java.nio.channels.SocketChannel[connection-pending remote=xx.xx.yy.zz:60020
... View more
04-09-2014
12:03 PM
Yes Kevin I am able to connect using the Hbase shell.I was able to create tables and insert data.
... View more
04-09-2014
11:10 AM
Ok.Could that inetranally relate to org.apache.hadoop.hbase.MasterNotRunningException.I am seeing this now in my IDE when I run the hava client.I have also updated the jar version I am using in the baove post.ALso there is no secuirty setting in my hbase-site.xml.Just checked this.
... View more
04-09-2014
11:05 AM
Hi Kevin, I do not want to implement security in hbase at this point.These are the hbase dependecies I am pulling down from cloudera repo.Is that all required to connect to cdh hbase cluster from a java API. <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase</artifactId> <version>0.94.15-cdh4.6.0</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>2.0.0-cdh4.6.0</version> </dependency> Can you please clarify if the secuirty check still needs to be done.Thanks for your help.None of the security tags are present in my hbase-site.xml created by cloudera manager.
... View more