Member since
02-08-2017
33
Posts
1
Kudos Received
0
Solutions
01-13-2021
10:37 PM
I find the solution in HDP 2.6.5 the ssh prort for the sandbox vm is the standard port 22.
... View more
11-21-2017
08:18 AM
@Jay Kumar SenSharma thanks
... View more
07-29-2017
05:33 AM
Dear @Marco Gaido, I deleted my Json files in hdfs and then I ingested some other tweets in json format. Now, hive is working well. thanks a lot
... View more
04-05-2017
05:26 AM
Hi @Jay SenSharma Thank you for excellent notes. I solved the problem before reading your notes as follows: from hdfs import InsecureClient
client = InsecureClient('http://localhost:50070')
# for reading a file
with client.read('/tmp/tweets_staging/tweets-082940117.json') as reader:
features = reader.read()
# for writing a file
with client.write('/tmp/tweets_staging/1.json', overwrite=True) as writer:
writer.write(features)
but I am going to try your solution too. Regards, Shanghoosh
... View more
02-28-2017
04:31 AM
Thank you @Artem Ervits Yes, I should wait for Ambari 2.5.
... View more
02-20-2017
11:27 PM
Thanks for the update, glad to hear you managed to make it working!
... View more
04-06-2017
08:16 AM
@artem : thanks for tuto Do you know about this error with oozie : "oozie error workflow manager kerberos" ? thanks
... View more
02-15-2017
11:11 AM
Thank you @Ali Bajwa for good tutoral. I am trying this example with a difference, My nifi is local and I try to put tweets in a remote Solr. Solr is in a VM that contains Hortonworks sandbox. Unfortunately I am getting this error on PutSolrContentStream processor: PutSolrContentStream[id=f6327477-fb7d-4af0-ec32-afcdb184e545] Failed to send StandardFlowFileRecord[uuid=9bc39142-c02c-4fa2-a911-9a9572e885d0,claim=StandardContentClaim [resourceClaim=StandardResourceClaim[id=1487148463852-14, container=default, section=14], offset=696096, length=2589],offset=0,name=103056151325300.json,size=2589] to Solr due to org.apache.solr.client.solrj.SolrServerException: IOException occured when talking to server at: http://172.17.0.2:8983/solr/tweets_shard1_replica1; routing to connection_failure: org.apache.solr.client.solrj.SolrServerException: IOException occured when talking to server at: http://172.17.0.2:8983/solr/tweets_shard1_replica1; Could you help me? thanks, Shanghoosh
... View more