Skip to content

Last Week in Pony - December 25, 2022

It was a week dominated by conversations about distributed cycle detection. Both the Pony development sync and Office Hours were almost entirely focused on the topic. Given the somewhat complicated nature of the topic, we expect that it will be a regular source of conversation for a while.

Items of Note

Pony Development Sync

Audio from the December 20th, 2022 sync is available.

And o my, what a long sync it was. So normally, sync runs up to an hour in length and then we end. This week the meeting ran for at least a couple hours.

There was a short 20 minutes or so of getting through the normal agenda to deal with various issues and PRs that have had activity during the last week and then, then the fun began. Over the next couple of hours, various approaches to the new distributed cycle detection protocol was discussed.

If you are interested in cycle detection and distributed algorithms then you might find it all interesting however, a lot of the conversation requires background reading of the Zulip stream as the content from it wasn’t always restated during the conversation.

For additional background, we suggest reading the summary of the December 16th Office Hours meeting.

If you are interested in attending a Pony Development Sync, please do! We have it on Zoom specifically because Zoom is the friendliest platform that allows folks without an explicit invitation to join. Every week, a development sync reminder with full information about the sync is posted to the announce stream on the Ponylang Zulip. You can stay up-to-date with the sync schedule by subscribing to the sync calendar. We do our best to keep the calendar correctly updated.

Office Hours

We have an open Zoom meeting every Friday for the community to get together and well, do whatever they want. In theory, Sean T. Allen “owns” the meeting and will often set an agenda. Anyone is welcome to show up and participate. Got a Pony related problem you need help solving and prefer to do it synchronously? Give Office Hours a try.

During the December 23rd Office Hours, we continued our discussion of distributed cycle detection (introduced in our previous LWIP post). Sean T Allen, Jason Carr, Ryan A Hagenson, Red, and Adrian Boyko were in attendance.

Sean kicked off the discussion by describing a scenario that would generate a lot of redundant cycle detection messages, as a reference between two actors comes and goes, repeatedly. It turns out that the optimization to deal with this scenario turned Sean’s “trace-based” algorithm into something much more like Adrian’s “gossip-based” algorithm. As a result, the focus has now shifted to developing the gossip-based approach.

In the protocol, actors are identified using numeric ids which are really just the address at which actors are allocated. Questions were raised about exactly when it would be safe to convert such an id to a pointer (remember, the Pony runtime is written in C) for the purpose of messaging the associated actor. One theory claimed that if an actor X was holding the id for an actor Y, it would be safe for X to assume that Y still exists if X had information indicating that Y was involved in a reference cycle. X could then convert Y’s id to a pointer and use that to message Y. However, we eventually recognized scenarios that disproved the theory and we are now assuming that it is only safe to message actors which we directly reference – no id-to-pointer tricks allowed!

Adrian did a show-and-tell of a NetLogo model which simulates possible evolutions of a graph of Pony actors (nodes) connected by references (edges). He plans to implement some version of the distributed cycle detection protocol within this model to (1) see if NetLogo simulations can discover any issues and (2) to compare/contrast with Joe’s formal Alloy model.

So, progress on the distributed cycle detection protocol continues and Sean is updating the project’s GitHub repository to reflect the decisions that came out of Office Hours.

Interested in giving attending Office Hours sometime? There’s a calendar you can subscribe to to stay up-to-date with the schedule. We do our best to keep the calendar up-to-date.

Highlighted Issues

Pony is a volunteer driven project. Nothing gets down without someone volunteering their time and helping to push things forward. Yes, there are folks who dedicate more time than others and a core team that dedicates time specifically for guiding Pony’s development. Everyone’s time is limited, so each week, we highlight a couple of issues that we hope will inspire someone to volunteer their time to help fix.

In addition to our highlighted issues, you can find more that we are looking for assistance on by visiting just about any repository in the ponylang org and looking for issues labeled with “help wanted”

If you are interested in working on either issue or any other issue from a Ponylang repository, you can get in touch on the issue in question or, even better, join us on the Ponylang Zulip to strike up a conversation.

This week’s issues as selected by Ryan A. Hagenson are:

Incorrect array inference

An interesting type inference issue was raised this week. This issue will require some additional investigation prior to fixing. Anyone looking to get their hands dirty with a compiler fix might want to give this issue a look! Someone taking this issue should feel comfortable with said investigation, which may entail looking at IR at different stages in compilation to isolate where the compiler is applying the wrong information.

ponyc issue #4281

Add “wrapping it up” end for Capabilities chapter

Currently the Tutorial is a great resource for a “tour of Pony in pieces” however to make it into a complete resource for learning good Pony practices we need to add helpful wrap-ups that ties relevant pieces together. This issue shows one such location where a wrap-up would be helpful. Because this is a fairly open-ended issue where it can be unclear what exactly is needed, Ryan A. Hagenson (hello!) is willing to help anyone who wishes to take this issue. Reach out to him on the issue ticket itself or over on the Ponylang Zulip in the #tutorial stream.

pony-tutorial issue #70

RFCs

Major changes in Pony go through a community driven process where members of the community can write up “requests for change” that detail what they think should be changed and why. RFCs can range from simple to complex. We welcome your participation.

This week’s RFC related activity was Ryan Hagenson working on the “Introduction of Empty Ranges” RFC. It should be ready to merge soon.

The “proposal syntax else … then for else keyword in conditional branches” user request issue also saw some activity in the comments, mostly Pony committers stating their lack of support for the requested change.


Last Week In Pony is a weekly blog post to catch you up on the latest news for the Pony programming language. To learn more about Pony, check out our website, our Twitter account @ponylang, or our Zulip community.

Got something you think should be featured? There’s a GitHub issue for that! Add a comment to the open “Last Week in Pony” issue.

Interested in making a change, or keeping up with changes to Pony? Check out the RFC repo. Contributors welcome!