Size: 986
Comment:
|
Size: 5501
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 4: | Line 4: |
== @``ME@ == Email: <<MailTo(deepu.aprjc AT SPAMFREE gmail DOT com)>> |
Email: <<MailTo(in3xes AT SPAMFREE gmail DOT com)>> |
Line 12: | Line 10: |
- Student at [[IIT|www.iitr.ac.in]] in India. Mathematics is my major. | - Student at [[http://www.iitr.ac.in|IIT]] in India. Mathematics is my major. |
Line 14: | Line 12: |
- Hardcore fan of C, Python, Haskell. You can find some of my small projects on [[Github|http://www.github.com/pradeepkumarg]]. - | - Fan of C, Python, Haskell. You can find some of my small projects on [[http://www.github.com/in3Xes|Github]]. - |
Line 16: | Line 14: |
- Love solving mathematics problems by programming. [[Here|http://www.github.com/pradeepkumar/projecteuler.git]] are solutions for the problems in [[Projecteuler|www.projecteuler.net]]. | - 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. |
Line 20: | Line 18: |
'''Google Summer of Code-2010''' | - Find me on [[http://www.twitter.com/in3Xes|Twitter]] |
Line 23: | Line 20: |
I am interested in "Parent delta". I can also work conversion tools as I have good idea about git and bazaar. But I am mainly focusing on Parent Delta Plan. | == Google Summer of Code-2010 == I am interested in "Parent delta". I can also work on conversion tools. But I am mainly focusing on Parent Delta Plan. |
Line 25: | Line 23: |
A word about project: 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. ============================================================================ === Proposal === TO DO(Tentative): Major: * Changes in revlog * Changes in wire protocol Changes in revlog: . Change revlog structure, now it appends the next delta to existing data.This helps in reconstrfucting a revision at O(1) seeks. If parent delta is implemented better compression can be achieved but, may have to compromise with number of seeks. * 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 . 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. Changes in wire protocol: * 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) About Me: . I am student at Indian Institute of Technology, Roorkee. I am currently pursing third year of 5 years degree, Mathematics as major. I 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. . I am project leader in IMG ( Information Management Group, IIT Roorkee, http://www.iitr.ac.in/IMG/ ), a group which manages intranet, . student databases, institute website. I have worked on PHP, Java in web development. Contact Information: . Name: Pradeepkumar Gayam Email: in3xes@gmail.com . IRC Nick: inXs_ (freenode.net) . Jabber ID: in3xes [AT] gmail.com (talk.google.com) Schedule: . 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 . 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. '''Timeline''' ''Changes in revlog structure'': [Total 3 weeks] * Parent delta model: . --> An intelligent algorithm to reduce number of seeks to reconstruct any revision.I think constructing revision is not . 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)] ''Changes in wire protocol'':[Total 3 to 3 1/2 weeks] * 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. * 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)] Link to my GSoC [[http://www.bitbucket.org/in3xes/gsoc|application]] on bitbucket.org |
|
Line 27: | Line 112: |
... ---- |
Email: <in3xes AT SPAMFREE gmail DOT com>
IRC Nick: inXs_
About Me:
- Student at IIT in India. Mathematics is my major.
- Fan of C, Python, Haskell. You can find some of my small projects on Github. -
- Love solving mathematics problems by programming. Solutions for the problems in Project Euler. Solved in python.
- Experienced user of git. Comfortable with Bazaar.
- Find me on Twitter
Google Summer of Code-2010
I am interested in "Parent delta". I can also work on conversion tools. But I am mainly focusing on Parent Delta Plan.
A word about project:
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 Parent Delta Plan. This implementation changes the structure of revlogs, so wire protocol has to be extended to allow backward compatibility.
============================================================================
Proposal
TO DO(Tentative): Major:
- Changes in revlog
- Changes in wire protocol
Changes in revlog:
- Change revlog structure, now it appends the next delta to existing data.This helps in reconstrfucting a revision at O(1) seeks. If
parent delta is implemented better compression can be achieved but, may have to compromise with number of seeks.
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
- 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.
Changes in wire protocol:
- 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)
About Me:
- I am student at Indian Institute of Technology, Roorkee. I am currently pursing third year of 5 years degree, Mathematics as major. I
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.
I am project leader in IMG ( Information Management Group, IIT Roorkee, http://www.iitr.ac.in/IMG/ ), a group which manages intranet,
- student databases, institute website. I have worked on PHP, Java in web development.
Contact Information:
- Name: Pradeepkumar Gayam
Email: in3xes@gmail.com
- IRC Nick: inXs_ (freenode.net)
- Jabber ID: in3xes [AT] gmail.com (talk.google.com)
Schedule:
- 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
- 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
Timeline
Changes in revlog structure: [Total 3 weeks]
- Parent delta model:
--> An intelligent algorithm to reduce number of seeks to reconstruct any revision.I think constructing revision is not
- 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)]
Changes in wire protocol:[Total 3 to 3 1/2 weeks]
- 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.
- 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)]
Link to my GSoC application on bitbucket.org