Member since
06-07-2016
923
Posts
322
Kudos Received
115
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3960 | 10-18-2017 10:19 PM | |
4228 | 10-18-2017 09:51 PM | |
14553 | 09-21-2017 01:35 PM | |
1748 | 08-04-2017 02:00 PM | |
2332 | 07-31-2017 03:02 PM |
05-26-2017
02:30 PM
1 Kudo
@Rajeev Vandakar Partitions are created to prune data for efficient queries. You cannot set authorization on partition level. You can however, create views on your table and then grant access to views to different groups. You can also set column level authorization but not partition and it doesn't make sense to have authorization on a partition where you might be partitioning based on let's say date, state or something like that. For example, if you want people to access data for certain states only, in those case you can use column level authorization.
... View more
05-23-2017
01:25 PM
1 Kudo
@Gokul Dighe Can you please check the permissions on your warehouse directory and Ranger permissions for the failed users. I think the issue is in your destination and not source.
... View more
05-22-2017
08:26 PM
@Rodrigo Rondena So you want to distcp data from one cluster to another cluster and the two clusters are on different versions. Is that right? Are they on same major version, for example, 2.x and 2.y? In this case you just simply use hdfs protocol. To distcp between two different major versions, use webhdfs protocol. Check the following link: https://hadoop.apache.org/docs/current/hadoop-distcp/DistCp.html#Copying_Between_Versions_of_HDFS
... View more
05-22-2017
08:02 PM
@Adda Fuentes When you infer the schema, do you store the schema in content (default) or send it to attribute "inferred.avro.schema"? Can you try setting the inferred schema to attribute? Also set the input content type explicitly to json if it is not.
... View more
05-22-2017
03:18 AM
@Francisco Pires What is the encoding of incoming file? ReplaceText default encoding is UTF-8 which I think should be sufficient for this. But you are also writing raw file. Check content of the flow file by looking at data provenance. I think the raw file is likely being written the right way but whatever you are using to read the file is not showing you the content in the encoding you need to read this data properly.
... View more
05-21-2017
04:49 AM
@amine adi For nifi "127.0.0.1" is its own host. Not your linux host. How do you connect to linux host from your sandbox? For example if you want to scp a file from your sandbox to your linux host, what ip address/host name wil you use? Use that instead of 127.0.0.1 from Nifi to connect to Cassandra.
... View more
05-19-2017
05:23 PM
@amine adi So Cassandra is running on same node as Nifi? Is that right?
... View more
05-18-2017
08:47 PM
@Lucy zhang There was a bug in virtualbox that I shared in above jira. That's why you get that issue.
... View more
05-18-2017
07:19 PM
@Lucy zhang
This is a virtualbox error and not HDF. Have you deleted your previous VM? All cleaned up? One work around for your issue is to set CPU's for this VM to 1 (you probably don't like it but at least it will make it work). Please see the following JIRA for your issue. https://tickets.puppetlabs.com/browse/LEARNVM-270
... View more
05-17-2017
08:31 PM
2 Kudos
@Eyad Garelnabi You mean other than using DBCPConnectionPool service? I think connection pooling is used to reuse the connection but connection is closed and returned to the pool.
... View more