This repository was archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathHbaseConnManger.java
More file actions
83 lines (69 loc) · 3.6 KB
/
HbaseConnManger.java
File metadata and controls
83 lines (69 loc) · 3.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.intel.databackend.datasources.hbase;
import com.intel.databackend.config.ServiceConfigProvider;
import com.intel.databackend.exceptions.VcapEnvironmentException;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.client.Connection;
import org.apache.hadoop.hbase.client.ConnectionFactory;
import org.apache.hadoop.hbase.security.User;
import org.apache.hadoop.hbase.security.UserProvider;
import org.apache.hadoop.security.UserGroupInformation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.trustedanalytics.hadoop.config.client.Configurations;
import org.trustedanalytics.hadoop.config.client.ServiceType;
import org.trustedanalytics.hadoop.kerberos.KrbLoginManager;
import org.trustedanalytics.hadoop.kerberos.KrbLoginManagerFactory;
import javax.security.auth.Subject;
import javax.security.auth.login.LoginException;
import java.io.IOException;
/**
* Copyright (c) 2015 Intel Corporation
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@Service
class HbaseConnManger {
public static final String AUTHENTICATION_METHOD = "hadoop.security.authentication";
public static final String KERBEROS_AUTHENTICATION = "kerberos";
@Autowired
private ServiceConfigProvider serviceConfigProvider;
public Connection create() throws IOException, LoginException {
Configuration hbaseConfiguration = Configurations.newInstanceFromEnv().getServiceConfig(ServiceType.HBASE_TYPE).asHadoopConfiguration();
try {
KerberosProperties kerberosProperties = serviceConfigProvider.getKerberosCredentials();
if (isKerberosEnabled(hbaseConfiguration)) {
KrbLoginManager loginManager = KrbLoginManagerFactory.getInstance()
.getKrbLoginManagerInstance(kerberosProperties.getKdc(), kerberosProperties.getRealm());
Subject subject = loginManager.loginWithCredentials(kerberosProperties.getUser(),
kerberosProperties.getPassword().toCharArray());
loginManager.loginInHadoop(subject, hbaseConfiguration);
return ConnectionFactory.createConnection(hbaseConfiguration, getUserFromSubject(hbaseConfiguration, subject));
} else {
return ConnectionFactory.createConnection(hbaseConfiguration);
}
} catch (VcapEnvironmentException e) {
throw new IOException(e);
}
}
private static boolean isKerberosEnabled(Configuration configuration) {
return KERBEROS_AUTHENTICATION.equals(configuration.get(AUTHENTICATION_METHOD));
}
private User getUserFromSubject(Configuration configuration, Subject subject) throws IOException {
return UserProvider.instantiate(configuration)
.create(UserGroupInformation.getUGIFromSubject(subject));
}
// private User getNoKrbUserFromSubject(Configuration configuration, String krbUser) throws IOException {
// return UserProvider.instantiate(configuration)
// .create(UserGroupInformation.createRemoteUser(krbUser));
// }
}