1973
Posts
1225
Kudos Received
124
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1841 | 04-03-2024 06:39 AM | |
| 2857 | 01-12-2024 08:19 AM | |
| 1580 | 12-07-2023 01:49 PM | |
| 2342 | 08-02-2023 07:30 AM | |
| 3229 | 03-29-2023 01:22 PM |
07-02-2016
01:42 PM
got it last night it's missing the bar with clone button, download, trash can, ...
... View more
07-01-2016
11:43 PM
In the sandbox, Zeppelin Ambari view cuts off part of the notebook and removes the top toolbar functionality http://localhost:8080/#/main/views/ZEPPELIN/1.0.0/AUTO_ZEPPELIN_INSTANCE You lose the top bar that allows cloning, saving interpreter and much of the functionality. It's better to go right to the Zeppelin UI.
... View more
Labels:
- Labels:
-
Apache Zeppelin
07-01-2016
09:23 PM
2 Kudos
Weird. I renamed the file OVA and it worked!?!?!??!?!
... View more
07-01-2016
09:22 PM
md5 "Hortonworks Sandbox with HDP 2.5 Technical Preview.ovf"
MD5 (Hortonworks Sandbox with HDP 2.5 Technical Preview.ovf) = 5830c0c5737083c37597d2e30540aba1
... View more
07-01-2016
08:32 PM
1 Kudo
I follow the examples from 3 Pillar Global Post and Apache Hbase Blog Post and then updated for newer versions. To write an HBase Coprocessor you need Google Protocol Buffers. To use recent versions, on a Mac you need to install v2.50 as that works with HBase: brew tap homebrew/versions
brew install protobuf250
Check your version protoc
--version Source Code with Maven Build (pom.xml) is here. You will need Maven and Java 7 (or newer) JDK for compilation. Testing on Hadoop export HADOOP_CLASSPATH=`hbase classpath`
hadoop jar hbasecoprocessor-1.0.jar com.dataflowdeveloper.hbasecoprocessor.SumEndPoint
Upload your Jar to HDFS hadoop fs -mkdir /user/tspann
hadoop fs -ls /user/tspann hadoop fs -put hbasecoprocessor-1.0.jar /user/tspann hadoop fs -chmod 777 /user/tspann/hbasecoprocessor-1.0.jar Install Dynamically disable 'stocks'
alter 'stocks',
'coprocessor'=>'hdfs://sandbox.hortonworks.com/user/tspann/hbasecoprocessor-1.0.jar|com.dataflowdeveloper.hbasecoprocessor.SumEndPoint|1001|arg1=1'
enable 'stocks'
describe 'stocks'
Testing Locally java -classpath `hbase classpath`:hbasecoprocessor-1.0.jar com.dataflowdeveloper.hbasecoprocessor.SumEndPoint Checking Table After Installation [root@sandbox demo]# hbase shell
HBase Shell; enter
Version
1.1.2.2.4.0.0-169, r61dfb2b344f424a11f93b3f086eab815c1eb0b6a, Wed Feb 10
07:08:51 UTC 2016
hbase(main):001:0> describe 'stocks'
Table stocks is
ENABLED
stocks,
{TABLE_ATTRIBUTES => {coprocessor$1 =>
'hdfs://sandbox.hortonworks.com/user/tspann/hbasecoprocessor-1.0.jar|com.dataflowdeveloper.hbasecoprocessor.SumEndPoint|1001|arg1=1'} COLUMN FAMILIES
DESCRIPTION {NAME => 'cf',DATA_BLOCK_ENCODING => 'NONE', BLOOMFILTER => 'ROW', REPLICATION_SCOPE
=> '0', COMPRESSION => 'NONE', VERSIONS => '1', TTL => 'FOREVER',
MIN_VERSIONS => '0', KEEP_DELETED_CELLS => 'FALSE', BLOCKSIZE =>
'65536', IN_MEMORY => 'false', BLOCKCACHE => 'true'}
1 row(s) in 0.3270
seconds
You can see the coprocessor has been added and is enabled.
References
https://github.com/larsgeorge/hbase-book/blob/master/ch04/src/main/java/coprocessor/RowCountEndpoint.java https://github.com/Huawei-Hadoop/hindex https://github.com/apache/hbase/tree/branch-1.0/hbase-examples https://github.com/apache/hbase/blob/branch-1.0/hbase-examples/src/main/java/org/apache/hadoop/hbase/coprocessor/example/RowCountEndpoint.java http://bigdatazone.blogspot.com/2015/05/hbase-coprocessor-using-protobuf-250.html http://hbase.apache.org/book.html#cp http://hbase.apache.org/book.html#cp_loading https://hbase.apache.org/apidocs/org/apache/hadoop/hbase/coprocessor/package-summary.html http://hbase.apache.org/book.html#cp_example http://hbase.apache.org/xref/org/apache/hadoop/hbase/coprocessor/example/RowCountEndpoint.html https://github.com/apache/hbase/blob/branch-1.1/hbase-examples/pom.xml https://community.hortonworks.com/questions/2577/hbase-coprocessor-and-security.html https://www.3pillarglobal.com/insights/hbase-coprocessors#(endpoints-coprocessor) https://blogs.apache.org/hbase/entry/coprocessor_introduction https://github.com/dbist/HBaseUnitTest
... View more
Labels:
07-01-2016
07:29 PM
I downloaded an hour ago and tried to Add to the newest version of Virtual Box 5.0.24 on Mac El Capitain. An earlier version was working then wouldn't start all of the HDFS and YARN processes needed (Master Node, ...) Do I need a different vbox? I was running 2.4 with no issues.
... View more
Labels:
07-01-2016
06:16 PM
.NET SDK for Hadoop https://hadoopsdk.codeplex.com/wikipage?title=Simple%20Linq%20To%20Hive%20Query&referringTitle=Home .NET Driver for
Phoenix https://github.com/Azure/hdinsight-phoenix-sharp https://www.nuget.org/packages/Microsoft.Phoenix.Client/1.0.0-preview .NET for Kafka https://cwiki.apache.org/confluence/display/KAFKA/Clients#Clients-.net Mobius: C# Binding for Spark https://github.com/Microsoft/Mobius Spark for .NET
Developers Introduction https://msdn.microsoft.com/en-us/magazine/mt595756.aspx You can also look at
https://github.com/MSRCCS/Prajna
... View more
07-01-2016
06:16 PM
.NET SDK for Hadoop https://hadoopsdk.codeplex.com/wikipage?title=Simple%20Linq%20To%20Hive%20Query&referringTitle=Home .NET Driver for
Phoenix https://github.com/Azure/hdinsight-phoenix-sharp https://www.nuget.org/packages/Microsoft.Phoenix.Client/1.0.0-preview .NET for Kafka https://cwiki.apache.org/confluence/display/KAFKA/Clients#Clients-.net Mobius: C# Binding for Spark https://github.com/Microsoft/Mobius Spark for .NET
Developers Introduction https://msdn.microsoft.com/en-us/magazine/mt595756.aspx You can also look at
https://github.com/MSRCCS/Prajna
... View more
06-30-2016
11:50 PM
1 Kudo
Anyone else noticing most of the services are stopped or partially running on first run? Is there a list that should be running? What's a good minimum number of service to run.
... View more
Labels:
- Labels:
-
Hortonworks Data Platform (HDP)
06-30-2016
09:50 PM
you can try both and look at the DAGs in the Spark History UI. Most likely performance will be the same. what's your SQL, there are some optimizations
... View more