`
dalan_123
  • 浏览: 86919 次
  • 性别: Icon_minigender_1
  • 来自: 郑州
社区版块
存档分类
最新评论

spring hadoop系列(五)---spring hadoop hbase之HbaseSynchronizationManager

阅读更多
一、源码如下
/**
* Synchronization manager handling the tracking of Hbase resources (specifically tables). Used either manually or through {@link HbaseInterceptor} to bind a table to the thread.
* Each subsequent call made through {@link HbaseTemplate} is aware of the table bound and will use it instead of retrieving a new instance.
* HbaseSynchronizationManager是作为hbase资源同步管理跟踪(特别是表);可以通过手动管理;也可以结合HbaseInterceptor将table绑定thread
* 随后的操作可以通过表绑定,而不是再重新创建新的对象
* @author Costin Leau
*/
public abstract class HbaseSynchronizationManager {

private static final Log logger = LogFactory.getLog(HbaseSynchronizationManager.class);
    // 创建ThreadLocal 用来存放tableName与Hbase table之间的映射内容
private static final ThreadLocal<Map<String, HTableInterface>> resources = new NamedThreadLocal<Map<String, HTableInterface>>("Bound resources");

/**
* Checks whether any resource is bound for the given key.
* 检查指定的table name 判断与其对应的hbase table resource 是否存在
* @param key key to check
* @return whether or not a resource is bound for the given key
*/
public static boolean hasResource(Object key) {
Object value = doGetResource(key);
return (value != null);
}

/**
* Returns the resource (table) associated with the given key.
* 根据指定的table name  返回对应的hbase table 内容
* @param key association key
* @return associated resource (table)
*/
public static HTableInterface getResource(Object key) {
return doGetResource(key);
}

/**
* Actually checks the value of the resource that is bound for the given key.
* 根据table name  返回对应的hbase table 内容
*/
private static HTableInterface doGetResource(Object actualKey) {
Map<String, HTableInterface> tables = resources.get();
if (tables == null) {
return null;
}
return tables.get(actualKey);
}

/**
* Binds the given resource for the given key to the current thread.
* 将key对应的resources添加到map中,并绑定到当前线程
* @param key the key to bind the value to (usually the resource factory)
* @param value the value to bind (usually the active resource object)
* @throws IllegalStateException if there is already a value bound to the thread
* @see ResourceTransactionManager#getResourceFactory()
*/
public static void bindResource(String key, HTableInterface value) throws IllegalStateException {
Assert.notNull(value, "Value must not be null");
// 判断当前线程中是否包含映射内容
// 若是存在 直接添加新内容
// 若不存在 则先创建map 再将对应的东西 再将map绑定到当前的线程 添加具体内容
Map<String, HTableInterface> map = resources.get();
// set ThreadLocal Map if none found
if (map == null) {
map = new LinkedHashMap<String, HTableInterface>();
resources.set(map);
}
HTableInterface oldValue = map.put(key, value);
if (oldValue != null) {
throw new IllegalStateException("Already value [" + oldValue + "] for key [" + key
+ "] bound to thread [" + Thread.currentThread().getName() + "]");
}
if (logger.isTraceEnabled()) {
logger.trace("Bound value [" + value + "] for key [" + key + "] to thread ["
+ Thread.currentThread().getName() + "]");
}
}

/**
* Unbinds a resource for the given key from the current thread.
* @param key the key to unbind (usually the resource factory)
* @return the previously bound value (usually the active resource object)
* @throws IllegalStateException if there is no value bound to the thread
* @see ResourceTransactionManager#getResourceFactory()
*/
public static HTableInterface unbindResource(String key) throws IllegalStateException {
HTableInterface value = doUnbindResource(key);
if (value == null) {
throw new IllegalStateException("No value for key [" + key + "] bound to thread ["
+ Thread.currentThread().getName() + "]");
}
return value;
}

/**
* Unbinds a resource for the given key from the current thread.
*
* @param key the key to unbind (usually the resource factory)
* @return the previously bound value, or <code>null</code> if none bound
*/
public static Object unbindResourceIfPossible(Object key) {
return doUnbindResource(key);
}

/**
* Actually remove the value of the resource that is bound for the given key.
* 根据指定key(table name) 完成将指定的资源 移除当前线程
*/
private static HTableInterface doUnbindResource(Object actualKey) {
Map<String, HTableInterface> map = resources.get();
if (map == null) {
return null;
}
HTableInterface value = map.remove(actualKey);
// 在解除指定的table name所关联的资源后,防止对应的map不能为空  进行map判断
// Remove entire ThreadLocal if empty...
if (map.isEmpty()) {
resources.remove();
}

if (value != null && logger.isTraceEnabled()) {
logger.trace("Removed value [" + value + "] for key [" + actualKey + "] from thread ["
+ Thread.currentThread().getName() + "]");
}
return value;
}

/**
* Returns the bound tables (by name).
*
* @return names of bound tables
*
*/
public static Set<String> getTableNames() {
Map<String, HTableInterface> map = resources.get();
if (map != null && !map.isEmpty()) {
return Collections.unmodifiableSet(map.keySet());
}
return Collections.emptySet();
}
}
分享到:
评论

相关推荐

    spring-data-hadoop-2.1.1.RELEASE-hadoop24-sources.jar

    Java操作hbase完成hbase数据文件下载

    spring-boot-starter-hbase.zip

    Spring Boot Starter Hbase 是一个专为简化HBase操作而设计的框架组件,它与Spring Boot紧密结合,提供了在Java应用程序中轻松集成和操作HBase数据库的能力。这个压缩包"spring-boot-starter-hbase.zip"包含了所有...

    spring-data-hadoop-1.0.0源码包

    2. **数据访问接口**:Spring Data Hadoop定义了一系列的Repository接口,如`HadoopRepository`,使得开发者可以通过声明式的方式操作Hadoop数据。这些接口的实现通常基于Hadoop的API,如`FileSystem`和`JobConf`,...

    spring-data-hadoop-1.0.1.RELEASE.zip

    Spring Data Hadoop是Spring框架的一部分,它为开发人员提供了一种简单的方式来使用Hadoop生态系统的组件,如HDFS、MapReduce和HBase等。在1.0.1.RELEASE这个版本中,它继续致力于简化Hadoop编程模型,让Java开发者...

    phoenix+spring+hbase

    phoenix +hbase+spring 整合技术 phoenix +hbase+spring 整合技术 phoenix +hbase+spring 整合技术 根据需要 下载 集成的jar phoenix-core-4.13.0-HBase-0.98.jar

    spring-data-hadoop官方文档

    Spring Data Hadoop官方文档涉及了多个关于如何使用Spring Data Hadoop框架及其与Hadoop生态系统的集成的相关知识点。以下为文档中提到的主要知识点: 1. **Hadoop基本配置、MapReduce和分布式缓存**: - Spring ...

    Spring-Boot-HBase-RESTful:Spring-Boot-Hbase-RESTful

    Spring-Boot-HBase-RESTful Spring-Boot-HBase-RESTful ##安装 brew install hadoop hbase zookeeper## HBase入门 start-hbase.sh start sudo /usr/local/Cellar/zookeeper/3.4.8/bin/zkServer start参考示例代码: ...

    hbase jar包.zip

    首先,hbase-client-2.2.4.jar是HBase客户端的核心库,它提供了与HBase服务器交互的API,包括数据的读写、扫描、行键操作等。这个版本的HBase客户端已经对HBase 2.2.4进行了优化,确保了与服务端的兼容性和性能。 ...

    spring-hadoop 环境集成

    在Spring 3.0版本之后,Spring Data Hadoop开始被引入,为开发者提供了一套声明式的编程模型,用于处理Hadoop的MapReduce任务、HDFS操作以及HBase等组件的集成。 在集成Spring 3和Hadoop 0.2.0时,首先需要确保安装...

    基于SpringMVC+Spring+HBase+Maven搭建的Hadoop分布式云盘系统.zip

    这是一个基于Java技术栈,利用SpringMVC、Spring、HBase和Maven构建的Hadoop分布式云盘系统的项目。该项目旨在实现一个高效的、可扩展的云存储解决方案,利用Hadoop的分布式特性来处理大规模数据存储需求。 首先,...

    spring-hadoop.pdf

    - **使用DAO**:Spring for Apache Hadoop提供了对HBase的数据访问对象支持,简化了与HBase的交互。 ```java public interface HBaseDao extends HBaseOperations { // 定义HBase操作方法 } ``` #### 六、与Hive...

    spring data hadoop reference

    Spring Hadoop 提供了一系列工具和 API 来与 HBase 集成,这使得开发者可以更容易地访问 HBase 数据。 #### 五、Hive 集成 ##### 5.1 启动 Hive Server Hive 是一个基于 Hadoop 的数据仓库工具,可以使用 SQL 查询...

    基于springboot集成hbase过程解析

    * hbase-client:提供了HBase的客户端依赖项,版本号为1.1.2。 * spring-data-hadoop:提供了Hadoop的依赖项,版本号为2.5.0.RELEASE。 知识点3:HBase的配置 HBase的配置可以通过XML文件或注解方式进行。下面是一...

    spring-hadoop官方文档

    Spring for Apache Hadoop 提供了 Spring 框架用于创建和运行 Hadoop MapReduce、Hive 和 Pig 作业的功能,包括 HDFS 和 HBase。如果你需要简单的基于 Hadoop 进行作业调度,你可添加 Spring for Apache Hadoop 命名...

    搭建hadoop单机版+hbase单机版+pinpoint整合springboot.zip

    安装步骤包括解压HBase的tar.gz文件,配置`hbase-site.xml`以指向Hadoop的配置,然后启动HBase的各种进程(RegionServer、Master等)。通过HBase shell或者Java API,我们可以测试插入和查询数据,验证HBase的功能。...

    spring操作hbase demo

    在IT行业中,Spring框架是Java领域最常用的轻量级开源框架之一,而HBase则是一个分布式、基于列族的NoSQL数据库,适用于处理大规模数据。本教程将详细讲解如何使用Spring来操作HBase,这对于大数据处理和分布式系统...

    hadoop-2.5.2.tar.gz

    Hadoop 2.5.2是在Hadoop 2.x系列中的一个稳定版本,它引入了许多重要的改进和优化,以提高性能、可靠性和易用性。 Hadoop主要由两个关键组件构成:HDFS(Hadoop Distributed File System)和MapReduce。HDFS是一种...

    spring与hbase集成

    Spring 是一个强大的 Java 应用框架,提供了丰富的依赖注入、AOP(面向切面编程)和模块化功能,而 HBase 是基于 Hadoop 的分布式列式数据库,适用于实时读写和大规模数据存储。下面我们将详细探讨如何将 Spring 与 ...

    基于hadoop+hbase+springboot实现分布式网盘系统.zip

    在构建分布式网盘系统时,通常会涉及到多个技术栈,如大数据处理框架Hadoop、分布式数据库HBase以及微服务开发框架Spring Boot。本项目“基于hadoop+hbase+springboot实现分布式网盘系统”旨在利用这些技术搭建一个...

Global site tag (gtag.js) - Google Analytics