Differences between revisions 25 and 71 (spanning 46 versions)
Revision 25 as of 2010-04-18 15:20:52
Size: 5504
Editor: Pradeepkumar
Comment:
Revision 71 as of 2010-07-08 12:33:02
Size: 6493
Editor: Pradeepkumar
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
##master-page:HomepageTemplate
#format wiki
#language en
Email: <<MailTo(in3xes AT SPAMFREE gmail DOT com)>>
## page was renamed from in3xes
## page was renamed from Pradeepkumar
== Google Summer of Code-2010 ==
----
=== Contact Details: ===
{{{
        Name: Pradeepkumar Gayam
        Email: in3xes@gmail.com
        IRC Nick: in3xes (freenode.net)
        Jabber ID: in3xes [AT] gmail.com (talk.google.com)
}}}
My GSoC [[http://bitbucket.org/in3xes/gsoc/src/tip/application|application]] on bitbucket.
Line 6: Line 14:
IRC Nick: inXs_ ----
''' '''
Line 8: Line 17:
'''About Me:''' === Journal: ===
2010-06-23: Study shallow clone how they are related to parent delta
Line 10: Line 20:
- Student at [[http://www.iitr.ac.in|IIT]] in India. Mathematics is my major. 2010-06-24: Revlog experiments to improve performance
Line 12: Line 22:
- Fan of C, Python, Haskell. You can find some of my small projects on [[http://www.github.com/in3Xes|Github]]. - 2010-06-25: More experiments, fixed the issue, so that it will not differ for old revlogs, still expriments needs to be done.
Line 14: Line 24:
- Love solving mathematics problems by programming. [[http://www.github.com/in3Xes/projecteuler|Solutions]] for the problems in [[http://www.projecteuler.net|Project Euler]]. Solved in python. 2010-06-26: Study wire-proto, understand how bundle, unbundle is being done.
Line 16: Line 26:
- Experienced user of git. Comfortable with Bazaar. 2010-06-27: Week end
Line 18: Line 28:
- Find me on [[http://www.twitter.com/in3Xes|Twitter]] 2010-06-28: More expreiments, found the reason for the performance issue, [[http://paste.lisp.org/+2EEE|this]] paste explains. Conclusion: 'The number of patches to be applied increases at starting rev of new branch'.
Line 20: Line 30:
'''Google Summer of Code-2010''' ----
2010-06-29: Update blog, journal, Attened GSoC meeting,
Line 22: Line 33:
I am interested in "Parent delta". I can also work on conversion tools. But I am mainly focusing on Parent Delta Plan. 2010-06-30: Worked through bundle/unbundle code and understand wire-proto completely
Line 24: Line 35:
A word about project: 2010-07-01: Worked through bundle/unbundle code and understand wire-proto completely
Line 26: Line 37:
Mercurial calculates diffs against previous revision rather than parent. In some cases this implementation is space inefficient, and it is more sensible to store deltas against parent. This project is about implementing [[http://mercurial.selenic.com/wiki/ParentDeltaPlan|Parent Delta Plan]]. This implementation changes the structure of revlogs, so wire protocol has to be extended to allow backward compatibility. 2010-07-02: - (Tried to work, but, unproductive day)
Line 28: Line 39:
============================================================================ 2010-07-03: - (another unproductive day :-( )
Line 30: Line 41:
'''Proposal''' 2010-07-04: - Week end
Line 32: Line 43:
TO DO(Tentative): Major: 2010-07-05: Worked on bundle/unbundle, it works for now, have to rewrite the patches,(Ugly code)
Line 34: Line 45:
 * Changes in revlog
 * Changes in wire protocol
----
2010-07-06: Attended GSoC meeting on IRC, finished bundle/unbundle
Line 37: Line 48:
Changes in revlog: 2010-07-07: pull from remote and localrepo partically working
Line 39: Line 50:
 . Change revlog structure, now it appends the next delta to existing data.This helps in reconstrfucting a revision at O(1) seeks. If ----
=== Work Progress: ===
''' '''Few things related revlog:
Line 41: Line 54:
parent delta is implemented better compression can be achieved but, may have to compromise with number of seeks. 1) A [[http://markmail.org/download.xqy?id=ooqvjdaor4t3sxan&number=1|script]] by tonfa, proof for parent delta.
Line 43: Line 56:
 * Current:Linear delta model
  . --> O(1) seeks to create any revision.
 * Parent delta model
  * ** I think this can be completed quickly, tonfa shared patches for this***
  . --> An intelligent algorithm to reduce number of seeks to reconstruct any revision.I think constructing revision is
2) mpm [[http://markmail.org/thread/ooqvjdaor4t3sxan|explaining]] how space inefficiency is caused.
Line 49: Line 58:
 . not straight forward as it is now. It's not going to be linear.
  . --> Investigation about merge revision. --> Optimization, and investigation for better implementation(If possible). --> Continuous parallel testing.
3) A [[http://mercurial.selenic.com/hg/hg/file/45aabc523c86/contrib/shrink-revlog.py|python script]] in mercurial repo to shrink revlog by sorting in topological order.
Line 52: Line 60:
Changes in wire protocol: '''__4th Week:__'''
Line 54: Line 62:
 * Changes in wire protocol to allow backward computability.
 * Implementation of changes according to old, new servers,client, repos.
  . --> Backward computability matrix (by tonfa): http://mercurial.selenic.com/wiki/ParentDeltaPlan
   . --> There are things to be discussed, and learned before implementation.
 * Rigorous testing
 * Integrating with other's work.(Changeset discovery, Lightweight copies/renames)
Earlier in this week I started working on revlog, most of the work is already done by tonfa. He shared patches. All I did was understand what he did, and rewrite those patches with minor changes.
Line 61: Line 64:
About Me: '''strategy:'''
Line 63: Line 66:
 . I am student at Indian Institute of Technology, Roorkee. I am currently pursing third year of 5 years degree, Mathematics as major. I As mpm suggested, I have changed the way new revision is being added to existing revlog, and make corresponding changes in creating a given revision of file. The crucial step (performance affecting step) is creating a given version of file. previously to create a given version of a file first we take base revision , to that we keep adding the deltas till given revision. Earlier deltas are added in linear manner. So creating a given revision of file is simply seeking O(1) times.
Line 65: Line 68:
am a Linux enthusiast. Interested in open source. I have been learning C,Python. Some of my projects can be found on github ( http://www.github.com/in3Xes ). I have never got opportunity to contribute to open source. GSoC would be stepping stone for that. ''Defination of base in revlog is not given anywhere. From revlog, a base is the version where we add full text of file to the revlog instead of delta.''
Line 67: Line 70:
 . I am project leader in IMG ( Information Management Group, IIT Roorkee, http://www.iitr.ac.in/IMG/ ), a group which manages intranet, example scenario:
Line 69: Line 72:
 . student databases, institute website. I have worked on PHP, Java in web development. We want to create a R1 revision of a file. The parents of R1 are P1 and P2. Base of R1 is B1.
Line 71: Line 74:
Contact Information: Consider a situation where P2 is null, and P1 < B1. In this case I simply can't take B1 and create R1. I have first find base and parents of P1 and construct P1. The same case might repeat. where parent of P1 is < base of P1. So, first I have to find a base which is ancestor of all the parents, then create a chain of deltas from that base to construct a given revision.
Line 73: Line 76:
 . Name: Pradeepkumar Gayam
 Email: in3xes@gmail.com
 . IRC Nick: inXs_ (freenode.net)
 . Jabber ID: in3xes [AT] gmail.com (talk.google.com)
Output of --profile says that, what ever the decrease in the performance is caused only by this function which used for constructing the delta chain. So, I need to find a better algorithm to construct the delta chain. The current algorithm for constructing the delta chain is.
Line 78: Line 78:
Schedule: {{{
    def deltachain(self, rev):
        chain = []
        while self.base(rev) != rev:
            chain.append(rev)
            rev = self.deltaparent(rev)
        chain.reverse()
        return rev, chain
Line 80: Line 87:
 . I would start coding well before the schedule given in the time line. My final exams will end by May-15th. I can start working     def deltaparent(self, rev):
        if self.base(rev) == rev:
            return nullrev
        elif self.flags(rev) & REVLOG_PARENTDELTA_FLAGS:
            return self.parentrevs(rev)[0]
        else:
            return rev-1
}}}
'''__5th Week:__'''
Line 82: Line 97:
 . rigorously shortly after exams.
  . Till May-15th(or 24th according to time line) I will be reading code, documentation, getting used to coding style, getting ready to
 start coding, little experimentation and stuff.
In the starting of the week, I stopped working on revlog for sometime to look at other part of API. I studied abit about shallow clones, and parent delta's role in it. Though I didn't study in much detail, got general idea about how things work in shallow clones. Later worked on wire protocol abit.
Line 86: Line 99:
My plan of time allotment: Changes in revlog structure: [Total 3 weeks] After some gap I again started working on revlog performance, did some exprimentation, fixed some issues (which brought back the performace when the revlog is non-parent deltad). From the results I concluded that the decrease in the performance is bacause of number of patches being applied in to construct a revision of a file. In the previous post I wrote that revlog slowed down becase of the deltachain(), and deltaparent() functions are repeated being called. Thought that is one of the reason, but not the major reason. Some important results are pasted below.
Line 88: Line 101:
 * Parent delta model:
  . --> An intelligent algorithm to reduce number of seeks to reconstruct any revision.I think constructing revision is not
(All the experiments are done on mercurial repo, Right now, I don't have good enough computer for larger repos )
Line 91: Line 103:
 . straight forward as it is now. It's not going to be linear.
  . [(It can take 1 1/2 to 2 weeks to bring it to working stage, Roughly around 5th-Jun)]
  . --> Investigation about merge revision. --> Optimization, and investigation for better implementation(If possible).
   . --> Continuous parallel testing.
    . [( I would finish testing and other work nearly in 10 days, by 15th-Jun)]
 * Old revlog, Normal repo
Line 97: Line 105:
Changes in wire protocol:[Total 3 to 3 1/2 weeks] {{{
hg perfrevlog .hg/store/00manifest.i
! wall 0.570377 comb 0.570000 user 0.560000 sys 0.010000 (best of 18)
hg verify --time
Time: real 11.290 secs (user 10.790+0.000 sys 0.250+0.000)
}}}
 * New revlog (before fix), Normal repo
Line 99: Line 113:
 * Changes in wire protocol to allow backward computability.
  . [(For midterm evaluation, this may not be complete, but significant part of it)]
  . --> Implementation of changes according to old, new servers,client, repos.
   . >> Backward compatibility matrix (by tonfa): http://mercurial.selenic.com/wiki/ParentDeltaPlan . >> There are things to be discussed, and learned before implementation.
{{{
hg perfrevlog .hg/store/00manifest.i
! wall 0.646474 comb 0.650000 user 0.640000 sys 0.010000 (best of 16)
hg verify --time
Time: real 15.930 secs (user 15.350+0.000 sys 0.290+0.000)
}}}
 * New revlog (after fix), Normal repo
Line 104: Line 121:
 * Rigorous testing.
  . [(I will start testing shortly after mid-term evaluation, i.e., around 18th-July, would take a week to complete)]
  * Integrating with other's work.
   . [(Changeset discovery, Lightweight copies/renames). ( Remaining time, depending upon other students)]
{{{
hg perfrevlog .hg/store/00manifest.i
! wall 0.589325 comb 0.550000 user 0.540000 sys 0.010000 (best of 17)
hg verify --time
Time: real 12.420 secs (user 11.700+0.000 sys 0.300+0.000)
}}}
 * New revlog (before fix), Repo with parent delta'ed manifest
Line 109: Line 129:
Link to my GSoC [[http://www.bitbucket.org/in3xes/gsoc|application]] on bitbucket.org {{{
hg perfrevlog .hg/store/00manifest.i
! wall 2.044643 comb 2.050000 user 2.020000 sys 0.030000 (best of 5)
hg verify --time
Time: real 42.450 secs (user 41.330+0.000 sys 0.300+0.000)
}}}
 * New revlog (after fix), Repo with parent delta'ed manifest
Line 111: Line 137:
## You can even more obfuscate your email address by adding more uppercase letters followed by a leading and trailing blank.
CategoryHomepage
{{{
hg perfrevlog .hg/store/00manifest.i
! wall 1.967572 comb 1.970000 user 1.950000 sys 0.020000 (best of 6)
hg verify --time
Time: real 39.150 secs (user 37.470+0.000 sys 0.450+0.000)
}}}

Google Summer of Code-2010


Contact Details:

        Name:           Pradeepkumar Gayam
        Email:          in3xes@gmail.com
        IRC Nick:       in3xes (freenode.net)
        Jabber ID:      in3xes [AT] gmail.com (talk.google.com)

My GSoC application on bitbucket.


Journal:

2010-06-23: Study shallow clone how they are related to parent delta

2010-06-24: Revlog experiments to improve performance

2010-06-25: More experiments, fixed the issue, so that it will not differ for old revlogs, still expriments needs to be done.

2010-06-26: Study wire-proto, understand how bundle, unbundle is being done.

2010-06-27: Week end

2010-06-28: More expreiments, found the reason for the performance issue, this paste explains. Conclusion: 'The number of patches to be applied increases at starting rev of new branch'.


2010-06-29: Update blog, journal, Attened GSoC meeting,

2010-06-30: Worked through bundle/unbundle code and understand wire-proto completely

2010-07-01: Worked through bundle/unbundle code and understand wire-proto completely

2010-07-02: - (Tried to work, but, unproductive day)

2010-07-03: - (another unproductive day :-( )

2010-07-04: - Week end

2010-07-05: Worked on bundle/unbundle, it works for now, have to rewrite the patches,(Ugly code)


2010-07-06: Attended GSoC meeting on IRC, finished bundle/unbundle

2010-07-07: pull from remote and localrepo partically working


Work Progress:

Few things related revlog:

1) A script by tonfa, proof for parent delta.

2) mpm explaining how space inefficiency is caused.

3) A python script in mercurial repo to shrink revlog by sorting in topological order.

4th Week:

Earlier in this week I started working on revlog, most of the work is already done by tonfa. He shared patches. All I did was understand what he did, and rewrite those patches with minor changes.

strategy:

As mpm suggested, I have changed the way new revision is being added to existing revlog, and make corresponding changes in creating a given revision of file. The crucial step (performance affecting step) is creating a given version of file. previously to create a given version of a file first we take base revision , to that we keep adding the deltas till given revision. Earlier deltas are added in linear manner. So creating a given revision of file is simply seeking O(1) times.

Defination of base in revlog is not given anywhere. From revlog, a base is the version where we add full text of file to the revlog instead of delta.

example scenario:

We want to create a R1 revision of a file. The parents of R1 are P1 and P2. Base of R1 is B1.

Consider a situation where P2 is null, and P1 < B1. In this case I simply can't take B1 and create R1. I have first find base and parents of P1 and construct P1. The same case might repeat. where parent of P1 is < base of P1. So, first I have to find a base which is ancestor of all the parents, then create a chain of deltas from that base to construct a given revision.

Output of --profile says that, what ever the decrease in the performance is caused only by this function which used for constructing the delta chain. So, I need to find a better algorithm to construct the delta chain. The current algorithm for constructing the delta chain is.

    def deltachain(self, rev):
        chain = []
        while self.base(rev) != rev:
            chain.append(rev)
            rev = self.deltaparent(rev)
        chain.reverse()
        return rev, chain

    def deltaparent(self, rev):
        if self.base(rev) == rev:
            return nullrev
        elif self.flags(rev) & REVLOG_PARENTDELTA_FLAGS:
            return self.parentrevs(rev)[0]
        else:
            return rev-1

5th Week:

In the starting of the week, I stopped working on revlog for sometime to look at other part of API. I studied abit about shallow clones, and parent delta's role in it. Though I didn't study in much detail, got general idea about how things work in shallow clones. Later worked on wire protocol abit.

After some gap I again started working on revlog performance, did some exprimentation, fixed some issues (which brought back the performace when the revlog is non-parent deltad). From the results I concluded that the decrease in the performance is bacause of number of patches being applied in to construct a revision of a file. In the previous post I wrote that revlog slowed down becase of the deltachain(), and deltaparent() functions are repeated being called. Thought that is one of the reason, but not the major reason. Some important results are pasted below.

(All the experiments are done on mercurial repo, Right now, I don't have good enough computer for larger repos )

  • Old revlog, Normal repo

hg perfrevlog .hg/store/00manifest.i
! wall 0.570377 comb 0.570000 user 0.560000 sys 0.010000 (best of 18)
hg verify --time
Time: real 11.290 secs (user 10.790+0.000 sys 0.250+0.000)
  • New revlog (before fix), Normal repo

hg perfrevlog .hg/store/00manifest.i
! wall 0.646474 comb 0.650000 user 0.640000 sys 0.010000 (best of 16)
hg verify --time
Time: real 15.930 secs (user 15.350+0.000 sys 0.290+0.000)
  • New revlog (after fix), Normal repo

hg perfrevlog .hg/store/00manifest.i
! wall 0.589325 comb 0.550000 user 0.540000 sys 0.010000 (best of 17)
hg verify --time
Time: real 12.420 secs (user 11.700+0.000 sys 0.300+0.000)
  • New revlog (before fix), Repo with parent delta'ed manifest

hg perfrevlog .hg/store/00manifest.i
! wall 2.044643 comb 2.050000 user 2.020000 sys 0.030000 (best of 5)
hg verify --time
Time: real 42.450 secs (user 41.330+0.000 sys 0.300+0.000)
  • New revlog (after fix), Repo with parent delta'ed manifest

hg perfrevlog .hg/store/00manifest.i
! wall 1.967572 comb 1.970000 user 1.950000 sys 0.020000 (best of 6)
hg verify --time
Time: real 39.150 secs (user 37.470+0.000 sys 0.450+0.000)

Pradeepkumar (last edited 2010-10-22 18:17:21 by mpm)