Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9230759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:54:03+00:00 2026-06-18T05:54:03+00:00

I am creating a Graph Data Table using Titan and Blueprint API. I am

  • 0

I am creating a Graph Data Table using Titan and Blueprint API. I am using HBase as backend.
I know how to define data types for key indexes.

Example:

TitanKey name = graph.makeType().name("name").dataType(String.class).functional().makePropertyKey();

Now I actually want to represent a RDBMS Table in Titan DB Graph. Is there any process through which I can implement ‘Column Data Type’ (as in RDBMS Table) in the Titan Graph Model ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T05:54:05+00:00Added an answer on June 18, 2026 at 5:54 am

    Unlike a relational database, Titan’s schema is flexible. That means, you can add new property keys and edge labels while the database is running without expensive “ALTER TABLE” commands. Also, Titan does not have a notion of “table” since every entity is represented by a vertex and every vertex can be connected to any other vertex by an edge.

    If you have a USER table with columns NAME, AGE, UID (where UID is the unique primary key for that table) you would define the following property keys in Titan:

    graph.makeType().name("name").dataType(String.class).functional().makePropertyKey()
    graph.makeType().name("age").dataType(Integer.class).functional().makePropertyKey()
    graph.makeType().name("uid").dataType(Long.class).functional().indexed().unique().makePropertyKey()
    

    Then, for each user in that table you would create a vertex and set those properties:

    v = g.addVertex(null);
    v.setProperty("name","john");
    v.setProperty("age",29);
    v.setProperty("uid",23482234);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a data model using xcode and core data. It's an object graph,
Hi I just define my custom action on facebook using open graph. After creating
im currently creating a graph for an app, using coreplot and have a problem
I am creating graphs using GD::Graph::lines . For option set, I have to write
I am creating a popup window using tkinter's Toplevel containing a pyplot graph, and
I'm creating a DOT graph visualization from a tree-like data structure but am having
I'm creating a graph in php using the google graphing library to show StarCraft
I am creating a graph in python using a text file for the source
I am creating a line graph using zedgraph which contains multiple lines and all
I'm new to jQuery and busy with creating an graph based on a table.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.