JanusGraph with Hbase 2.0.x with 2.1.xWhen to use Hadoop, HBase, Hive and Pig?Integrate JanusGraph with HBase on clusterHow to overwrite vertex in JanusGraphIs it mandatory to start JanusGraph server for accessing graph using HBase as backedJanusGraph loading with MapReduceJanusGraph Hbase repeatedly calls HBaseKeyColumnValueStore.getFilters()NoClassDefFound of MasterNotRunning when using janusgraph backend HBaseTemporaryBackendException while using JanusGraph Java API and HBaseJanusGraph fails to create and open graph using ConfiguredGraphFactory() and HBase as storage backendconsistency when using Janusgraph on HBase

Corroded Metal vs Magical Armor, should it melt it?

Why is the Lucas test not recommended to differentiate higher alcohols?

How can God warn people of the upcoming rapture without disrupting society?

80's/90's superhero cartoon with a man on fire and a man who made ice runways like Frozone

How is являться different from есть and быть

If "more guns less crime", how do gun advocates explain that the EU has less crime than the US?

Software for validating answers from students

Telephone number in spoken words

What are these funnel-looking green things in my yard?

Should I email my professor about a recommendation letter if he has offered me a job?

Can lodestones be used to magnetize crude iron weapons?

Why does the standard fingering / strumming for a D maj chord leave out the 5th string?

Boss asked a co-worker to assault me

Why command hierarchy, if the chain of command is standing next to each other?

Why is Python 2.7 still the default Python version in Ubuntu?

Can I enter the USA with an E-2 visa and a one way flight ticket?

Can the IPA represent all languages' tones?

How do you deal with the emotions of not being the one to find the cause of a bug?

Are employers legally allowed to pay employees in goods and services equal to or greater than the minimum wage?

How far did Gandalf and the Balrog drop from the bridge in Moria?

Does fossil fuels use since 1990 account for half of all the fossil fuels used in history?

Regex crossword (sudoku?)

Is it possible to grow new organs through exposure to radioactivity?

How to Check all AD userers for "blank" password?



JanusGraph with Hbase 2.0.x with 2.1.x


When to use Hadoop, HBase, Hive and Pig?Integrate JanusGraph with HBase on clusterHow to overwrite vertex in JanusGraphIs it mandatory to start JanusGraph server for accessing graph using HBase as backedJanusGraph loading with MapReduceJanusGraph Hbase repeatedly calls HBaseKeyColumnValueStore.getFilters()NoClassDefFound of MasterNotRunning when using janusgraph backend HBaseTemporaryBackendException while using JanusGraph Java API and HBaseJanusGraph fails to create and open graph using ConfiguredGraphFactory() and HBase as storage backendconsistency when using Janusgraph on HBase






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm trying to figure out how i can plug janusGraph with Hbase 2.0.x or 2.1.x



I've seen in https://github.com/JanusGraph/janusgraph/issues/915 that it's possible in the release 0.3.1 but not enabled in default.



I've tried to test it put i'm stuck during hbase tables creation with :




Exception in thread "main" java.lang.NoSuchMethodError: org.apache.hadoop.hbase.client.Admin.createTable(Lorg/apache/hadoop/hbase/HTableDescriptor;)V
at org.janusgraph.diskstorage.hbase.HBaseAdmin1_0.createTable(HBaseAdmin1_0.java:117)
at org.janusgraph.diskstorage.hbase.HBaseStoreManager.createTable(HBaseStoreManager.java:780)
at org.janusgraph.diskstorage.hbase.HBaseStoreManager.ensureTableExists(HBaseStoreManager.java:744)
at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getLocalKeyPartition(HBaseStoreManager.java:536)
at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getDeployment(HBaseStoreManager.java:375)
at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getFeatures(HBaseStoreManager.java:417)
at org.janusgraph.graphdb.configuration.GraphDatabaseConfiguration.(GraphDatabaseConfiguration.java:1256)
at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:160)
at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:131)
at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:121)
at org.janusgraph.core.JanusGraphFactory$Builder.open(JanusGraphFactory.java:260)




how can i enable the Hbase 2.0 support ?



here is my code sample:



public static void main(String[] args) throws BackendException 
JanusGraph graph = JanusGraphFactory.build()
.set("storage.backend", "hbase")
.set("gremlin.graph", "org.janusgraph.core.JanusGraphFactory")
.set("storage.hostname", "vmdev")
.set("cache.db-cache", "true")
.set("cache.db-cache-clean-wait","20")
.set("cache.db-cache-time","180000")
.set("cache.db-cache-size", "0.5").open();
GraphTraversalSource g = graph.traversal();
if (g.V().count().next() == 0)
tracer.info("empty graph, building DM");
buildDM(graph);

System.exit(0);











share|improve this question






























    0















    I'm trying to figure out how i can plug janusGraph with Hbase 2.0.x or 2.1.x



    I've seen in https://github.com/JanusGraph/janusgraph/issues/915 that it's possible in the release 0.3.1 but not enabled in default.



    I've tried to test it put i'm stuck during hbase tables creation with :




    Exception in thread "main" java.lang.NoSuchMethodError: org.apache.hadoop.hbase.client.Admin.createTable(Lorg/apache/hadoop/hbase/HTableDescriptor;)V
    at org.janusgraph.diskstorage.hbase.HBaseAdmin1_0.createTable(HBaseAdmin1_0.java:117)
    at org.janusgraph.diskstorage.hbase.HBaseStoreManager.createTable(HBaseStoreManager.java:780)
    at org.janusgraph.diskstorage.hbase.HBaseStoreManager.ensureTableExists(HBaseStoreManager.java:744)
    at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getLocalKeyPartition(HBaseStoreManager.java:536)
    at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getDeployment(HBaseStoreManager.java:375)
    at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getFeatures(HBaseStoreManager.java:417)
    at org.janusgraph.graphdb.configuration.GraphDatabaseConfiguration.(GraphDatabaseConfiguration.java:1256)
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:160)
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:131)
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:121)
    at org.janusgraph.core.JanusGraphFactory$Builder.open(JanusGraphFactory.java:260)




    how can i enable the Hbase 2.0 support ?



    here is my code sample:



    public static void main(String[] args) throws BackendException 
    JanusGraph graph = JanusGraphFactory.build()
    .set("storage.backend", "hbase")
    .set("gremlin.graph", "org.janusgraph.core.JanusGraphFactory")
    .set("storage.hostname", "vmdev")
    .set("cache.db-cache", "true")
    .set("cache.db-cache-clean-wait","20")
    .set("cache.db-cache-time","180000")
    .set("cache.db-cache-size", "0.5").open();
    GraphTraversalSource g = graph.traversal();
    if (g.V().count().next() == 0)
    tracer.info("empty graph, building DM");
    buildDM(graph);

    System.exit(0);











    share|improve this question


























      0












      0








      0








      I'm trying to figure out how i can plug janusGraph with Hbase 2.0.x or 2.1.x



      I've seen in https://github.com/JanusGraph/janusgraph/issues/915 that it's possible in the release 0.3.1 but not enabled in default.



      I've tried to test it put i'm stuck during hbase tables creation with :




      Exception in thread "main" java.lang.NoSuchMethodError: org.apache.hadoop.hbase.client.Admin.createTable(Lorg/apache/hadoop/hbase/HTableDescriptor;)V
      at org.janusgraph.diskstorage.hbase.HBaseAdmin1_0.createTable(HBaseAdmin1_0.java:117)
      at org.janusgraph.diskstorage.hbase.HBaseStoreManager.createTable(HBaseStoreManager.java:780)
      at org.janusgraph.diskstorage.hbase.HBaseStoreManager.ensureTableExists(HBaseStoreManager.java:744)
      at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getLocalKeyPartition(HBaseStoreManager.java:536)
      at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getDeployment(HBaseStoreManager.java:375)
      at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getFeatures(HBaseStoreManager.java:417)
      at org.janusgraph.graphdb.configuration.GraphDatabaseConfiguration.(GraphDatabaseConfiguration.java:1256)
      at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:160)
      at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:131)
      at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:121)
      at org.janusgraph.core.JanusGraphFactory$Builder.open(JanusGraphFactory.java:260)




      how can i enable the Hbase 2.0 support ?



      here is my code sample:



      public static void main(String[] args) throws BackendException 
      JanusGraph graph = JanusGraphFactory.build()
      .set("storage.backend", "hbase")
      .set("gremlin.graph", "org.janusgraph.core.JanusGraphFactory")
      .set("storage.hostname", "vmdev")
      .set("cache.db-cache", "true")
      .set("cache.db-cache-clean-wait","20")
      .set("cache.db-cache-time","180000")
      .set("cache.db-cache-size", "0.5").open();
      GraphTraversalSource g = graph.traversal();
      if (g.V().count().next() == 0)
      tracer.info("empty graph, building DM");
      buildDM(graph);

      System.exit(0);











      share|improve this question














      I'm trying to figure out how i can plug janusGraph with Hbase 2.0.x or 2.1.x



      I've seen in https://github.com/JanusGraph/janusgraph/issues/915 that it's possible in the release 0.3.1 but not enabled in default.



      I've tried to test it put i'm stuck during hbase tables creation with :




      Exception in thread "main" java.lang.NoSuchMethodError: org.apache.hadoop.hbase.client.Admin.createTable(Lorg/apache/hadoop/hbase/HTableDescriptor;)V
      at org.janusgraph.diskstorage.hbase.HBaseAdmin1_0.createTable(HBaseAdmin1_0.java:117)
      at org.janusgraph.diskstorage.hbase.HBaseStoreManager.createTable(HBaseStoreManager.java:780)
      at org.janusgraph.diskstorage.hbase.HBaseStoreManager.ensureTableExists(HBaseStoreManager.java:744)
      at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getLocalKeyPartition(HBaseStoreManager.java:536)
      at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getDeployment(HBaseStoreManager.java:375)
      at org.janusgraph.diskstorage.hbase.HBaseStoreManager.getFeatures(HBaseStoreManager.java:417)
      at org.janusgraph.graphdb.configuration.GraphDatabaseConfiguration.(GraphDatabaseConfiguration.java:1256)
      at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:160)
      at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:131)
      at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:121)
      at org.janusgraph.core.JanusGraphFactory$Builder.open(JanusGraphFactory.java:260)




      how can i enable the Hbase 2.0 support ?



      here is my code sample:



      public static void main(String[] args) throws BackendException 
      JanusGraph graph = JanusGraphFactory.build()
      .set("storage.backend", "hbase")
      .set("gremlin.graph", "org.janusgraph.core.JanusGraphFactory")
      .set("storage.hostname", "vmdev")
      .set("cache.db-cache", "true")
      .set("cache.db-cache-clean-wait","20")
      .set("cache.db-cache-time","180000")
      .set("cache.db-cache-size", "0.5").open();
      GraphTraversalSource g = graph.traversal();
      if (g.V().count().next() == 0)
      tracer.info("empty graph, building DM");
      buildDM(graph);

      System.exit(0);








      hbase janusgraph






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 10:20









      Samy ElaiassiSamy Elaiassi

      4153 silver badges12 bronze badges




      4153 silver badges12 bronze badges

























          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55374825%2fjanusgraph-with-hbase-2-0-x-with-2-1-x%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55374825%2fjanusgraph-with-hbase-2-0-x-with-2-1-x%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript