How should I implement logs into a document store db?How to store 'n' days of web server logs in Sql...

How many people need to be born every 8 years to sustain population?

Can I cause damage to electrical appliances by unplugging them when they are turned on?

How to I force windows to use a specific version of SQLCMD?

How were servants to the Kaiser of Imperial Germany treated and where may I find more information on them

Showing mass murder in a kid's book

What the heck is gets(stdin) on site coderbyte?

What is this high flying aircraft over Pennsylvania?

Review your own paper in Mathematics

If the only attacker is removed from combat, is a creature still counted as having attacked this turn?

Deciphering cause of death?

Sigmoid with a slope but no asymptotes?

What happens if I try to grapple an illusory duplicate from the Mirror Image spell?

Does the Crossbow Expert feat's extra crossbow attack work with the reaction attack from a Hunter ranger's Giant Killer feature?

Can you identify this lizard-like creature I observed in the UK?

How do you justify more code being written by following clean code practices?

If Captain Marvel (MCU) were to have a child with a human male, would the child be human or Kree?

"Oh no!" in Latin

What does "tick" mean in this sentence?

Why would five hundred and five be same as one?

Why do Radio Buttons not fill the entire outer circle?

Alignment of six matrices

How to make a list of partial sums using forEach

Why can't the Brexit deadlock in the UK parliament be solved with a plurality vote?

Can I run 125kHz RF circuit on a breadboard?



How should I implement logs into a document store db?


How to store 'n' days of web server logs in Sql Server?How do databases store index key values (on-disk) for variable length fields?Redirecting MySQL errors and slow logs into another databaseUsing MongoDB and PostgreSQL togetherReplace relational database with “poor” design in software product with non-relational DB?Managing logs generated by userDesign options for time series scientific dataGoogle datastore modeling helpDocument Store & Relational DB Hybrid. Exists? Possible?What data store should I use for storing and querying a billion small (~2kb) JSON documents?













0















I am somewhat unsure if I want to use document store(noSQL) for the sake of using it or because it could really help in my situation.



Here is my problem, I have users, I can think about them as documents with no problem (it even seems great like that) - but when I want to add logs that are connected to those users I get somewhat dazzled.



Most of the app creates and updates those user entities. But there is another part, logging (and viewing those logs) the user's actions which is unclear to me, logs are connected to those users for example:



User = {
name: "John",
active: true,
age: 32
}


I don't know if the logs should be in the user document or separated.
My main concern is when I would like to view all of the logs of all of the users ordered by date, that may take a considerable amount of time to query (at least this is how I think) - I would need to to stack the logs by iterating over all of the users and then order them. On the other had, separating the logs seem not true to the "noSQL way of things".



Am I wrong about this? should I even use document store?










share|improve this question














bumped to the homepage by Community 4 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.




















    0















    I am somewhat unsure if I want to use document store(noSQL) for the sake of using it or because it could really help in my situation.



    Here is my problem, I have users, I can think about them as documents with no problem (it even seems great like that) - but when I want to add logs that are connected to those users I get somewhat dazzled.



    Most of the app creates and updates those user entities. But there is another part, logging (and viewing those logs) the user's actions which is unclear to me, logs are connected to those users for example:



    User = {
    name: "John",
    active: true,
    age: 32
    }


    I don't know if the logs should be in the user document or separated.
    My main concern is when I would like to view all of the logs of all of the users ordered by date, that may take a considerable amount of time to query (at least this is how I think) - I would need to to stack the logs by iterating over all of the users and then order them. On the other had, separating the logs seem not true to the "noSQL way of things".



    Am I wrong about this? should I even use document store?










    share|improve this question














    bumped to the homepage by Community 4 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      0












      0








      0


      1






      I am somewhat unsure if I want to use document store(noSQL) for the sake of using it or because it could really help in my situation.



      Here is my problem, I have users, I can think about them as documents with no problem (it even seems great like that) - but when I want to add logs that are connected to those users I get somewhat dazzled.



      Most of the app creates and updates those user entities. But there is another part, logging (and viewing those logs) the user's actions which is unclear to me, logs are connected to those users for example:



      User = {
      name: "John",
      active: true,
      age: 32
      }


      I don't know if the logs should be in the user document or separated.
      My main concern is when I would like to view all of the logs of all of the users ordered by date, that may take a considerable amount of time to query (at least this is how I think) - I would need to to stack the logs by iterating over all of the users and then order them. On the other had, separating the logs seem not true to the "noSQL way of things".



      Am I wrong about this? should I even use document store?










      share|improve this question














      I am somewhat unsure if I want to use document store(noSQL) for the sake of using it or because it could really help in my situation.



      Here is my problem, I have users, I can think about them as documents with no problem (it even seems great like that) - but when I want to add logs that are connected to those users I get somewhat dazzled.



      Most of the app creates and updates those user entities. But there is another part, logging (and viewing those logs) the user's actions which is unclear to me, logs are connected to those users for example:



      User = {
      name: "John",
      active: true,
      age: 32
      }


      I don't know if the logs should be in the user document or separated.
      My main concern is when I would like to view all of the logs of all of the users ordered by date, that may take a considerable amount of time to query (at least this is how I think) - I would need to to stack the logs by iterating over all of the users and then order them. On the other had, separating the logs seem not true to the "noSQL way of things".



      Am I wrong about this? should I even use document store?







      nosql logs document-oriented






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 25 '14 at 7:19









      funerrfunerr

      1013




      1013





      bumped to the homepage by Community 4 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 4 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I would imagine that you would be querying the log collection based on username, so it should be fine to create a single collection for the logs. The reason I wouldn't suggest nesting log documents is that there is a limit on document size.



          If you know your query pattern is name and date then it should work out pretty well.



          Can I ask what the "noSQL way of things" is?






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "182"
            };
            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: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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%2fdba.stackexchange.com%2fquestions%2f72362%2fhow-should-i-implement-logs-into-a-document-store-db%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









            0














            I would imagine that you would be querying the log collection based on username, so it should be fine to create a single collection for the logs. The reason I wouldn't suggest nesting log documents is that there is a limit on document size.



            If you know your query pattern is name and date then it should work out pretty well.



            Can I ask what the "noSQL way of things" is?






            share|improve this answer




























              0














              I would imagine that you would be querying the log collection based on username, so it should be fine to create a single collection for the logs. The reason I wouldn't suggest nesting log documents is that there is a limit on document size.



              If you know your query pattern is name and date then it should work out pretty well.



              Can I ask what the "noSQL way of things" is?






              share|improve this answer


























                0












                0








                0







                I would imagine that you would be querying the log collection based on username, so it should be fine to create a single collection for the logs. The reason I wouldn't suggest nesting log documents is that there is a limit on document size.



                If you know your query pattern is name and date then it should work out pretty well.



                Can I ask what the "noSQL way of things" is?






                share|improve this answer













                I would imagine that you would be querying the log collection based on username, so it should be fine to create a single collection for the logs. The reason I wouldn't suggest nesting log documents is that there is a limit on document size.



                If you know your query pattern is name and date then it should work out pretty well.



                Can I ask what the "noSQL way of things" is?







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Aug 22 '14 at 17:29









                digitalohmdigitalohm

                262




                262






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Database Administrators Stack Exchange!


                    • 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%2fdba.stackexchange.com%2fquestions%2f72362%2fhow-should-i-implement-logs-into-a-document-store-db%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

                    ORA-01691 (unable to extend lob segment) even though my tablespace has AUTOEXTEND onORA-01692: unable to...

                    Always On Availability groups resolving state after failover - Remote harden of transaction...

                    Circunscripción electoral de Guipúzcoa Referencias Menú de navegaciónLas claves del sistema electoral en...