Can arangodb handle 20 billion records?











up vote
1
down vote

favorite












I just want to know, can Arangodb handle 20 billions of records in a single collection?



What is the best way to insert 1 billion records at a time?










share|improve this question







New contributor




Yash Pandya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    up vote
    1
    down vote

    favorite












    I just want to know, can Arangodb handle 20 billions of records in a single collection?



    What is the best way to insert 1 billion records at a time?










    share|improve this question







    New contributor




    Yash Pandya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I just want to know, can Arangodb handle 20 billions of records in a single collection?



      What is the best way to insert 1 billion records at a time?










      share|improve this question







      New contributor




      Yash Pandya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I just want to know, can Arangodb handle 20 billions of records in a single collection?



      What is the best way to insert 1 billion records at a time?







      arangodb arangodb-php






      share|improve this question







      New contributor




      Yash Pandya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Yash Pandya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Yash Pandya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked Nov 19 at 12:20









      Yash Pandya

      61




      61




      New contributor




      Yash Pandya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Yash Pandya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Yash Pandya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          Of course. The underlying storage engine choice should definitely be RocksDB. How big would every individual document in average be?



          The best way would be any sort of import/restore. Is this going to be a cluster or a single server deployment?






          share|improve this answer





















          • The individual document can be of size 1 kb. Currently I am using it as a single server and mmfiles as a storage engine.
            – Yash Pandya
            Nov 20 at 13:40










          • MMFiles is not an option unless you are looking into buying 20 exabyte of RAM. Memory mapped files performance goes towards zero, when data size including indexes cannot be matched in RAM size.
            – Kaveh Vahedipour
            Nov 20 at 17:45












          • Thanks for the reply. You suggested the best way to insert records is import/restore, but to use that my whole data should be ready before insertion,right? Suppose my data is generated at run time using some sort of script, at that time what should I use?
            – Yash Pandya
            yesterday










          • Absolutely. By all means insert all you data.
            – Kaveh Vahedipour
            yesterday











          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',
          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
          });


          }
          });






          Yash Pandya is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53374517%2fcan-arangodb-handle-20-billion-records%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          Of course. The underlying storage engine choice should definitely be RocksDB. How big would every individual document in average be?



          The best way would be any sort of import/restore. Is this going to be a cluster or a single server deployment?






          share|improve this answer





















          • The individual document can be of size 1 kb. Currently I am using it as a single server and mmfiles as a storage engine.
            – Yash Pandya
            Nov 20 at 13:40










          • MMFiles is not an option unless you are looking into buying 20 exabyte of RAM. Memory mapped files performance goes towards zero, when data size including indexes cannot be matched in RAM size.
            – Kaveh Vahedipour
            Nov 20 at 17:45












          • Thanks for the reply. You suggested the best way to insert records is import/restore, but to use that my whole data should be ready before insertion,right? Suppose my data is generated at run time using some sort of script, at that time what should I use?
            – Yash Pandya
            yesterday










          • Absolutely. By all means insert all you data.
            – Kaveh Vahedipour
            yesterday















          up vote
          0
          down vote













          Of course. The underlying storage engine choice should definitely be RocksDB. How big would every individual document in average be?



          The best way would be any sort of import/restore. Is this going to be a cluster or a single server deployment?






          share|improve this answer





















          • The individual document can be of size 1 kb. Currently I am using it as a single server and mmfiles as a storage engine.
            – Yash Pandya
            Nov 20 at 13:40










          • MMFiles is not an option unless you are looking into buying 20 exabyte of RAM. Memory mapped files performance goes towards zero, when data size including indexes cannot be matched in RAM size.
            – Kaveh Vahedipour
            Nov 20 at 17:45












          • Thanks for the reply. You suggested the best way to insert records is import/restore, but to use that my whole data should be ready before insertion,right? Suppose my data is generated at run time using some sort of script, at that time what should I use?
            – Yash Pandya
            yesterday










          • Absolutely. By all means insert all you data.
            – Kaveh Vahedipour
            yesterday













          up vote
          0
          down vote










          up vote
          0
          down vote









          Of course. The underlying storage engine choice should definitely be RocksDB. How big would every individual document in average be?



          The best way would be any sort of import/restore. Is this going to be a cluster or a single server deployment?






          share|improve this answer












          Of course. The underlying storage engine choice should definitely be RocksDB. How big would every individual document in average be?



          The best way would be any sort of import/restore. Is this going to be a cluster or a single server deployment?







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 20 at 13:14









          Kaveh Vahedipour

          2,1401416




          2,1401416












          • The individual document can be of size 1 kb. Currently I am using it as a single server and mmfiles as a storage engine.
            – Yash Pandya
            Nov 20 at 13:40










          • MMFiles is not an option unless you are looking into buying 20 exabyte of RAM. Memory mapped files performance goes towards zero, when data size including indexes cannot be matched in RAM size.
            – Kaveh Vahedipour
            Nov 20 at 17:45












          • Thanks for the reply. You suggested the best way to insert records is import/restore, but to use that my whole data should be ready before insertion,right? Suppose my data is generated at run time using some sort of script, at that time what should I use?
            – Yash Pandya
            yesterday










          • Absolutely. By all means insert all you data.
            – Kaveh Vahedipour
            yesterday


















          • The individual document can be of size 1 kb. Currently I am using it as a single server and mmfiles as a storage engine.
            – Yash Pandya
            Nov 20 at 13:40










          • MMFiles is not an option unless you are looking into buying 20 exabyte of RAM. Memory mapped files performance goes towards zero, when data size including indexes cannot be matched in RAM size.
            – Kaveh Vahedipour
            Nov 20 at 17:45












          • Thanks for the reply. You suggested the best way to insert records is import/restore, but to use that my whole data should be ready before insertion,right? Suppose my data is generated at run time using some sort of script, at that time what should I use?
            – Yash Pandya
            yesterday










          • Absolutely. By all means insert all you data.
            – Kaveh Vahedipour
            yesterday
















          The individual document can be of size 1 kb. Currently I am using it as a single server and mmfiles as a storage engine.
          – Yash Pandya
          Nov 20 at 13:40




          The individual document can be of size 1 kb. Currently I am using it as a single server and mmfiles as a storage engine.
          – Yash Pandya
          Nov 20 at 13:40












          MMFiles is not an option unless you are looking into buying 20 exabyte of RAM. Memory mapped files performance goes towards zero, when data size including indexes cannot be matched in RAM size.
          – Kaveh Vahedipour
          Nov 20 at 17:45






          MMFiles is not an option unless you are looking into buying 20 exabyte of RAM. Memory mapped files performance goes towards zero, when data size including indexes cannot be matched in RAM size.
          – Kaveh Vahedipour
          Nov 20 at 17:45














          Thanks for the reply. You suggested the best way to insert records is import/restore, but to use that my whole data should be ready before insertion,right? Suppose my data is generated at run time using some sort of script, at that time what should I use?
          – Yash Pandya
          yesterday




          Thanks for the reply. You suggested the best way to insert records is import/restore, but to use that my whole data should be ready before insertion,right? Suppose my data is generated at run time using some sort of script, at that time what should I use?
          – Yash Pandya
          yesterday












          Absolutely. By all means insert all you data.
          – Kaveh Vahedipour
          yesterday




          Absolutely. By all means insert all you data.
          – Kaveh Vahedipour
          yesterday










          Yash Pandya is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          Yash Pandya is a new contributor. Be nice, and check out our Code of Conduct.













          Yash Pandya is a new contributor. Be nice, and check out our Code of Conduct.












          Yash Pandya is a new contributor. Be nice, and check out our Code of Conduct.















           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53374517%2fcan-arangodb-handle-20-billion-records%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

          404 Error Contact Form 7 ajax form submitting

          How to know if a Active Directory user can login interactively

          TypeError: fit_transform() missing 1 required positional argument: 'X'