Member since
05-30-2018
1322
Posts
715
Kudos Received
148
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 4066 | 08-20-2018 08:26 PM | |
| 1960 | 08-15-2018 01:59 PM | |
| 2388 | 08-13-2018 02:20 PM | |
| 4135 | 07-23-2018 04:37 PM | |
| 5044 | 07-19-2018 12:52 PM |
11-04-2016
02:21 AM
2 Kudos
I use -u and -e here is example [hive@sunman1 ~]$ beeline -u jdbc:hive2://localhost:10000 -n hive -e 'show tables'
Connecting to jdbc:hive2://localhost:10000
Connected to: Apache Hive (version 1.2.1000.2.5.0.0-1245)
Driver: Hive JDBC (version 1.2.1000.2.5.0.0-1245)
Transaction isolation: TRANSACTION_REPEATABLE_READ
+-----------+--+
| tab_name |
+-----------+--+
| airline1 |
+-----------+--+
1 row selected (0.215 seconds)
Beeline version 1.2.1000.2.5.0.0-1245 by Apache Hive
Closing: 0: jdbc:hive2://localhost:10000
[hive@sunman1 ~]$
... View more
11-04-2016
02:05 AM
1 Kudo
I would say go with 256 gb ram. but 128 is def do-able and often seen in the field. Go with Dual 10Gbps NIC. I would go with at least 12-2TB drives broken down into 2 OS drives with raid-1 mirror. 6 drives in raid-10 (metadata) 4 spare drives
... View more
11-04-2016
01:50 AM
1 Kudo
I created a phoenix table with 100 columns. I forgot what the primary key for the table. The primary key was build with at least 5 to 6 columns, can't say for sure. Any easy way to have phoenix tell me what the primary key is on a table?
... View more
Labels:
- Labels:
-
Apache Phoenix
11-04-2016
12:39 AM
1 Kudo
on a hadoop cluster, yes. you will need to avoid setting the path variable and maintain the path yourself based on which version of pig you want to use.
... View more
11-04-2016
12:22 AM
Can you check if the file system is clean? run fsck -y yourdisk/mountpoints
... View more
11-01-2016
02:58 PM
I am interested in using ListenSMTP processor. The use case is the exchange team will forward emails via SMTP forwarder and expects listening side (nifi) to handle smtp protocol. The use case is working well during testing and POC. However I have 3 nodes and each has ListenSMTP processor running. If I have exchange forward messages to a specific DNS:port, does nifi load balance it self by routing smtp message to other slaves nodes, basically so not all messages have to be consumed by single slave node ListenSMTP processor. Or do I need a load balancer which will give me single DNS:Port, and it will route message to slave nodes in some algorithm type (ie round robin)? your insights appreciated.
... View more
Labels:
- Labels:
-
Apache NiFi
11-01-2016
02:52 PM
1 Kudo
Does NiFi have a processor to post messages to IBM MQseries? I read this post: https://community.hortonworks.com/questions/1142/does-nifi-have-the-ability-to-connect-to-ibm-mq.html but it seems to be around consuming message. I want ability to post message to mq series. any ideas?
... View more
Labels:
- Labels:
-
Apache NiFi
11-01-2016
02:16 PM
@Zack Riesland to use scripts I would go with oozie.
... View more
11-01-2016
02:12 PM
@Zack Riesland many ways to do this, but .02 easiest with oozie. Oozie has a hive action where you can specify the hsql you want to run decision points after each step, ie failure do this, success do that. It is simple workflow. OBTW, the new workflow manager is available in 2.5 where you can orchestrate this workflow via UI Another option is NiFi. You can execute series of hive scripts and make decision points after each script based on if it failed or succeeded.
... View more
10-31-2016
03:56 PM
Just to close this out as i was able to get info required. Sharing RDD and context outside of zeppelin is not supported.
... View more