-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
captain.log - go-ipfs #2247
Comments
Have you thought about scripting on top of just network namespaces. It is essentially what everything uses to achieve separation: https://lwn.net/Articles/580893/ |
Yeah, thats actually what i'm falling back to now. Its looking more promising than dealing with docker stuff |
sent out an email or two, and now i'm changing focus to ipfs files work in the hopes of getting npm on ipfs unblocked. |
been working on getting libp2p extracted. The big goal is to have gx working nicely for go-ipfs so we can easily extract and modularize it. its 98% of the way there, just working on some testing CI stuff now that seems to not get along with the new vendoring scheme. should be resolved soon. In other news, i've been noticing some increased memory usage on latest master. Still needs to be inspected and investigated... |
Captains Log Update, Feb 23rdInspired by @diasdavid, I think its a good time to write up an update here. We're well on our way towards shipping an official release for 0.4.0, the features are all ready, the obvious bugs have been stomped on, and all thats left now is to convince ourselves that it works as intended. Towards that end, @dignifiedquire and I (mostly @dignifiedquire so far) have been working on constructing a test suite that will really stress out the codebase. The plan is to pump gigabytes (or more?) of data into an ipfs node every which way, and do sanity and integrity checks along the way, to make sure we arent screwing anything up. That work has started over here. In other news, since our last update we have begun the transition to using gx for all of our vendoring. This is really cool for a few different reasons, first: it allows us to neatly vendor our dependencies without comitting them all to our git repo, and making git clones take ages. It also allows us to more easily break up the ipfs codebase into smaller subpackages, since before 'breaking the packages up' meant moving them into the godeps folder and being frustrated whenever we tried to update them (don't search the irc logs for things i've said about vendoring, its not pretty). Another really cool side effect switching to gx has had is that we now get to really nicely dogfood our own system, since gx uses ipfs under the hood, every time we install ipfs from source, or run CI, we're putting more usage on the codebase. On to my final update, you might have noticed that your PR's test runs look a bit more green lately, a big thanks to @noffle and @chriscool for pushing a bunch of fixes to our tests through and making our CI more reliable. This is super awesome as it gives us more confidence about the code we're shipping, and lets us ship code more quickly (no more spamming the re-run button). How can you help?There are a few things that will help move go-ipfs along more quickly:
Thanks! |
go-ipfs Q2 roadmapI wrote up a roadmap for go-ipfs in Q2 2016. If you see something on this list you want to do, if it has an issue, claim the issue there. If there isnt an issue for it, go ahead and open one. Attention New ContributorsIf you're looking for something fairly easy to do, check out the Misc Issues section at the bottom of this list, most of those tasks are isolated easier things that we would love to have completed.
|
As discussed on the hangout of April 18, I'm listing the items I'm interested the most and that will unblock things in this quarter, ordered by priority:
|
Quick Q2 update: The yamux hang fixes have resolved a lot of what we previously felt were NAT traversal issues. I'm going to lower the priority of further NAT traversal work in favor of resource consumption tasks. This includes making bitswap smarter, improving the dht providers problem, and getting utp integration to a point where we can rely on it. |
Q2 updateQ2 is ending soon, we've got a lot of stuff done already. First off, i'd like That said, we still have a few things to get done if we want to stick to the Things left to do for Q2:
Taken off the Q2 milestone
Misc Extra Issues we'd like done
If anyone would like to help out, just pick up one of the issues, start |
If anyone wants a chance to take ownership of something, the go-ipfs-api repo needs some TLC. Namely:
|
A short updateHey Everyone, Thank you so much to everyone who has helped us get to where we are for this release, we're very grateful for all the support! |
IPFS 0.4.3 and IPLDWelcome back to another thrilling installment of the go-ipfs captains log. This time around I've got some news about our short and mid-term goals for the next few months. But before I get to that, I want to thank all of our contributors who have contributed to this release. This is going to be the best release of ipfs yet, with performance and stability improvements across the board (not to mention some nifty new features ). The changelog is gigantic. Ipfs v0.4.3 is almost out the door. We're going to push a third release candidate out soon that fixes a bug caused by the stdin changes. And when go1.7 finally releases we're going to build the official v0.4.3 binaries with go1.7. We're really excited for this for a number of reasons, go1.7 brings a large number of performance improvements across the board. It also adds support for macOS Sierra, running current OSX binaries on Sierra will result in instability issues due to changes in the operating system. Next up, we have a couple big milestones we're planning on working towards. The biggest of which is IPLD integration into go-ipfs. Its been a long road to this, but we're finally making it a major development priority in the go codebase. The current roadmap for accomplishing this looks roughly like:
There will be more parts to accomplishing that, and as we discover them they will be added to the ipld milestone. Full IPLD integration will ship in ipfs v0.5.0. The next big milestone we are working towards is interoperability with js-ipfs. We're already very close on this one, and just need a few changes on that end to get things working smoothly. You can track that here, on the js-ipfs interop milestone, but the main blockers are:
Our third big push in the coming months is reliability and resource consumption. AKA, making ipfs a better citizen of your computer. Towards this, we're working to improve test coverage on all of our packages, reducing the amount of memory, bandwidth, CPU and disk space that ipfs consumes (or is allowed to consume), and putting more stress testing on ipfs so that we can ship releases with more confidence. I have opened an issue in go-ipfs to track the progress towards more complete code coverage there, and have also opened a similar one in libp2p. Improving code coverage is the easiest way to help out and get your hands dirty with the codebase. There is a short how-to guide on checking the level of coverage here. For the resource consumption, we have a milestone to track all of the related issues. Getting these all closed will be a HUGE deal. People have been wanting a way to limit the bandwidth usage of ipfs for quite some time, so that is going to be the biggest aim on this milestone. But it's not the only focus, lowering the memory footprint will be killed for embedded applications of ipfs. Adding limits to the storage of the repo will make it easier to run nodes in shared environments so you won't have to worry about destroying your disks. And reducing the baseline CPU usage of ipfs will bring mobile ipfs that much closer. Beyond those milestones there is still a lot of work to be done. If you're a new contributor and looking to get involved, or even a current contributor just looking for something to do, take a look at the help wanted label in our issue tracker and see if anything piques your interest. A few curated issues that I think would be pretty good places to start are:
Aside from go-ipfs, we have a bunch of other exciting stuff going on. In no particular order:
Thanks for reading, and Happy Hacking! |
Update after a long day at seaI made a pass through all 500 of go-ipfs's open issues and tried to start getting a handle on them. I started by trying to make sure each issue was either marked 'help_wanted', meaning that its actionable. 'discussion' meaning that nothing is immediately actionable, but that people should read the issue and potentially weigh in. 'verify' meaning that the issue is reporting a problem that may or may not be resolved already, and finally, closing most of the rest if they are resolved. How you can helpNow that this 'quick' pass has been done, theres lots to do. One very helpful thing would be to take a look at all the issues that need verification, seeing if the problem reported has been resolved or not, and then commenting that back in the issue. This will help us either close more issues, or generate more actionable items. There are also now a pretty significant number of issues marked 'help wanted' (137 total at the time of writing). These issues are things that should be actionable and that we need some help with. Take a look through that list and see if anything looks interesting to you, then claim it and start hacking. Whats next?Sometime in the next few weeks i'm going to go through the entire list again and try to further refine the tagging and titles on issues to clean things up. The more people help out in closing out issues, the easier that whole thing is gonna be. Thanks for reading! Happy Hacking |
Ipfs Development Update (July 2017)Its been a while since we had a good update on the direction of ipfs Past that, we want to make sure that transferring those large files is Once we have accomplished that (or perhaps concurrently) we will push for We are also working on improving our pubsub. Work is starting towards a In addition to those goals, we have a somewhat separate push towards more ipld As always, If you want to help out, there are many ways to participate. Check out help wanted issues, or drop by IRC (#ipfs on freenode) and say hi! See our contributing doc for more info. |
January 26, 2016
Working on figuring out how to set up various networks virtually for testing. Found a couple GUI tools that appeared to work, but seemed to have a fairly high learning curve (and werent easily configrable in the ways i wanted):
Now i'm working on using dockers
network
subcommand and getting frustrated with how useless it is. it does 60% of what i want, but does it in a way that makes it impossible for me to complete the final 40%. I'm hoping the dev's get back to me eventually on a PR i filed to maybe make this easier (they probably will continue to ignore it).The text was updated successfully, but these errors were encountered: