(1) Well Hive and Rhipe dont need cluster, you can run them on single node cluster.
RHipe basically is a framework (in R language a package) which integrates R and Hadoop and you can leverage the power of R on Hadoop. For using Rhipe you don't need to have a cluster, you can run in either way i.e. either in cluster mode or pseudo mode. Even if you have Hadoop cluster of more than 2 nodes you can still use Rhipe in local mode by specifying the property mapered.job.tracker='local'.
You can go to my site (search for) "Bangalore R user groups" and you can see how i have tried solving the problems using Rhipe, i hope you can get a fair idea
(2)Well by Hive means do you mean hive package in R? since this package is somewhat misleading with Hive (hadoop data ware house).
The hive package in R is similar to Rhipe only with some additional functionalites( i have not gone through fully)..The hive package when i saw i thought they have integrated R with Hive, but after seeing the functionality it was not like dat.
Well Hadoop data ware house which is HIVE, is basically if you are interested in some subset of results which should run through subset of data, which you normally do using SQL queries. The queries in HIVE also are very much similar to SQL queries.
TO give you a very simple example: lets say you have 1TB of stock data for various stocks for last 10 years. Now the first thing you will do is, you will store on HDFS and then you create a HIVE table on top of it. Thats it...Now fire whatever query you wish. You also might want to do some complex calculatiion also like finding simple moving average (SMA), in this case you can write your UDF (userr defined function). Besides this you can also use UDTF( User defined table generating function)
(3) If you have one system that means you are running Hadoop in pseudo mode. Moreover you need not worry whether Hadoop is running on pseudo mode or cluster mode,, since Hive needs to be installed only on NameNode, not on the data nodes. Once proper configuration is done,hive will take care of submitting the job on cluster.
Unlike Hive, you need to install R and Rhipe on all the data nodes including NameNode. But then at any point of time if you want to run the job only in NameNode you can do as i mentioned above.
(4) One more thing Rhipe is meant for only batch jobs, that means the MR job will run on the whole data set while Hive you can run on subset of data.
(5)I would like to understand what exactly you are doing in text mining, are you trying to do some king of NLP stuff like Name Entity Recognition using HMM (Hidden Markov Models), CRF(Condition Random fields), feature vectors or SVM (Support Vector machines).
Or you simple trying to to do document clustering, indexing etc
Well there are packages like tm,openNLP,HMM,SVM etc
Regards,
Som Shekhar Sharma