一. 简介

  1. titan:存储,查询图形结构的数据库。分布式集群环境下,可支持数以千亿级别的点和边,同时支持上千个并发的实时的复杂图形遍历,支持ACID事务。
  2. 架构:支持以下3方面的自由组合

    (1)节点和边的存储:

         Apache Cassandra

         Apache HBase

         Oracle BerkeleyDB(测试使用)

    (2)图形分析组件:

         Spark

         Giraph

         Hadoop

    (3)地理,数值,全文检索支持

         ElasticSearch

         Solr

         Lucene

二. titan-hbase-es部署范例

  1. 版本对应

    (1)titan:0.54-hadoop2

    (2)hbase:1.1.5 (版本相对宽松)

    (3)elasticsearch:1.4

    (4)rexster-server:2.6

  2. titan server部署

    (1)rexster-server解压

    (2)修改config/rexster.xml文件,添加如下内容

    <graph>
    <graph-enabled>true</graph-enabled>
    <graph-name>titanexample</graph-name>
    <graph-type>com.thinkaurelius.titan.tinkerpop.rexster.TitanGraphConfiguration</graph-type>
    <graph-location></graph-location>
    <graph-read-only>false</graph-read-only>
    <properties>
    <storage.backend>hbase</storage.backend>
    <storage.hostname>localhost:2181,localhost:2182,localhost:2183</storage.hostname>
    <storage.hbase.table>facebook</storage.hbase.table>
    <index.search.backend>elasticsearch</index.search.backend>
    <index.search.elasticsearch.client-only>true</index.search.elasticsearch.client-only>
    <index.search.hostname>127.0.0.1</index.search.hostname>
    <index.search.index-name>facebook</index.search.index-name>
    </properties>
    <extensions>
    <allows>
    <allow>tp:gremlin</allow>
    </allows>
    </extensions>
    </graph>

(3)复制titan jar包到rexster lib

```shell
cp TITAN_HOME/lib/* REXSTER_HOME/ext/titan/
```

(4)删除rexster/lib下的lucene相关jar包,会与titan的引起冲突

(5)开启rexster

```shell
./bin/rexster.sh -s -c ./config/rexster.xml
```

(6)访问http://ip:8182/graphs/titanexample,REST

三. titan server接口

  1. RexPro二进制协议

    public class TestClient {
    public static void main(String[] args) throws Exception {
    RexsterClient client = RexsterClientFactory.open("localhost", "titanexample");
    List<Map<String,Object>> result;
    result = client.execute("aa=g.V.has('name','saturn');aa.next()");
    //result = client.execute("g.getManagementSystem().get(‘cache.db-cache’)");
    // result.toString(): [{name="jupiter"}]
    System.out.println(result);
    client.close();
    }
    }
    <dependency>
    <groupId>com.tinkerpop.rexster</groupId>
    <artifactId>rexster-protocol</artifactId>
    <version>2.6.0</version>
    </dependency>
  2. thinkerpop - REST协议

四. “红楼梦宗谱”示例

  1. 编写blueprint脚本,设置schema,索引,添加将节点数据

    com.thinkaurelius.titan.core.schema.TitanManagement mgmt = g.getManagementSystem();
    //点的属性名
    com.thinkaurelius.titan.core.PropertyKey name = mgmt.makePropertyKey("name").dataType(String.class).make();
    com.thinkaurelius.titan.core.PropertyKey age = mgmt.makePropertyKey("age").dataType(Integer.class).make();
    // 点的标签名
    mgmt.makeVertexLabel("people").make(); //该点表示人
    mgmt.makeVertexLabel("hobby").make(); //该点是一个运动
    // 给点的姓名年龄建索引
    mgmt.buildIndex("name",Vertex.class).addKey(name).unique().buildCompositeIndex(); // "search"是配置文件中的标识符
    mgmt.buildIndex("vertices",Vertex.class).addKey(age).buildMixedIndex("search"); // mixedIndex是外部索引,用es存储索引 // 边的属性
    mgmt.makeEdgeLabel("father").multiplicity(com.thinkaurelius.titan.core.Multiplicity.MANY2ONE).make();
    mgmt.makeEdgeLabel("mother").multiplicity(com.thinkaurelius.titan.core.Multiplicity.MANY2ONE).make();
    mgmt.makeEdgeLabel("hobby").multiplicity(com.thinkaurelius.titan.core.Multiplicity.MULTI).make();
    com.thinkaurelius.titan.core.PropertyKey time = mgmt.makePropertyKey("time").dataType(Integer.class).make();
    com.thinkaurelius.titan.core.EdgeLabel love = mgmt.makeEdgeLabel("love").signature(time).make();//什么时候确立爱情挂席
    mgmt.buildEdgeIndex(love,"lovetime", Direction.BOTH, com.thinkaurelius.titan.core.Order.DESC,time);
    mgmt.commit(); //插入点
    com.thinkaurelius.titan.core.TitanTransaction tx = g.newTransaction();
    Vertex jiazheng = tx.addVertexWithLabel("people"); // 贾政
    jiazheng.setProperty("name","贾政");
    jiazheng.setProperty("age",48);
    Vertex jiabaoyu = tx.addVertexWithLabel("people"); // 贾宝玉
    jiabaoyu.setProperty("name","贾宝玉");
    jiabaoyu.setProperty("age",18);
    Vertex wangfuren = tx.addVertexWithLabel("people"); // 王夫人
    wangfuren.setProperty("name","王夫人");
    wangfuren.setProperty("age",47);
    Vertex xuebaochai = tx.addVertexWithLabel("people"); // 薛宝钗
    xuebaochai.setProperty("name","薛宝钗");
    xuebaochai.setProperty("age",17); Vertex cixiu = tx.addVertexWithLabel("hobby");
    cixiu.setProperty("name","刺绣");
    Vertex zuoshi = tx.addVertexWithLabel("hobby");
    zuoshi.setProperty("name","作诗"); //插入边
    jiabaoyu.addEdge("father",jiazheng);
    jiabaoyu.addEdge("mother",wangfuren);
    ElementHelper.setProperties(jiabaoyu.addEdge("love",xuebaochai),"time",1001); // 贾宝玉爱林黛玉,"time"属性为1001
    wangfuren.addEdge("hobby",cixiu);
    xuebaochai.addEdge("hobby",zuoshi); tx.commit();
  2. 通过RexPro协议发送脚本到服务器

    public static void main(String[] args) throws Exception {
    RexsterClient client = RexsterClientFactory.open("localhost", "titanexample");
    List<Map<String,Object>> result;
    BufferedReader br = new BufferedReader(new InputStreamReader(Thread.currentThread().getContextClassLoader().getResourceAsStream("facebook-gremlin")));
    String str="";
    StringBuffer sb = new StringBuffer();
    while((str = br.readLine())!=null){
    sb.append(str);
    }
    System.out.println(sb.toString());
    result = client.execute(sb.toString());
    System.out.println(result);
    client.close();
    }
  3. rest api

    curl -XGET http://localhost:8182/graphs/titanexample/vertices   #查看所有边
    curl -XGET http://localhost:8182/graphs/titanexample/edges
    curl -XGET http://localhost:8182/graphs/titanexample/keyindices
    curl -XGET http://localhost:8182/graphs/titanexample/vertices/16400/in #查询节点的入射边
    curl -XPOST http://localhost:8182/graphs/titanexample/vertices/11111?name=zhangsan&age=24 #创建节点
    curl -XPOST http://localhost:8182/graphs/titanexample/edges?_outV=<id>&_label=friend&_inV=2&<key>=<key'> #创建节点间的边
  4. gremlin查询示例,查询贾宝玉的父亲

    gremlin> g.V.has('name','贾宝玉').next().out('father').name
    ==>贾政
  5. 全文检索节点,按照es的格式封装的map

    result = client.execute("g.indexQuery(\"vertices\", \"v.age:(17)\").vertices().get(0).getElement()");
    for (Map<String, Object> map : result) {
    for (Map.Entry<String, Object> en : map.entrySet()) {
    System.out.print(en.getKey()+":"+en.getValue()+"\t\t");
    }
    System.out.println();
    }
    /**
    _type:vertex _properties:{name=薛宝钗, age=17} _id:16496
    */
  6. 数据展现

    (1)Sigma.js it's a free and open source tool for graph visualization quite nice. Linkurious is using a fork version of it as far as I know in their product.

    (2)VivaGraph it's another free and open source tool for graph visualization tool - but it has a smaller community compared to SigmaJS.

    (3)D3.js it's the factotum for data visualization, you can do basically every kind of visualization based on that, but the learning curve is quite steep.

    (4)Gephi is another free and open source desktop solution, you have to use an external plugin with that probably but it does support most of the formats out there - graphML, CSV, Neo4J, etc...

五. 参考网站

thinkerpop

gremlin与sql对比查询语法

sparql-gremlin插件

DataStax给出的图形查询语言,包括sparql,GraphQL, Cypher, Gremlin

Titan-红号楼宗谱案例的更多相关文章

  1. 微信公众号UX分析—— 学生作业小结

    1. 不足: 1. 权威性:个人帐号,显得不够正式. 2. 排版问题: + 没有必要的外接端口,界面设计极度缺少排版.哪怕是个人公众号都不至于如此,更何况这是一个学校的教务平台. 3. 反应不及时或无 ...

  2. ArcGIS for Desktop入门教程_第四章_入门案例分析 - ArcGIS知乎-新一代ArcGIS问答社区

    原文:ArcGIS for Desktop入门教程_第四章_入门案例分析 - ArcGIS知乎-新一代ArcGIS问答社区 1 入门案例分析 在第一章里,我们已经对ArcGIS系列软件的体系结构有了一 ...

  3. 18.jvm调优工具及案例分析

    目标: Jmap.Jstack.Jinfo详解 JvisualVm调优工具实战 JVM内存或CPU飙高如何定位 JState命令预估JVM运行情况 系统频繁Full GC导致系统卡顿实战调优 内存泄漏 ...

  4. winform基础——数据访问及几个案例

    数据访问分为三个部分:(1)创建链接(2)创建与执行命令(3)读取或准备相关数据 一,需要引用的命名空间 using data: using data.SqlClient; 二,创建与数据库的链接—— ...

  5. Spring整合Mybatis案例,献给初学的朋友

    今天我们来学习Spring整合Mybatis. 开发环境:Ide:MyEclipse 2017 CI JDK:1.8 首先我们简单的认识下这两个框架 1.Mybatis MyBatis是一个支持普通S ...

  6. ABP架构设计交流群-上海线下交流会的内容分享(有高清录像视频的链接)

    点这里进入ABP系列文章总目录 ABP架构设计交流群-7月18日上海线下交流会内容分享 因为最近工作特别忙,很久没有更新博客了,真对不起关注我博客和ABP系列文章的朋友! 原计划在7月11日举行的AB ...

  7. ABP(现代ASP.NET样板开发框架)主题线下交流会(上海)开始报名了!

    点这里进入ABP系列文章总目录 ABP主题线下交流会(上海)开始报名了 ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)”的简称.它是采用最佳实践和流行技术 ...

  8. 30天,O2O速成攻略【7.18广州站】

    活动概况 时间:2015年07月18日13:30-16:30 地点:贝塔咖啡(新港中路TIT创意园内创意西路07号楼) 主办:APICloud.七牛.洪海网络 网址:www.apicloud.com ...

  9. “ArcGIS数据应用和地图打印输出

    中国科学院计算技术研究所教育中心 关于开展“ArcGIS数据应用和地图打印输出” 培训班的通知 各相关单位: 随着信息化.网络化.数字化向纵深发展,互联网与空间地理信息系统相互交织,数字地球.“智慧地 ...

随机推荐

  1. jq中 load()方法 简介

    load()方法会在元素的onload事件中绑定一个处理函数.如果处理函数绑定给window对象,则会在所有内容(包括窗口,框架,对象和图像等)加载完毕后触发,如果处理函数绑定在元素上,则会在元素的内 ...

  2. poj2240 最短路判环

    题意:与poj1680一样,有不同的换钱渠道,可以完成特定两种货币的交换,并且有汇率,只不过此题是单向边,然后问是否能使财富增加 与poj1680一样,建图之后直接spfa判增值的环即可 #inclu ...

  3. 文件的搜寻【转vbird】

    which (寻找『运行档』) [root@www ~]# which [-a] command 选项或参数: -a :将所有由 PATH 目录中可以找到的命令均列出,而不止第一个被找到的命令名称 分 ...

  4. Faster RCNN 运行自己的数据,刚开始正常,后来就报错: Index exceeds matrix dimensions. Error in ori_demo (line 114) boxes_cell{i} = [boxes(:, (1+(i-1)*4):(i*4)), scores(:, i)];

    function script_faster_rcnn_demo() close all; clc; clear mex; clear is_valid_handle; % to clear init ...

  5. Python-正则零宽断言及命名捕获(类PHP)

    (一)零宽断言 说明:本文的例子使用python描述      首先说明一下什么是零宽断言,所谓零宽断言就是并不去真正的匹配字符串文本,而仅仅是匹配对应的位置.      正则表达式中有很多这样的断言 ...

  6. CentOS如何挂载硬盘

    远程SSH登录上CentOS服务器后,进行如下操作 提醒:挂载操作会清空数据,请确认挂载盘无数据或者未使用 第一步:列出所有磁盘  命令:  ll /dev/disk/by-path 提示:如果无法确 ...

  7. js调用百度地图API创建地图,搜索位置

    实现代码: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <met ...

  8. docker安装错误

    转载:http://www.roddypy.com/index.php/2016/03/11/centos7-yum-%E5%AE%89%E8%A3%85docker%E6%8A%A5%E9%94%9 ...

  9. 【Hadoop】搭建完全分布式的hadoop

    博客已转移,请借一步说话! http://www.weixuehao.com/archives/577 下面博文已更新,请移步 ↑ 用于测试,我用4台虚拟机搭建成了hadoop结构 我用了两个台式机. ...

  10. SQL server 2008 Express Edition实现自动备份和自动删除备份

    1.查看SQL 版本: select @@VERSION --可以看到 Express Edition 精简免费版 Microsoft SQL Server 2008 R2 (SP2) - 10.50 ...