Re: Developer Sync postponed to the 12th at 10 am Pacific.

2018-07-11 Thread Judith Malnick
Hi everyone,
Just a reminder that the developer sync is coming up tomorrow at 10:00 am
at Mesosphere. If you'd like to attend in person please email me to let me
know. Otherwise, we'll see you on Zoom <https://zoom.us/j/885219228>!
Judith

On Mon, Jul 2, 2018 at 12:07 PM Judith Malnick 
wrote:

> Hi All,
>
> We're postponing the Mesos Developer sync to *July 12th at 10:00 am
> Pacific time* to account for the US holiday and to make the meeting more
> Europe-friendly. It will be in person at Mesosphere or remotely by Zoom
> <https://zoom.us/j/885219228>. Please RSVP by emailing me if you'd like
> to attend in person.
>
> Find the agenda and join details here
> <https://docs.google.com/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9RDjxaTA0S7lzwDA/edit?usp=sharing>,
> and if you have anything to add feel free.
>
> See you on Thursday the 12th!
> Judith
> --
> Judith Malnick
> Community Manager
> 310-709-1517
>


-- 
Judith Malnick
Community Manager
310-709-1517


Re: [Proposal] Replicated log storage compaction

2018-07-11 Thread Judith Malnick
Hey Ilya,
If you'd like to generate some real-time conversation about your proposal
this might be a good thing to talk about during tomorrow's developer sync
at 10:00 am Pacific time. If you're interested please feel free to put it
on the agenda
<https://docs.google.com/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9RDjxaTA0S7lzwDA/edit?usp=sharing>
!
All the best!
Judith

On Fri, Jul 6, 2018 at 2:35 PM Benjamin Mahler  wrote:

> I was chatting with Ilya on slack and I'll re-post here:
>
> * Like Jie, I was hoping for a toggle (maybe it should start default off
> until we have production experience? sounds like Ilya has already
> experience with it running in test clusters so far)
>
> * I was asking whether this would be considered a flaw in leveldb's
> compaction algorithm. Ilya didn't see any changes in recent leveldb
> releases that would affect this. So, we probably should file an issue to
> see if they think it's a flaw and whether our workaround makes sense to
> them. We can reference this in the code for posterity.
>
> On Fri, Jul 6, 2018 at 2:24 PM, Jie Yu  wrote:
>
> > Sounds good to me.
> >
> > My only ask is to have a way to turn this feature off (flag, env var,
> etc)
> >
> > - Jie
> >
> > On Fri, Jul 6, 2018 at 1:39 PM, Vinod Kone  wrote:
> >
> >> I don't know about the replicated log, but the proposal seems find to
> me.
> >>
> >> Jie/BenM, do you guys have an opinion?
> >>
> >> On Mon, Jul 2, 2018 at 10:57 PM Santhosh Kumar Shanmugham <
> >> sshanmug...@twitter.com.invalid> wrote:
> >>
> >>> +1. Aurora will hugely benefit from this change.
> >>>
> >>> On Mon, Jul 2, 2018 at 4:49 PM Ilya Pronin 
> >>> wrote:
> >>>
> >>> > Hi everyone,
> >>> >
> >>> > I'd like to propose adding "manual" LevelDB compaction to the
> >>> > replicated log truncation process.
> >>> >
> >>> > Motivation
> >>> >
> >>> > Mesos Master and Aurora Scheduler use the replicated log to persist
> >>> > information about the cluster. This log is periodically truncated to
> >>> > prune outdated log entries. However the replicated log storage is not
> >>> > compacted and grows without bounds. This leads to problems like
> >>> > synchronous failover of all master/scheduler replicas happening
> >>> > because all of them ran out of disk space.
> >>> >
> >>> > The only time when log storage compaction happens is during recovery.
> >>> > Because of that periodic failovers are required to control the
> >>> > replicated log storage growth. But this solution is suboptimal.
> >>> > Failovers are not instant: e.g. Aurora Scheduler needs to recover the
> >>> > storage which depending on the cluster can take several minutes.
> >>> > During the downtime tasks cannot be (re-)scheduled and users cannot
> >>> > interact with the service.
> >>> >
> >>> > Proposal
> >>> >
> >>> > In MESOS-184 John Sirois pointed out that our usage pattern doesn’t
> >>> > work well with LevelDB background compaction algorithm. Fortunately,
> >>> > LevelDB provides a way to force compaction with DB::CompactRange()
> >>> > method. Replicated log storage can trigger it after persisting
> learned
> >>> > TRUNCATE action and deleting truncated log positions. The compacted
> >>> > range will be from previous first position of the log to the new
> first
> >>> > position (the one the log was truncated up to).
> >>> >
> >>> > Performance impact
> >>> >
> >>> > Mesos Master and Aurora Scheduler have 2 different replicated log
> >>> > usage profiles. For Mesos Master every registry update (agent
> >>> > (re-)registration/marking, maintenance schedule update, etc.) induces
> >>> > writing a complete snapshot which depending on the cluster size can
> >>> > get pretty big (in a scale test fake cluster with 55k agents it is
> >>> > ~15MB). Every snapshot is followed by a truncation of all previous
> >>> > entries, which doesn't block the registrar and happens kind of in the
> >>> > background. In the scale test cluster with 55k agents compactions
> >>> > after such truncations take ~680ms.
> >>> >
> >>> > To reduce the performance impact for the Master compaction can be
> >>> > triggered only after more than some configurable number of keys were
> >>> > deleted.
> >>> >
> >>> > Aurora Scheduler writes incremental changes of its storage to the
> >>> > replicated log. Every hour a storage snapshot is created and
> persisted
> >>> > to the log, followed by a truncation of all entries preceding the
> >>> > snapshot. Therefore, storage compactions will be infrequent but will
> >>> > deal with potentially large number of keys. In the scale test cluster
> >>> > such compactions took ~425ms each.
> >>> >
> >>> > Please let me know what you think about it.
> >>> >
> >>> > Thanks!
> >>> >
> >>> > --
> >>> > Ilya Pronin
> >>> >
> >>>
> >>
> >
>


-- 
Judith Malnick
Community Manager
310-709-1517


Re: Supporting Seccomp in Mesos

2018-07-11 Thread Judith Malnick
Hey Andrei,
If you'd like to generate some live discussion you're welcome to put this
doc on the agenda for the Developer Sync
<https://docs.google.com/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9RDjxaTA0S7lzwDA/edit?usp=sharing>
tomorrow at 10 am Pacific. We're always looking for content to discuss
there :)
Best!
Judith

On Wed, Jul 11, 2018 at 7:28 AM Andrei Budnik  wrote:

> Hi Folks,
>
> Here is the design doc for Seccomp support in Mesos:
>
> https://docs.google.com/document/d/146FJJ0sDi1sp_HQxVUg-vhqVSTEsdCeD4If3b1xCeec
>
> Seccomp is a security facility in the Linux kernel, which allows a user to
> specify syscall filtering rules per a process. This design doc includes
> various aspects of the implementation of Seccomp in Mesos, including choice
> of the configuration format for Seccomp profile.
>
> Thanks for your time reviewing and providing feedback for the design!
>
> Cheers,
> Andrei
>


-- 
Judith Malnick
Community Manager
310-709-1517


Developer Sync postponed to the 12th at 10 am Pacific.

2018-07-02 Thread Judith Malnick
Hi All,

We're postponing the Mesos Developer sync to *July 12th at 10:00 am Pacific
time* to account for the US holiday and to make the meeting more
Europe-friendly. It will be in person at Mesosphere or remotely by Zoom
<https://zoom.us/j/885219228>. Please RSVP by emailing me if you'd like to
attend in person.

Find the agenda and join details here
<https://docs.google.com/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9RDjxaTA0S7lzwDA/edit?usp=sharing>,
and if you have anything to add feel free.

See you on Thursday the 12th!
Judith
-- 
Judith Malnick
Community Manager
310-709-1517


Developer Sync at Twitter - June 7th

2018-06-04 Thread Judith Malnick
Hi all,

Twitter has graciously offered to host the Mesos Developer Sync again this
month. If you'd like to attend in person please RSVP to me by email. You
can also attend remotely via Google Hangouts
<https://hangouts.google.com/hangouts/_/skqvhjotzrdc5prdde74kjaufae>.

Details:

   - *Date, Time: *Thursday, June 7th, 3:00 pm Pacific time
   -
*Location: Twitter HQ, 1355 Market St #900, *
* San Francisco, CA 94103*
   - *Link: *Join with  <https://zoom.us/j/885219228>Google Hangouts
   <https://hangouts.google.com/hangouts/_/skqvhjotzrdc5prdde74kjaufae>.
   - *Agenda**:* Stateful services on Aurora, more here
   
<https://docs.google.com/a/mesosphere.io/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9RDjxaTA0S7lzwDA/edit?usp=drive_web>


You *must RSVP* for in-person attendance because of building security. If
you plan to attend in person please email me to let me know ahead of time.

See you Thursday!

Best!
Judith
-- 
Judith Malnick
Community Manager
310-709-1517


Suggest topics for next Mesos Dev Sync

2018-06-01 Thread Judith Malnick
Hi all,

The next Mesos Developer Sync
<https://docs.google.com/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9RDjxaTA0S7lzwDA/edit?usp=sharing>
is coming up and we'd love to hear about any planning, development, tooling
or processes you've been working on!

If you have recent work you'd like to highlight or solicit feedback on,
please feel free to add it to the agenda doc
<https://docs.google.com/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9RDjxaTA0S7lzwDA/edit?usp=sharing>
directly (or email me if you'd like to discuss it first).

All the best!
Judith

-- 
Judith Malnick
Community Manager
310-709-1517


Re: Doc-a-thon Thursday

2018-05-23 Thread Judith Malnick
Hey all, forgot to attach the projects spreadsheet. Sign up for something
interesting, or add your own idea here
<https://docs.google.com/spreadsheets/d/12Nnu3gA_aMaQ_9fB_zHFb4jCqf_VywaOaobmFiXNNKA/edit?usp=sharing>
!
See you tomorrow!

On Tue, May 22, 2018 at 3:18 PM, <jmaln...@mesosphere.io> wrote:

> Hi everyone,
>
> I'm looking forward to seeing you at the doc-a-thon on Thursday! A couple
> important reminders:
>
> - Sign up for a project on this spreadsheet [1] before the event!
> - If you're attending in person please make sure to RSVP on the meetup
> page [2] so we make sure to get enough food.
> - Check the meetup page for details about entering the building.
> - Remember to bring your computer!
>
> Looking forward to working with you :)
> Judith
>
> [1] https://docs.google.com/document/d/1-biNAKITW5mFpYlAE0gH-
> ycReTHVOv7pak_NTNL17x4/edit?usp=sharing
> [2] https://www.meetup.com/Bay-Area-Mesos-User-Group/events/249744827/
>
> Doc-a-thon
> *RSVP:* https://www.meetup.com/Bay-Area-Mesos-User-Group/events/249744827/
> <https://www.google.com/url?q=https%3A%2F%2Fwww.meetup.com%2FBay-Area-Mesos-User-Group%2Fevents%2F249744827%2F=D=1527034692304000=AFQjCNEX7JKTF-v8xGcDgGlQVBa1IRJR9Q>
> *Zoom*: https://zoom.us/j/290676741
> <https://www.google.com/url?q=https%3A%2F%2Fzoom.us%2Fj%2F290676741=D=1527034692304000=AFQjCNFf8G0pBrr8ztQuHqRC393Jd4Fyaw>
> *Agenda*: https://docs.google.com/document/d/1-biNAKITW5mFpYlAE0gH-
> ycReTHVOv7pak_NTNL17x4/edit?usp=sharing
> 
> -
>
> Work on the Apache Mesos documentation in person or on video chat. Win fun
> prizes!
>
> Don't forget to bring a laptop with you. Mesosphere will provide dinner
> and drinks.
>
> Schedule (Pacific time):
> 3 - 3:30 PM: Discuss docs projects, split into groups
> 3:30 - 6:30 PM: Work on docs
> 6:30 - 7 PM: Present progress
> 7 - 8 PM: Drinks and hangout!
>
> Propose your projects and find details:
> https://docs.google.com/document/d/1-biNAKITW5mFpYlAE0gH-
> ycReTHVOv7pak_NTNL17x4/edit?usp=sharing
>
> Need inspiration? Watch the presentations from the last doc-a-thon here:
> https://youtu.be/fyUGCXkEnn0
>
> We're excited to see you and the awesome progress you make improving the
> Mesos docs!
> *When*
> Thu 2018-05-24 3pm – 7:50pm Pacific Time
>
> *Where*
> HH-Observatory (60), SF-V-Unity (12) (map
> <https://maps.google.com/maps?q=HH-Observatory+%2860%29,+SF-V-Unity+%2812%29=en>
> )
>
> *Who*
> •
> jmaln...@mesosphere.io - creator
> •
> Benjamin Hindman
> •
> bev...@mesosphere.io
> •
> Till Toenshoff
> •
> bmah...@mesosphere.io
> •
> m...@mesosphere.io
> •
> Core Team
> •
> abud...@mesosphere.io
> •
> Greg Mann
> •
> benjamin.bann...@mesosphere.io
> •
> j...@mesosphere.io
> •
> chhs...@mesosphere.io
> •
> Alex Rukletsov
> •
> Gilbert Song
> •
> Jie Yu
> •
> vi...@mesosphere.io
> •
> Kapil Arya
> •
> qzh...@mesosphere.io
> •
> jos...@mesosphere.io
> •
> j...@mesosphereinc.onmicrosoft.com
> •
> Artem Harutyunyan
> •
> gas...@mesosphere.io
> •
> jearlenba...@mesosphere.io
> •
> psan...@mesosphere.io
> •
> ssteg...@mesosphere.io
> •
> amu...@mesosphere.io
> •
> Timothy Anderegg
> *Attachments*
> Apache Mesos Docathon
> <https://docs.google.com/a/mesosphere.io/document/d/1-biNAKITW5mFpYlAE0gH-ycReTHVOv7pak_NTNL17x4/edit?usp=drive_web>
>



-- 
Judith Malnick
Community Manager
310-709-1517


Re: [mesos-mail] Re: [Performance WG] Notes from meeting today

2018-05-17 Thread Judith Malnick
Hi, Just uploaded the video. It will be done processing in a
couple minutes, and when it finishes you can find it here
https://youtu.be/LyFYTVOaJfQ

On Thu, May 17, 2018 at 4:51 PM, Zhitao Li <zhitaoli...@gmail.com> wrote:

> Hi Ben,
>
> Thanks a lot, this is super informative.
>
> One question: will you write a blog/doc on how to generate flamescope
> graphs from either a micro-benchmark, or a real cluster? Also, do you know
> what configuration for compiling should be used to preserve proper debug
> symbols for both Mesos and 3rdparty libraries?
>
> On Wed, May 16, 2018 at 5:44 PM, Benjamin Mahler <bmah...@apache.org>
> wrote:
>
>> +Judith
>>
>> There should be a recording. Judith, do you know where they get posted?
>>
>> Benjamin, glad to hear it's useful, I'll continue doing it!
>>
>> On Wed, May 16, 2018 at 4:41 PM Gilbert Song <gilb...@mesosphere.io>
>> wrote:
>>
>> > Do we have the recorded video for this meeting?
>> >
>> > On Wed, May 16, 2018 at 1:54 PM, Benjamin Bannier <
>> > benjamin.bann...@mesosphere.io> wrote:
>> >
>> > > Hi Ben,
>> > >
>> > > thanks for taking the time to edit and share these detailed notes.
>> Being
>> > > able to asynchronously see the great work folks are doing surfaced is
>> > > great, especially when put into context with thought like here.
>> > >
>> > >
>> > > Benjamin
>> > >
>> > > > On May 16, 2018, at 8:06 PM, Benjamin Mahler <bmah...@apache.org>
>> > wrote:
>> > > >
>> > > > Hi folks,
>> > > >
>> > > > Here are some notes from the performance meeting today.
>> > > >
>> > > > (1) First I did a demo of flamescope, you can find it here:
>> > > > https://github.com/Netflix/flamescope
>> > > >
>> > > > It's a very useful tool, hopefully we can make it easier for users
>> to
>> > > > generate the data that we can drop into flamescope when reporting
>> any
>> > > > performance issues. One of the open questions is how `perf
>> --call-graph
>> > > > dwarf` compares to `perf -g` but with mesos compiled with frame
>> > > pointers. I
>> > > > haven't had time to check this yet.
>> > > >
>> > > > When playing with the tool, it was easy to find some hot spots in
>> the
>> > > given
>> > > > cluster I was looking at (which was not necessarily representative).
>> > For
>> > > > the agent, jie filed:
>> > > >
>> > > > https://issues.apache.org/jira/browse/MESOS-8901
>> > > >
>> > > > And for the master, I noticed that metrics, state json generation
>> (no
>> > > > surprise), and a particular spot in the allocator were very
>> expensive.
>> > > >
>> > > > Metrics we'd like to address via migration to push gauges (Zhitao
>> has
>> > > > offered to help with this effort):
>> > > >
>> > > > https://issues.apache.org/jira/browse/MESOS-8914
>> > > >
>> > > > The state generation we'd like to address via streaming state into a
>> > > > separate actor (and providing filtering as well), this will get
>> further
>> > > > investigated / prioritized very soon:
>> > > >
>> > > > https://issues.apache.org/jira/browse/MESOS-8345
>> > > >
>> > > > (2) Kapil discussed benchmarks for the long standing "offer
>> starvation"
>> > > > issue:
>> > > >
>> > > > https://issues.apache.org/jira/browse/MESOS-3202
>> > > >
>> > > > I'll send out an email or document soon with some background on this
>> > > issue
>> > > > as well as our options to address it.
>> > > >
>> > > > Let me know if you have any questions or feedback!
>> > > >
>> > > > Ben
>> > >
>> > > --
>> > > You received this message because you are subscribed to the Google
>> Groups
>> > > "Apache Mesos Mail Lists" group.
>> > > Visit this group at
>> > https://groups.google.com/a/mesosphere.io/group/mesos-
>> > > mail/.
>> > > For more options, visit
>> > https://groups.google.com/a/mesosphere.io/d/optout
>> > > .
>> > >
>> >
>>
>
>
>
> --
> Cheers,
>
> Zhitao Li
>



-- 
Judith Malnick
Community Manager
310-709-1517


Developer Sync at Twitter - May 10th

2018-05-07 Thread Judith Malnick
Hi all,

We'll be having our developer sync this Thursday at 3 pm hosted at Twitter,
and we hope you can join either in person or by Zoom.

Details:

   - *Date, Time: *Thursday, May 10th, 3:00 pm Pacific time
   -
*Location: Twitter HQ, 1355 Market St #900, *
* San Francisco, CA 94103*
   - *Link: *Join with Zoom <https://zoom.us/j/885219228>.
   - *Agenda: *Resizing persistent volumes, push and pull gauges, more here
   
<https://docs.google.com/a/mesosphere.io/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9RDjxaTA0S7lzwDA/edit?usp=drive_web>


You *must RSVP* for in-person attendance because of building security. If
you plan to attend in person please email me to let me know ahead of time.

See you Thursday!
Judith
-- 
Judith Malnick
Community Manager
310-709-1517


Doc-a-thon - May 24th

2018-04-13 Thread Judith Malnick
Hi everyone,

The next Mesos Doc-a-thon will be on May 24th from 3:00-8:00 pm Pacific
time.

You can join in person (RSVP here
<https://www.meetup.com/Bay-Area-Mesos-User-Group/events/249744827/>) or
online (link to join <https://zoom.us/j/290676741>).

We'll be brainstorming project suggestions over the next few weeks, so if
you think of any sections of documentation that need improvement, please
note them in the agenda doc
<https://docs.google.com/document/d/1-biNAKITW5mFpYlAE0gH-ycReTHVOv7pak_NTNL17x4/edit?usp=sharing>
.

Looking forward to seeing you on the 24th!

All the best,
Judith
-- 
Judith Malnick
Community Manager
310-709-1517


Doc-a-thon May 24th?

2018-04-11 Thread Judith Malnick
Hi All,

I'd like the next Mesos Doc-a-thon to happen on May 24th from 3-8pm Pacific
time. I picked the date because it's best for Ben H.

Does anyone have major reasons why this wouldn't work? If not I'll put it
on the calendar and start setting it up.

Best,
Judith
-- 
Judith Malnick
Community Manager
310-709-1517


Re: This Month in Mesos - March 2018

2018-04-03 Thread Judith Malnick
Thanks for the update!

On Sat, Mar 31, 2018 at 7:44 AM Gilbert Song <gilb...@apache.org> wrote:

> Thanks for the awesome update, Greg!
>
> - Gilbert
>
> On Fri, Mar 30, 2018 at 6:20 PM, Vinod Kone <vinodk...@gmail.com> wrote:
>
> > Thanks for the update Greg!
> >
> > Sent from my phone
> >
> > > On Mar 30, 2018, at 3:08 PM, Greg Mann <g...@mesosphere.io> wrote:
> > >
> > > Oh hai there Apache Mesos Community!
> > >
> > > Back again with your monthly update on current events in the
> Mesosverse:
> > >
> > >
> > > *Working Groups*
> > >
> > > Below you'll find a brief summary of the group meetings from this past
> > > month, as well as some info about related work that's been happening in
> > the
> > > project. Working group meetings can be found on the Mesos community
> > calendar
> > > <http://mesos.apache.org/community/#events-calendar>, and you should
> > feel
> > > free to add agenda items beforehand!
> > >
> > >
> > > *API Working Group*
> > >
> > > [Agenda Doc
> > > <https://docs.google.com/document/d/1JrF7pA6gcBZ6iyeP5YgDG62ifn0cZ
> > IBWw1f_Ler6fLM/edit#>
> > > ]
> > >
> > > Next Meeting: April 3 @ 11am PST
> > >
> > > In March we held the first two meetings of the new API working group!
> > This
> > > has brought about a revival of our perennial discussion on the
> preferred
> > > Mesos release cadence; you can expect an updated release policy in our
> > > documentation shortly. It's looking like the new policy will be in line
> > > with what we have been doing in practice for the last few releases, so
> no
> > > big changes there.
> > >
> > >
> > > Zhitao also presented his ongoing work on new operations which will
> allow
> > > the growing/shrinking of persistent volumes. You can find his design
> doc
> > > here
> > > <https://docs.google.com/document/d/1Z16okNG8mlf2eA6NyW_PUmBfNFs_
> > 6EOaPzPtwYNVQUQ/edit>
> > > .
> > >
> > >
> > > *Containerization Working Group*
> > >
> > > [Agenda Doc
> > > <https://docs.google.com/document/d/1z55a7tLZFoRWVuUxz1FZwgxkHeugt
> > c2nHR89skFXSpU/edit>
> > > ]
> > >
> > > Next meeting: April 5 @ 9am PST
> > >
> > > Two big items in the containerization space this month:
> > >
> > >
> > >   - Improvements to the Docker containerizer/executor to more
> gracefully
> > >   handle bugs in the Docker daemon: MESOS-8572
> > >   <https://issues.apache.org/jira/browse/MESOS-8572>
> > >   - Configurable network namespaces for nested containers: MESOS-8534
> > >   <https://issues.apache.org/jira/browse/MESOS-8534>
> > >
> > > *Community Working Group*
> > >
> > > [Agenda Doc
> > > <https://docs.google.com/document/d/1vgi434dYkkZHs49EK4F4eMmM-
> > 3JG4f3qg-N5En-4ubg/edit#>
> > > ]
> > >
> > > Next Meeting: April 9 @ 10:30am PST
> > >
> > > Community working group had a preliminary discussion about the next
> > > quarterly doc-a-thon, and discussed the possibility of spinning up a
> new
> > > Releases Working Group. We also discussed plans for the next MesosCon,
> > and
> > > how we may want to evolve that event going forward.
> > >
> > >
> > > *Performance Working Group*
> > >
> > > [Agenda Doc
> > > <https://docs.google.com/document/d/12hWGuzbqyNWc2l1ysbPcXwc0pzHEy
> > 4bodagrlNGCuQU/edit>
> > > ]
> > >
> > > Next meeting: April 18 @ 10am PST
> > >
> > > We now have a performance dashboard
> > > <https://issues.apache.org/jira/secure/RapidBoard.jspa?
> > rapidView=238=planning>
> > > which lets you view tickets in ASF JIRA which have been marked as
> > > performance-related - take a look!
> > >
> > >
> > > Some additional copy elimination
> > > <https://issues.apache.org/jira/browse/MESOS-8628> patches have been
> > > merged, with more yet to come. The group also discussed the near-term
> > > performance roadmap, which includes optimization of
> > > authentication/authorization, master state computation, and the
> > libprocess
> > > HTTP code; see the agenda document for more details.
> > >
> > >
> > >
> > > Until next time,
> > > -Greg
> >
>
-- 
Judith Malnick
Community Manager
310-709-1517


Re: Welcome Chun-Hung Hsiao as Mesos Committer and PMC Member

2018-03-19 Thread Judith Malnick
Congrats Chun! 

On Mon, Mar 12, 2018 at 2:50 PM, Benjamin Mahler <bmah...@apache.org> wrote:

> Welcome Chun! It's been great discussing things with you so far and thanks
> for the all the hard work!
>
> On Sat, Mar 10, 2018 at 9:14 PM, Jie Yu <yujie@gmail.com> wrote:
>
> > Hi,
> >
> > I am happy to announce that the PMC has voted Chun-Hung Hsiao as a new
> > committer and member of PMC for the Apache Mesos project. Please join me
> > to congratulate him!
> >
> > Chun has been an active contributor for the past year. His main
> > contributions to the project include:
> > * Designed and implemented gRPC client support to libprocess (MESOS-7749)
> > * Designed and implemented Storage Local Resource Provider (MESOS-7235,
> > MESOS-8374)
> > * Implemented part of the CSI support (MESOS-7235, MESOS-8374)
> >
> > Chun is friendly and humble, but also intelligent, insightful, and
> > opinionated. I am confident that he will be a great addition to our
> > committer pool. Thanks Chun for all your contributions to the project so
> > far!
> >
> > His committer checklist can be found here:
> > https://docs.google.com/document/d/1FjroAvjGa5NdP29zM7-
> > 2eg6tLPAzQRMUmCorytdEI_U/edit?usp=sharing
> >
> > - Jie
> >
>



-- 
Judith Malnick
Community Manager
310-709-1517


Submit a talk to Mesosphere Advance - due March 16th

2018-03-02 Thread Judith Malnick
*Hi Everyone, Mesosphere is proud to announce that the CFP is open
<https://www.surveymonkey.com/r/europe18-mesosphereadvance> for Mesosphere
Advance, a new conference focused on DC/OS and Apache Mesos best practices,
user stories, and internals. The European conference will be on May 1st,
2018 in Copenhagen, and we'd love to hear from you! We're especially
excited about proposals from Mesos users and contributors about: - Mesos:
Deep dives into internals, storage, security, and networking- Use cases:
ROI and business outcomes enabled by Mesos, DC/OS, and fast data frameworks
(i.e. real-time decision-making, connected cars, financial analysis,
marketing personalization)- Operations: How to easily deploy and scale your
fast data applicationsSubmit a talk to Mesosphere Advance!
<https://www.surveymonkey.com/r/europe18-mesosphereadvance>Mesosphere
Advance is colocated with KubeCon + CloudNativeCon
<https://events.linuxfoundation.org/events/kubecon-cloudnativecon-europe-2018/>,
which starts the day after, on May 2nd. If you're planning on going use
code KCCNEU18SPON and receive a 20% off discount.Looking forward to reading
your proposals.  All the best, Judith *--
Judith Malnick
Community Manager
310-709-1517


Re: This Month in Mesos - February 2018

2018-02-28 Thread Judith Malnick
Thanks for the update Greg! Much appreciated 

On Wed, Feb 28, 2018 at 12:50 PM, Greg Mann <g...@mesosphere.io> wrote:

> Dear Apache Mesos Community,
>
> Hello all! I've got a short update for you this month with recent
> happenings in Mesosland:
>
>
> *Working Groups*
>
> Here's the latest from the working groups. Working group meetings can be
> found on the Mesos community calendar
> <http://mesos.apache.org/community/#events-calendar>, and you can feel
> free to add agenda items beforehand!
>
>
> *✨ NEW!! API Working Group ✨*
>
> [Agenda Doc
> <https://docs.google.com/document/d/1JrF7pA6gcBZ6iyeP5YgDG62ifn0cZIBWw1f_Ler6fLM/edit#>
> ]
>
> *First Meeting! *March 6 @ 11am PST
>
> Join us for the first meeting of the API working group! If you plan to
> attend and have an item for discussion, please add it to the agenda doc!
>
>
> *Containerization Working Group*
>
> [Agenda Doc
> <https://docs.google.com/document/d/1z55a7tLZFoRWVuUxz1FZwgxkHeugtc2nHR89skFXSpU/edit>
> ]
>
> Next meeting: March 8 @ 9am PST
>
> There were discussions around providing isolation of the container root
> filesystem, as well as configurable network namespaces for child containers
> in a task group. JIRA issues and design docs for these items can be found
> in the agenda doc.
>
> *Community Working Group*
>
> [Agenda Doc
> <https://docs.google.com/document/d/1vgi434dYkkZHs49EK4F4eMmM-3JG4f3qg-N5En-4ubg/edit#>
> ]
>
> Next Meeting: March 12 @ 10:30am PST
>
> Talked about new working groups, and brainstormed ideas for upcoming blog
> posts. In addition to the new API working group, there is a storage working
> group in the works.
>
>
> *Performance Working Group*
>
> [Agenda Doc
> <https://docs.google.com/document/d/12hWGuzbqyNWc2l1ysbPcXwc0pzHEy4bodagrlNGCuQU/edit>
> ]
>
> Next meeting: March 21 @ 10am PST
>
>
>
> *1.5.0 Release*
> Woohoo! Mesos 1.5.0 is out! A big thanks goes out to Gilbert Song, who
> managed this release. You can check out the release blog here
> <https://medium.com/apache-mesos/apache-mesos-9c979d475d8b>. Notable
> changes in this version include:
>
>- Container Storage Interface (CSI) support
>- v1 API performance improvements
>- Many improvements in Windows support
>- Container image garbage collection
>
>
> That's all for this month. Keep your eyes peeled for some new blog
> content, coming soon!!
>
> Until next time,
> -Greg
>
>


-- 
Judith Malnick
Community Manager
310-709-1517


Re: API working group

2018-02-26 Thread Judith Malnick
Done :)

On Mon, Feb 26, 2018 at 10:07 AM, Avinash Sridharan <avin...@mesosphere.io>
wrote:

> +Deepak, +Pires,
>
> Hi Judith,
>  Could you kindly add the above emails to the invite as well?
>
> Thanks,
> Avinash
>
> On Fri, Feb 23, 2018 at 5:03 PM, Greg Mann <g...@mesosphere.io> wrote:
>
> > Thanks so much, Judith!!
> >
> > I'm looking forward to seeing everybody at the first meeting :)
> >
> > Cheers,
> > Greg
> >
> > On Fri, Feb 23, 2018 at 4:57 PM, Judith Malnick <jmaln...@mesosphere.io>
> > wrote:
> >
> > > Hey all we have a winner! The first meeting will be on March 6th at
> 11am
> > > Pacific time :) I'll add all your emails to the calendar invite. Thanks
> > for
> > > voting!
> > >
> > > Greg, I'll add an agenda doc with the Zoom info to the calendar invite.
> > > Please populate that doc with the agenda, and let me know if you need
> any
> > > help!
> > >
> > > Best,
> > > Judith
> > >
> > > On Thu, Feb 22, 2018 at 3:27 PM, Judith Malnick <
> jmaln...@mesosphere.io>
> > > wrote:
> > >
> > > > Hey all I'm closing the doodle poll
> > > > <https://doodle.com/poll/hknkmtkazc45vrg4> tomorrow so if you
> haven't
> > > > voted for a time yet please do :)
> > > >
> > > > On Tue, Feb 20, 2018 at 10:30 AM, Judith Malnick <
> > jmaln...@mesosphere.io
> > > >
> > > > wrote:
> > > >
> > > >> Hi everyone,
> > > >>
> > > >> Please vote for your favorite WG times in this doodle poll
> > > >> <https://doodle.com/poll/hknkmtkazc45vrg4>. Greg and Vinod, please
> > let
> > > >> me know ASAP if you need me to add poll options.
> > > >>
> > > >> Best!
> > > >> Judith
> > > >>
> > > >> On Wed, Feb 14, 2018 at 6:00 PM, Greg Mann <g...@mesosphere.io>
> > wrote:
> > > >>
> > > >>> Sounds good to me. Thanks, Judith!!
> > > >>>
> > > >>> Greg
> > > >>>
> > > >>> On Wed, Feb 14, 2018 at 11:14 AM, Judith Malnick <
> > > jmaln...@mesosphere.io
> > > >>> >
> > > >>> wrote:
> > > >>>
> > > >>> > I'm glad there's so much interest.
> > > >>> >
> > > >>> > Greg, can I put you down as the leader and Vinod can I put you
> down
> > > as
> > > >>> the
> > > >>> > co-leader? If that's ok, I'll follow up with a doodle poll to
> find
> > a
> > > >>> date.
> > > >>> >
> > > >>> > Best!
> > > >>> > Judith
> > > >>> >
> > > >>> > On Tue, Feb 13, 2018 at 8:21 PM, Chun-Hung Hsiao <
> > > >>> chhs...@mesosphere.io>
> > > >>> > wrote:
> > > >>> >
> > > >>> > > I'm in. Especially, I'd like to continue the work of adapting
> > gRPC
> > > >>> into
> > > >>> > > libprocess,
> > > >>> > > so we could have a gRPC-based API!
> > > >>> > >
> > > >>> >
> > > >>> >
> > > >>> >
> > > >>> > --
> > > >>> > Judith Malnick
> > > >>> > Community Manager
> > > >>> > 310-709-1517 <(310)%20709-1517>
> > > >>> >
> > > >>>
> > > >>
> > > >>
> > > >>
> > > >> --
> > > >> Judith Malnick
> > > >> Community Manager
> > > >> 310-709-1517 <(310)%20709-1517>
> > > >>
> > > >
> > > >
> > > >
> > > > --
> > > > Judith Malnick
> > > > Community Manager
> > > > 310-709-1517 <(310)%20709-1517>
> > > >
> > >
> > >
> > >
> > > --
> > > Judith Malnick
> > > Community Manager
> > > 310-709-1517
> > >
> >
>
>
>
> --
> Avinash Sridharan, Mesosphere
> +1 (323) 702 5245
>



-- 
Judith Malnick
Community Manager
310-709-1517


Re: API working group

2018-02-23 Thread Judith Malnick
Hey all we have a winner! The first meeting will be on March 6th at 11am
Pacific time :) I'll add all your emails to the calendar invite. Thanks for
voting!

Greg, I'll add an agenda doc with the Zoom info to the calendar invite.
Please populate that doc with the agenda, and let me know if you need any
help!

Best,
Judith

On Thu, Feb 22, 2018 at 3:27 PM, Judith Malnick <jmaln...@mesosphere.io>
wrote:

> Hey all I'm closing the doodle poll
> <https://doodle.com/poll/hknkmtkazc45vrg4> tomorrow so if you haven't
> voted for a time yet please do :)
>
> On Tue, Feb 20, 2018 at 10:30 AM, Judith Malnick <jmaln...@mesosphere.io>
> wrote:
>
>> Hi everyone,
>>
>> Please vote for your favorite WG times in this doodle poll
>> <https://doodle.com/poll/hknkmtkazc45vrg4>. Greg and Vinod, please let
>> me know ASAP if you need me to add poll options.
>>
>> Best!
>> Judith
>>
>> On Wed, Feb 14, 2018 at 6:00 PM, Greg Mann <g...@mesosphere.io> wrote:
>>
>>> Sounds good to me. Thanks, Judith!!
>>>
>>> Greg
>>>
>>> On Wed, Feb 14, 2018 at 11:14 AM, Judith Malnick <jmaln...@mesosphere.io
>>> >
>>> wrote:
>>>
>>> > I'm glad there's so much interest.
>>> >
>>> > Greg, can I put you down as the leader and Vinod can I put you down as
>>> the
>>> > co-leader? If that's ok, I'll follow up with a doodle poll to find a
>>> date.
>>> >
>>> > Best!
>>> > Judith
>>> >
>>> > On Tue, Feb 13, 2018 at 8:21 PM, Chun-Hung Hsiao <
>>> chhs...@mesosphere.io>
>>> > wrote:
>>> >
>>> > > I'm in. Especially, I'd like to continue the work of adapting gRPC
>>> into
>>> > > libprocess,
>>> > > so we could have a gRPC-based API!
>>> > >
>>> >
>>> >
>>> >
>>> > --
>>> > Judith Malnick
>>> > Community Manager
>>> > 310-709-1517 <(310)%20709-1517>
>>> >
>>>
>>
>>
>>
>> --
>> Judith Malnick
>> Community Manager
>> 310-709-1517 <(310)%20709-1517>
>>
>
>
>
> --
> Judith Malnick
> Community Manager
> 310-709-1517 <(310)%20709-1517>
>



-- 
Judith Malnick
Community Manager
310-709-1517


Re: API working group

2018-02-22 Thread Judith Malnick
Hey all I'm closing the doodle poll
<https://doodle.com/poll/hknkmtkazc45vrg4> tomorrow so if you haven't voted
for a time yet please do :)

On Tue, Feb 20, 2018 at 10:30 AM, Judith Malnick <jmaln...@mesosphere.io>
wrote:

> Hi everyone,
>
> Please vote for your favorite WG times in this doodle poll
> <https://doodle.com/poll/hknkmtkazc45vrg4>. Greg and Vinod, please let me
> know ASAP if you need me to add poll options.
>
> Best!
> Judith
>
> On Wed, Feb 14, 2018 at 6:00 PM, Greg Mann <g...@mesosphere.io> wrote:
>
>> Sounds good to me. Thanks, Judith!!
>>
>> Greg
>>
>> On Wed, Feb 14, 2018 at 11:14 AM, Judith Malnick <jmaln...@mesosphere.io>
>> wrote:
>>
>> > I'm glad there's so much interest.
>> >
>> > Greg, can I put you down as the leader and Vinod can I put you down as
>> the
>> > co-leader? If that's ok, I'll follow up with a doodle poll to find a
>> date.
>> >
>> > Best!
>> > Judith
>> >
>> > On Tue, Feb 13, 2018 at 8:21 PM, Chun-Hung Hsiao <chhs...@mesosphere.io
>> >
>> > wrote:
>> >
>> > > I'm in. Especially, I'd like to continue the work of adapting gRPC
>> into
>> > > libprocess,
>> > > so we could have a gRPC-based API!
>> > >
>> >
>> >
>> >
>> > --
>> > Judith Malnick
>> > Community Manager
>> > 310-709-1517 <(310)%20709-1517>
>> >
>>
>
>
>
> --
> Judith Malnick
> Community Manager
> 310-709-1517 <(310)%20709-1517>
>



-- 
Judith Malnick
Community Manager
310-709-1517


Re: API working group

2018-02-20 Thread Judith Malnick
Hi everyone,

Please vote for your favorite WG times in this doodle poll
<https://doodle.com/poll/hknkmtkazc45vrg4>. Greg and Vinod, please let me
know ASAP if you need me to add poll options.

Best!
Judith

On Wed, Feb 14, 2018 at 6:00 PM, Greg Mann <g...@mesosphere.io> wrote:

> Sounds good to me. Thanks, Judith!!
>
> Greg
>
> On Wed, Feb 14, 2018 at 11:14 AM, Judith Malnick <jmaln...@mesosphere.io>
> wrote:
>
> > I'm glad there's so much interest.
> >
> > Greg, can I put you down as the leader and Vinod can I put you down as
> the
> > co-leader? If that's ok, I'll follow up with a doodle poll to find a
> date.
> >
> > Best!
> > Judith
> >
> > On Tue, Feb 13, 2018 at 8:21 PM, Chun-Hung Hsiao <chhs...@mesosphere.io>
> > wrote:
> >
> > > I'm in. Especially, I'd like to continue the work of adapting gRPC into
> > > libprocess,
> > > so we could have a gRPC-based API!
> > >
> >
> >
> >
> > --
> > Judith Malnick
> > Community Manager
> > 310-709-1517 <(310)%20709-1517>
> >
>



-- 
Judith Malnick
Community Manager
310-709-1517


Re: Looking for shepherd

2018-02-15 Thread Judith Malnick
Thanks Ben!

On Mon, Feb 12, 2018 at 2:17 PM, Benjamin Mahler <bmah...@apache.org> wrote:

> In case others also look at this thinking this still needs a shepherd, this
> has been committed.
>
> On Mon, Feb 12, 2018 at 6:39 AM, Tomek Janiszewski <jani...@gmail.com>
> wrote:
>
> > I need someone to review and merge this change
> > https://reviews.apache.org/r/65569/
> > It should fix ARM tests.
> >
>



-- 
Judith Malnick
Community Manager
310-709-1517


Canceled - Dev Sync This Month

2018-02-15 Thread Judith Malnick
Hi All,

The dev sync that would have been today at 3 pm Pacific is canceled, and
I've pulled the event off the calendar. Stay tuned for details about next
month's meeting.

Best!
Judith

-- 
Judith Malnick
Community Manager
310-709-1517


Re: API working group

2018-02-14 Thread Judith Malnick
I'm glad there's so much interest.

Greg, can I put you down as the leader and Vinod can I put you down as the
co-leader? If that's ok, I'll follow up with a doodle poll to find a date.

Best!
Judith

On Tue, Feb 13, 2018 at 8:21 PM, Chun-Hung Hsiao <chhs...@mesosphere.io>
wrote:

> I'm in. Especially, I'd like to continue the work of adapting gRPC into
> libprocess,
> so we could have a gRPC-based API!
>



-- 
Judith Malnick
Community Manager
310-709-1517 <(310)%20709-1517>


Re: Soliciting Hackathon Ideas

2018-02-09 Thread Judith Malnick
Hi all, these are great! Are they currently captured in Jira tickets or
issues of some kind? If we had a beginner label we might be able to
advertise those issues in other hackathons like Hacktober too :) I'd be
happy to create tickets for the issues but I don't want to accidentally
create a ton of duplicates if they already exist.

On Wed, Feb 7, 2018 at 6:31 PM, Andrew Schwartzmeyer <
and...@schwartzmeyer.com> wrote:

> Thanks all for the ideas! (And keep them coming if you have more, it's not
> for another couple weeks.) I'll make sure to put together a list and run it
> by a few of you before I fly out.
>
>
> On 02/07/2018 3:22 pm, Benjamin Mahler wrote:
>
>> -list to bcc
>>
>> Hey Tim! Sorry that this fell through the cracks, Vinod and I can shepherd
>> this.
>>
>> What time zone are you in? We can set up a hangout to go over it.
>>
>> Ben
>>
>> On Wed, Feb 7, 2018 at 8:13 AM, Timothy Anderegg <
>> timothy.ander...@gmail.com
>>
>>> wrote:
>>>
>>
>> I've been looking for a new shepherd for that for a while, if there are
>>> any
>>> takers I'm happy to rebase against the latest code!
>>>
>>> Tim
>>>
>>> On Wed, Feb 7, 2018 at 11:10 AM James Peach <jor...@gmail.com> wrote:
>>>
>>> >
>>> >
>>> > > On Feb 6, 2018, at 11:21 PM, Benjamin Mahler <bmah...@apache.org>
>>> wrote:
>>> > >
>>> > > +1 Versioned documentation would be heroic!
>>> >
>>> > Based on https://reviews.apache.org/r/52064/ ?
>>> >
>>> > >
>>> > > On Tue, Feb 6, 2018 at 5:49 PM Vinod Kone <vinodk...@gmail.com>
>>> wrote:
>>> > >
>>> > >> Versioned documentation!
>>> > >>
>>> > >> Sent from my iPhone
>>> > >>
>>> > >>> On Feb 6, 2018, at 4:37 PM, Benjamin Mahler <bmah...@apache.org>
>>> > wrote:
>>> > >>>
>>> > >>> A couple of ideas from the performance related working group:
>>> > >>>
>>> > >>> -Use protobuf arenas for all non-trivial outbound master messages
>>> > (easy)
>>> > >>> This can be done piecemeal.
>>> > >>> -Use move semantics (take a Message&&) in all of the master message
>>> > >>> handlers to reduce copying (medium) This one can be done piecemeal.
>>> For
>>> > >>> example Master::statusUpdate would be a good one to start with.
>>> > >>> -Audit the Registrar code to use move semantics to reduce copying
>>> > >> (medium)
>>> > >>>
>>> > >>> If there are any UI programmers:
>>> > >>>
>>> > >>> -Consider a webui "refresh", try to find a new set of fonts and
>>> style,
>>> > >>> could be fun.
>>> > >>>
>>> > >>> On Fri, Feb 2, 2018 at 12:47 PM, Andrew Schwartzmeyer <
>>> > >>> and...@schwartzmeyer.com> wrote:
>>> > >>>
>>> > >>>> Hello all,
>>> > >>>>
>>> > >>>> Next month I'll be attending HackIllinois (
>>> https://hackillinois.org/)
>>> > >> as
>>> > >>>> an open-source mentor. It's a huge student-run hackathon at the
>>> > >> University
>>> > >>>> of Illinois at Urbana-Champaign, running from February 23rd to the
>>> > 25th.
>>> > >>>> Students from a multitude of schools will be attending (they even
>>> bus
>>> > >> them
>>> > >>>> in). The hackathon has an open-source focus, and while there will
>>> be
>>> > >> many
>>> > >>>> projects for the students to work on, I want to make sure Mesos
>>> gets
>>> > >> some
>>> > >>>> attention too.
>>> > >>>>
>>> > >>>> I am asking you all for open issues and new ideas for small,
>>> > >>>> beginner-friendly projects that could fit a two-day Hackathon
>>> project.
>>> > >> For
>>> > >>>> Mesos, I'm looking through our open issues labeled "easyfix",
>>> > >> "beginner",
>>> > >>>> or "newbie", which actually returns 74 results! If you have
>>> anything
>>> > in
>>> > >>>> particular that you think would be a good fit, please let me know.
>>> I'd
>>> > >> like
>>> > >>>> to go with a list of vetted issues so I don't accidentally start
>>> some
>>> > >>>> students in on a giant can of worms. Our excellent new Beginner
>>> > >> Contributor
>>> > >>>> Guide will be a huge help too.
>>> > >>>>
>>> > >>>> Thanks,
>>> > >>>>
>>> > >>>> Andy
>>> > >>>>
>>> > >>>> P.S. If any of you also want to attend, let me know, and I'll get
>>> you
>>> > in
>>> > >>>> touch with their director.
>>> > >>>>
>>> > >>
>>> >
>>> >
>>>
>>>


-- 
Judith Malnick
Community Manager
310-709-1517 <(310)%20709-1517>


Access changes to Mesosphere CI Infrastructure

2018-02-02 Thread Judith Malnick
Hi Everyone,

Mesosphere is refactoring the user interface for our CI infrastructure, and
in the meantime, we need to temporarily close off public access to CI build
logs and the ability for community contributors to trigger builds. DC/OS
and Marathon contributors might see changes to their permissions. Mesos
contributors should be unaffected.

You will still be able to see high-level CI status in GitHub, and engage
with committers on pull requests and through all the normal communication
channels (Slack, email, Jira, etc.). If you need additional detail about
your CI results, don't hesitate to ask a Mesosphere shepherd for more
complete logs. If you aren't sure who to contact or are having trouble
getting access to the information you need, please email me or reach out on
Slack <https://chat.dcos.io/> (@judith.mesosphere); I'm glad to connect you
with someone who can help.

Building the new public CI interface is expected to take at least a few
months. You will probably need to request an account to access your full CI
logs in the new system. We will send out updates as we make progress, but
in the meantime, please don't hesitate to ask if you have any questions.

All the best!

Judith


-- 
Judith Malnick
Community Manager
310-709-1517


Re: [Containerization WG] Sync tomorrow

2018-01-25 Thread Judith Malnick
The meeting recording is up here
<https://www.youtube.com/playlist?list=PLP2ZAmhgcm5UVWQAlgi6y3j_qSFSMWWdI>.

On Wed, Jan 24, 2018 at 3:12 PM, Jie Yu <yujie@gmail.com> wrote:

> Instruction on how to join the sync can be found here:
> https://docs.google.com/document/d/1z55a7tLZFoRWVuUxz1FZwgxkHeugt
> c2nHR89skFXSpU/edit#
>
> - Jie
>
> On Wed, Jan 24, 2018 at 3:09 PM, Jie Yu <yujie@gmail.com> wrote:
>
>> Hi folks,
>>
>> In tomorrow's sync, we'll be discussing the plan for the next Mesos
>> release in the containerization area. We'll be reviewing this planning
>> spreadsheet and update it accordingly:
>> https://docs.google.com/spreadsheets/d/1_e-YRvRDoX766ZdzoE1T
>> tXx3eJUx7fBoZkBx_1TwPjY/edit
>>
>> Please join us if you're interested!
>>
>> - Jie
>>
>
>


-- 
Judith Malnick
Community Manager
310-709-1517


Re: [Performance] Reminder: Working group meeting tomorrow Jan 17 @ 10 am PST

2018-01-22 Thread Judith Malnick
Recording is here https://youtu.be/HyouVMj19VI

On Wed, Jan 17, 2018 at 10:47 AM, Benjamin Mahler <bmah...@apache.org>
wrote:

> Thanks Meng for presenting!
>
> For those who missed it, notes were added to the agenda:
> https://docs.google.com/document/d/12hWGuzbqyNWc2l1ysbPcXwc0pzHEy
> 4bodagrlNGCuQU/edit#
>
> On Tue, Jan 16, 2018 at 2:00 PM, Benjamin Mahler <bmah...@apache.org>
> wrote:
>
> > On the agenda so far, we'll have Meng Zhu present some recent benchmark
> > findings that compare the performance of the v0, v1 (protobuf / json)
> > master APIs.
> >
> > There have also been some initial discussions into streaming state into a
> > different actor and/or using a filter language like GraphQL to reduce the
> > amount of state information sent over the wire. If folks are keen to
> > express any requirements there, would love to have you join.
> >
> > If you have any other topics you would like to discuss, please add it to
> > the agenda:
> >
> > https://docs.google.com/document/d/12hWGuzbqyNWc2l1ysbPcXwc0pzHEy
> > 4bodagrlNGCuQU/edit?usp=sharing
> >
> > Ben
> >
>



-- 
Judith Malnick
Community Manager
310-709-1517


Re: 2018/01/18 Mesos Developer Meeting

2018-01-22 Thread Judith Malnick
Thanks to everyone who participated in the meeting. The recording is here
if you weren't able to make it in person:
https://youtu.be/_sefA8W39P0

On Wed, Jan 17, 2018 at 5:23 PM, Benjamin Hindman <
benjamin.hind...@gmail.com> wrote:

> We'll have a developer meeting tomorrow at 3 PM PT. You'll find the agenda
> here:
> https://docs.google.com/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9R
> DjxaTA0S7lzwDA/edit
>
> Some highlights from the agenda are discussions about 1.5.0 features and
> some recent performance improvements!
>
> You can join the meeting via Zoom by clicking here:
> https://zoom.us/j/885219228
>
> See you all then!
>



-- 
Judith Malnick
Community Manager
310-709-1517


Re: [Containerization WG] Sync tomorrow

2018-01-11 Thread Judith Malnick
And here is the YouTube video <https://youtu.be/_b5szYfQpTw>.

On Thu, Jan 11, 2018 at 11:19 AM, Jie Yu <yujie@gmail.com> wrote:

> For those of you who cannot attend the meeting, the recording can be found
> here:
> https://zoom.us/recording/play/aSXMraCSUcOqx-L5yrM_
> Qf2vdeVTyffv4eAfkA2wqgtWPYq9s6KW1ksE8r85muwm
>
> - Jie
>
> On Wed, Jan 10, 2018 at 6:48 PM, Jie Yu <yujie@gmail.com> wrote:
>
> > Hi,
> >
> > I'll be talking about the CSI support we introduced in 1.5, and probably
> > should some demo!
> >
> > The notes and agenda (and how to join) can be found here:
> > https://docs.google.com/document/d/1z55a7tLZFoRWVuUxz1FZwgxkHeugt
> > c2nHR89skFXSpU/edit#
> >
> > See u all tomorrow!
> >
> > - Jie
> >
>



-- 
Judith Malnick
Community Manager
310-709-1517


Re: [Community WG] Cancel Jan 15th meeting for US holiday

2018-01-06 Thread Judith Malnick
Done!

On Fri, Jan 5, 2018 at 5:46 PM, Vinod Kone <vinodk...@gmail.com> wrote:

> SGTM
>
> @vinodkone
>
> On Jan 5, 2018, at 4:43 PM, Judith Malnick <jmaln...@mesosphere.io> wrote:
>
> Hi everyone,
>
> I'd like to propose canceling the January 15th Community working group
> meeting because of Martin Luther King Jr. Day in the US. The next meeting
> would then be January 29th, 2018. Let me know what you think.
>
> Best!
> Judith
>
> --
> Judith Malnick
> Community Manager
> 310-709-1517 <(310)%20709-1517>
>
>


-- 
Judith Malnick
Community Manager
310-709-1517


[Community WG] Cancel Jan 15th meeting for US holiday

2018-01-05 Thread Judith Malnick
Hi everyone,

I'd like to propose canceling the January 15th Community working group
meeting because of Martin Luther King Jr. Day in the US. The next meeting
would then be January 29th, 2018. Let me know what you think.

Best!
Judith

-- 
Judith Malnick
Community Manager
310-709-1517 <(310)%20709-1517>


Canceled: Developer Sync Tomorrow

2017-12-20 Thread Judith Malnick
Hi all,

The winter holidays are upon us and many people are already out on
vacation, so we will be canceling the developer sync that was planned for
tomorrow. The next sync will be on January 18th, please feel free to add
any topics you'd like to the agenda
<https://docs.google.com/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9RDjxaTA0S7lzwDA/edit?usp=sharing>
!

As always please let me know if you have any questions! See you in January,
and happy holidays.

Best,
Judith

-- 
Judith Malnick
Community Manager
310-709-1517 <(310)%20709-1517>


Reminder - Apache Mesos Survey 2017

2017-12-12 Thread Judith Malnick
Hi Everyone,

Don't miss your chance to take the annual Apache Mesos Survey
<https://www.getfeedback.com/r/aCyoDVea/> this year! It's an easy
opportunity to weigh in on what features are most valuable to you, and it
helps us understand the most common use cases and how Mesos could improve.

Take the survey <https://www.getfeedback.com/r/aCyoDVea/>.

You could also win some great prizes: a  DJI Global Spark Drone
<https://store.dji.com/product/spark?gclid=EAIaIQobChMI7dGZgd3B1wIVFL3sCh11UgLbEAAYAiAAEgJPCvD_BwE>
or Apple Watch 3 <https://www.apple.com/apple-watch-series-3/>!

It means a lot to us to hear from you about how you're using Mesos, so
stand up and make your voice heard. If you have any questions don't
hesitate to email me.

All the best!

Judith
-- 
Judith Malnick
Community Manager
310-709-1517


Re: Fwd: Request for Participation: The Right Metrics for the Right Project

2017-12-08 Thread Judith Malnick
I'll put it on the agenda for the next community WG Meeting :)

On Wed, Dec 6, 2017 at 2:53 PM, Me via Boomerang <jmaln...@mesosphere.io>
wrote:

> Message moved to top of Inbox by Boomerang because there was no reply (view
> this conversation
> <https://mail.google.com/a/mesosphere.io/?shva=1#all/16014516dbe92033>).
>
> Don't want this notification email in the future? Go to
> https://b4g.baydin.com/settings and uncheck the 'At the top of your
> Inbox' option under Settings. Please note that your Boomeranged messages
> would no longer return to the top of your Inbox.
>



-- 
Judith Malnick
Community Manager
310-709-1517


Re: Quarterly Doc-a-thon Scheduling

2017-11-21 Thread Judith Malnick
Hey all, I didn't get any objections to the 11th so I went ahead and
scheduled it! It's on the Mesos Calendar, and I created a meetup event :)

Please RSVP
<https://www.meetup.com/Bay-Area-Mesos-User-Group/events/245293694/> if
you'll be attending in person so we know how much pizza to get, and feel
free to ping me with questions!

On Tue, Nov 21, 2017 at 4:46 PM, Gilbert Song <gilb...@mesosphere.io> wrote:

> Thank you, Judith! Will definitely join!
>
> - Gilbert
>
> On Tue, Nov 21, 2017 at 2:07 PM, Judith Malnick <jmaln...@mesosphere.io>
> wrote:
>
>> Hi Gilbert,
>>
>> The date I'm suggesting is January 11th (which is the second Thursday to
>> occur in January). Hope it works for you :)
>>
>> Cheers,
>> Judith
>>
>> --
>> Get the Boomerang Email App <http://boomerangapp.com/mobile> on your
>> phone
>>
>>
>> --
>> On Mon, Nov 20, 2017 at 6:17 PM, Gilbert Song <gilb...@apache.org> wrote:
>>
>
>


-- 
Judith Malnick
Community Manager
310-709-1517


Re: DC/OS (Mesos) portability

2017-11-21 Thread Judith Malnick
That's the one, thank you!

On Tue, Nov 21, 2017 at 3:56 PM, Tomas Barton <barton.to...@gmail.com>
wrote:

> Hi,
>
> there ain't much differences between Debian stable and Ubuntu LTS. Ubuntu
> 18.04 should be pretty much the same as Debian 9 (as far as Mesos
> dependencies concerned).
>
> Currently in DC/OS if you install a framework such as Elastic it will
> fetch incorrect libmesos-bundle (built for CentOS 7). libmesos-1.4.0.so
> will be dynamically linked to libssl.so.1.0.0 while in Debian 9 there's
> libssl.so.1.0.2. Similar problem for libcurl and few others. If DC/OS
> wouldn't bundle libcurl and simply require appropriate distribution package
> during installation, there wouldn't be any compatibility issue. Or is there
> a need for using different curl versions in each DC/OS package?
>
> DC/OS 1.11 will no longer overwrite LD_LIBRARY_PATH in Mesos executor,
> which eliminates one of current issues (Thx Alex!)
>
> In fact if libmesos would be loaded from system path instead of fetching a
> resource from an URI during task deployment we wouldn't need to include
> libmesos in the library bundle at all.
>
> I think we can move to discussion to an approprite DC/OS ticket and
> resolve issues on DC/OS side first, then come back to Mesos if necessary.
>
> Probably https://jira.mesosphere.com/browse/DCOS_OSS-25 ?
>
> Tomas
>
> On 22 November 2017 at 00:01, Alex Rukletsov <a...@mesosphere.com> wrote:
>
>> I think Tomas means Mesos dependencies, like libcurl, and not libmesos. If
>> I understand him correctly, he is saying that part of Mesos dependencies
>> is
>> not distributed with Mesos binaries, and, if not included into a
>> distribution, might complicate installation process.
>>
>> On Fri, Nov 3, 2017 at 8:54 PM, Joseph Wu <jos...@mesosphere.io> wrote:
>>
>> > It isn't clear to me how DC/OS would benefit from (ongoing) work to
>> > create/push Mesos packages.  DC/OS downloads and builds all of its
>> > component parts from source.
>> >
>> > Also, we (Mesos devs) are hoping to get more frameworks to move away
>> from
>> > using libmesos (including the API shims), in favor of using the HTTP
>> APIs
>> > instead.  So we have a dis-incentive to provide a libmesos bundle.
>> >
>> > On Fri, Nov 3, 2017 at 8:23 AM, Tomas Barton <barton.to...@gmail.com>
>> > wrote:
>> >
>> > > Hi,
>> > >
>> > > I'd like to contribute to DC/OS with a Debian/Suse/... support.
>> > > Surprisingly on Debian most of the compatibility issues could be
>> solved
>> > by
>> > > a sequence of symlinks.
>> > >
>> > > Why Mesos dev list? :)
>> > >
>> > > Currently the biggest issue is connected to distributing
>> libmesos-bundle
>> > > tar archive, which contain the libmesos.so library and several others.
>> > The
>> > > library is dynamically linked with certain libcurl,  libssl, libsvn
>> etc.
>> > > that might differ between distributions.
>> > >
>> > > I can think of a few solutions:
>> > >  1. Compile Mesos (master and agent) using static build (which as I
>> > > understood aren't currently fully supported/propagated).
>> > >  2. Generate bundle during automatic builds for certain supported
>> > > distributions.
>> > >  3. Include libmesos in standard distribution channels - rpm, deb
>> > packages
>> > > (that might take same time).
>> > >
>> > > The last solution would be the best, but Mesos release cycle is very
>> > > different from distributions release cycle. It might be complicated to
>> > > synchronize.
>> > >
>> > > I coudn't find scripts for generating libmesos-bundle, but it's a
>> archive
>> > > with libraries from build server, e.g.
>> > > https://downloads.mesosphere.io/libmesos-bundle/libmesos-
>> > > bundle-1.10-1.4-63e0814.tar.gz
>> > > (32MB).
>> > >
>> > > So the question is, whether Mesos website could provide prebuild
>> libmesos
>> > > bundle for each release and platform, that could be afterwards used
>> e.g.
>> > in
>> > > DC/OS packages?
>> > >
>> > > Last issue might be connected to an executor that eventually might
>> need
>> > OS
>> > > family ENV variable with OS release version, so that it can fetch
>> > > corresponding libbundle archive. Such information is typically parsed
>> > from
>> > > `uname -a` or `lsb_release -sri` (if available). This way DC/OS could
>> be
>> > > running on a cluster with diverse OS versions/distributions.
>> > >
>> > > Thanks for your time! I'd like to hear your opinion.
>> > >
>> > > Regards,
>> > > Tomas Barton
>> > >
>> >
>>
>
>


-- 
Judith Malnick
Community Manager
310-709-1517


Doc-a-thon - January 11th, 2018

2017-11-21 Thread Judith Malnick
Hi all,

I'm excited to announce the next Apache Mesos doc-a-thon!

*Date:* January 11th, 2018

Location:

Mesosphere HQ

88 Stevenson Street

San Francisco, CA

Schedule (Pacific time):

3 - 3:30 PM: Discuss docs projects, split into groups

3:30 - 6:30 PM: Work on docs

6:30 - 7 PM: Present progress

7 - 8 PM: Drinks and hangout!


If you will be attending in person, please RSVP
<https://www.meetup.com/Bay-Area-Mesos-User-Group/events/245293694/> so we
know how much food to get.
If you plan on attending remotely, you can with this Zoom link
<https://zoom.us/j/290676741>.
Feel free to brainstorm project proposals on this planning doc
<https://docs.google.com/document/d/1-biNAKITW5mFpYlAE0gH-ycReTHVOv7pak_NTNL17x4/edit?usp=sharing>.


Let me know if you have any questions. I'm looking forward to seeing all of
you and your amazing projects!

All the Best,
Judith
-- 
Judith Malnick
Community Manager
310-709-1517


Re: Quarterly Doc-a-thon Scheduling

2017-11-21 Thread Judith Malnick
Hi Gilbert,

The date I'm suggesting is January 11th (which is the second Thursday to
occur in January). Hope it works for you :)

Cheers,
Judith

-- 
Get the Boomerang Email App  on your phone


--
On Mon, Nov 20, 2017 at 6:17 PM, Gilbert Song  wrote:


Quarterly Doc-a-thon Scheduling

2017-11-20 Thread Judith Malnick
Hi all,

Since the last doc-a-thon was so great, I'd love to get another on the
calendar for next quarter.

The last one was on the 2nd Thursday of October, so It might make sense to
have the next one on the 2nd Thursday of January. (*January 11th,
3-8pm Pacific time*).

Does this date sound good to you? If I get many nos I'll follow up with a
doodle poll.

All the best!
Judith

-- 
Judith Malnick
Community Manager
310-709-1517


Take the 2017 Apache Mesos Survey

2017-11-16 Thread Judith Malnick
Hi Everyone,

It's our favorite time of year again–time for the annual Apache Mesos Survey
<https://www.getfeedback.com/r/aCyoDVea/>! This is an easy opportunity to
weigh in on what features are most valuable to you, and it helps us all
understand the most common use cases and how Mesos could improve.

You could also win some great prizes this year: a  DJI Global Spark Drone
<https://store.dji.com/product/spark?gclid=EAIaIQobChMI7dGZgd3B1wIVFL3sCh11UgLbEAAYAiAAEgJPCvD_BwE>
or Apple Watch 3 <https://www.apple.com/apple-watch-series-3/>!

Take the survey <https://www.getfeedback.com/r/aCyoDVea/>.

If you want to learn more about the survey, read about the results from
last year <https://mesosphere.com/blog/apache-mesos-survey-2016/>, and of
course, feel free to reach out to me with questions.

All the best!

Judith

-- 
Judith Malnick
Community Manager
310-709-1517


Developers Sync canceled for Thanksgiving

2017-11-14 Thread Judith Malnick
Hi All,

Just a heads up that the Developers Sync is canceled this month because it
falls during the Thanksgiving holiday.

See you at the next meeting on December 21st :)

Best!
Judith
-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


[Community WG] [Performance WG] [Containerization WG] Attend MesosCon NA Townhall

2017-10-23 Thread Judith Malnick
Hi everyone!

If you are planning to go to MesosCon Europe, I want to encourage you to go
to the Mesos Townhall session <http://sched.co/CYCe> to meet fellow WG
participants in person over food and drinks. Don't miss the chance to put a
name to a chat handle :)

There will be townhalls on DC/OS <http://sched.co/CYD3>, Marathon/Chronos
<http://sched.co/CYCf>, and Kubernetes <http://sched.co/CdHs> at the same
time in case those interest you more.

In case you haven't registered yet there's still time. You can use code
MCEUMU20 to get 20% off registration
<http://events.linuxfoundation.org/events/mesoscon-europe/attend/register>.

All the best,
Judith
-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


Re: [Performance WG] Meeting this Wednesday

2017-10-18 Thread Judith Malnick
Hi all, In case you weren't able to make the meeting in person, you can
watch the recording here <https://youtu.be/4XnotRgxuWw>.

On Mon, Oct 16, 2017 at 3:02 PM, Benjamin Mahler <bmah...@apache.org> wrote:

> Hi folks,
>
> We have another performance working group meeting this Wednesday at 10am
> PST, you can add the calendar here: http://mesos.apache.org/community/
>
> The plan for the meeting is for Yan and Ilya to go over benchmark results
> for master failover and the HTTP API, respectively. We'll also talk about
> some recent updates to support arena allocation for protobuf messages, and
> some of the ongoing copy elimination work.
>
> Feel free to add items to the agenda! And if you're interested in
> contributing code (even if you don't know where to start), feel free to
> reach out. We'd love to have the help and can point you in the right
> direction. :)
>
> Ben
>



-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


Today's Mesos Developer Sync Meeting moved to Oct 5

2017-09-28 Thread Judith Malnick
Hi everyone,

Due to a scheduling mix-up, we need to move the developer sync to October
5th. Sorry for any confusion. If you have topics, please add them to the
agenda
<https://docs.google.com/document/d/153CUCj5LOJCFAVpdDZC7COJDwKh9RDjxaTA0S7lzwDA/edit?usp=sharing>
!

All the best,
Judith

-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


[Community WG] Meeting today - 10:30am Pacific time

2017-09-25 Thread Judith Malnick
Hi everyone,

Please join us today for the Community WG meeting, starting at 10:30
Pacific time. Join by Zoom at the time of the meeting:

https://zoom.us/j/274510516

I'd love to collect whatever community feedback we got on MesosCon NA. If
you have any other topics you want to discuss, please add them to the agenda
<https://docs.google.com/a/mesosphere.io/document/d/1vgi434dYkkZHs49EK4F4eMmM-3JG4f3qg-N5En-4ubg/edit?usp=sharing>
.

See you soon!
Judith

-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


Discount code for MesosCon EU - Fees go up Sep. 25th

2017-09-22 Thread Judith Malnick
Hi everyone,

Use *MCEUMU20* to get 20% off your registration fee MesosCon Europe
(October 25-27th in Prague). Late registration starts on September 25th so
register <http://events.linuxfoundation.org/events/mesoscon-europe> before
then to save $100.

The schedule for the conference looks amazing! Apache Mesos users including
Yelp, Twitter, Houghton Mifflin Harcourt, Criteo, OpenTable, Allegro,
Tunstall Nordic, and Charbeat will be sharing their operational experience.
Engineers from Adobe, SDL, Number 4, and Mesosphere will be talking about
Deep and Machine Learning on GPUs. Rich Bowen of RedHat will be giving a
keynote on the Apache Way <http://sched.co/C2jr>.

This year's MesosCons are organized into tracks to make it easier to choose
which talks to attend. The MesosCon EU tracks include:

   - DevOps + Ops  <https://mesosconeu17.sched.com/overview/type/Frameworks>
   - Frameworks <https://mesosconeu17.sched.com/overview/type/Frameworks>
   - Machine Learning + SMACK
   <https://mesosconeu17.sched.com/overview/type/Machine+Learning+%2B+SMACK>
   - Mesos Internals
   <https://mesosconeu17.sched.com/overview/type/Mesos+Internals>
   - SMACK <https://mesosconeu17.sched.com/overview/type/SMACK>
   - Users + Ops
   <https://mesosconeu17.sched.com/overview/type/Users+%2B+Ops>


If you're on the fence about going, I highly recommend it! The MesosCon
North America talks were fantastic, and the conversations between users
were informative and inspiring! Don't miss MesosCon EU.

Register here! <http://events.linuxfoundation.org/events/mesoscon-europe>

All the best,
Judith
-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


[Community WG] [Performance WG] [Containerization WG] Attend MesosCon NA Townhall

2017-09-14 Thread Judith Malnick
Hi everyone!

If you are at MesosCon NA, I want to encourage you to go to the Mesos
Townhall session <http://sched.co/Bogm>, run by Jie, to meet fellow WG
participants in person. Don't miss the chance to put a name to a chat
handle :)

All the best,
Judith
-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


Last reminder to register for MesosCon NA

2017-09-08 Thread Judith Malnick
Hi Everyone,

*MesosCon North America* is next week, September 13-15th in Los Angeles,
CA. There's still time to register if you've been procrastinating, but
don't wait too much longer.

 Register for MesosCon NA →
<http://events.linuxfoundation.org/events/mesoscon-north-america/attend/register->


*MesosCon Europe* is also coming up fast; it will be from October 25-27th
in Prague. The standard registration rate is available until September
24th, so register today.

Register for MesosCon EU →
<http://events.linuxfoundation.org/events/mesoscon-europe/attend/register>

See you at MesosCon!
Judith

-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


Mesos Developer Community Meeting - Zoom

2017-09-07 Thread Judith Malnick
Hi All,

To have a persistent link for the Mesos Developer Community Meeting, we're
going to start using Zoom (rather than Google Hangouts on Air). You will be
able to join future meetings with this link: https://zoom.us/j/885219228

If you've never used Zoom before you'll need to download the Zoom client
<https://zoom.us/download#client_4meeting> in order to join the meeting.

Hopefully, a persistent link will help us start meetings on time and make
joining easier. Meetings will still be recorded and posted on YouTube
afterward.

Please, don't hesitate to reply with any questions, concerns, or hiccups.

All the best!
Judith
-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


Re: [Community WG] Vote on meeting-time change

2017-09-07 Thread Judith Malnick
*Tommy*: Can do!

*Everyone*:

Thank you if you voted! It looks like *Monday at 10:30 am Pacific* time is
going to be our best option.

I'm going to cancel our meeting this morning and reschedule all following
meetings for that time slot. I'll hang out on the call for a bit this
morning in case anyone misses the cancel notification. Talk to you Monday!

Best,
Judith

On Thu, Sep 7, 2017 at 12:15 AM, tommy xiao <xia...@gmail.com> wrote:

> Hi, Judith
>
> Thanks for your playlists, could you please keep the playlists up to date,
> I will promote the links to china mesos user community.
>
> 2017-09-06 4:51 GMT+08:00 Judith Malnick <jmaln...@mesosphere.io>:
>
>> Hi Tommy,
>>
>> That would be great! I've been trying to post the videos to youku, but it
>> doesn't always work. There are Mesos playlists for the Community WG
>> <http://list.youku.com/albumlist/show/id_50518308>, Containerization WG
>> <http://list.youku.com/albumlist/show/id_49871436>, and Developer
>> Community sync <http://list.youku.com/albumlist/show/id_50124769>. If
>> there is interest I'm glad to keep the playlists up to date.
>>
>> Or, you're also welcome to post recordings yourself, since all my
>> descriptions are in English, and I'm not entirely sure that I'm using the
>> site correctly :)
>>
>> All the best!
>> Judith
>>
>> On Sat, Sep 2, 2017 at 6:01 AM, tommy xiao <xia...@gmail.com> wrote:
>>
>>> Hi,
>>>
>>> in china mainland, i organized about 250+ developer wechat group. i can
>>> sync the meeting content to the group. it will let more people know what
>>> happened to the mesos.
>>>
>>> 2017-09-02 4:49 GMT+08:00 <jmaln...@mesosphere.io>:
>>>
>>>> Hi everyone,
>>>>
>>>> We haven't had very many participants in our Community Working Group
>>>> meetings and would like to try moving to a more west-coast friendly time in
>>>> the hopes that more people will attend.
>>>>
>>>> Please take the time to vote on a recurring time slot, or feel free to
>>>> send a note if you object to the time change.
>>>>
>>>> Doodle poll: https://doodle.com/poll/66z64bcimbrtxkz9
>>>>
>>>> All the best!
>>>> Judith
>>>>
>>>> You have been invited to the following event.
>>>>
>>>> Title: Community WG Meeting - Apache Mesos
>>>> Hi there,
>>>>
>>>> DC/OS is inviting you to a scheduled Zoom meeting.
>>>>
>>>> Join from PC, Mac, Linux, iOS or Android: https://zoom.us/j/234540281
>>>>
>>>> Or iPhone one-tap (US Toll):  +16465588656,,234540281# or +14086380968
>>>> ,,234540281#
>>>>
>>>> Or Telephone:
>>>> Dial: +1 646 558 8656 (US Toll) or +1 408 638 0968 (US Toll)
>>>> Meeting ID: 234 540 281
>>>> International numbers available: https://zoom.us/zoomconference
>>>> ?m=OKIHpbzLxzng1HLmXFQixj2oWOdpxmPd
>>>>
>>>>
>>>> When: Thu 2017-09-07 8am – 8:50am Pacific Time
>>>> Where: SF | FL2 | Andromeda Galaxy (6 People)
>>>> Video call: Join video call <https://plus.google.com/hango
>>>> uts/_/calendar/MmhlY3ZuZGMwbW5hcWxpcjM0Y3FuZnZ0YWtAZ3JvdXAuY
>>>> 2FsZW5kYXIuZ29vZ2xlLmNvbQ.njddhphq0gtlltdg12vt7a7tvk>
>>>> Who:
>>>> * jmaln...@mesosphere.io - creator
>>>> * jfarr...@apache.org
>>>> * Joerg Schad
>>>> * bmah...@mesosphere.io
>>>> * Jay Guo
>>>> * vi...@mesosphere.io
>>>> * James Peach
>>>> * Kapil Arya
>>>> * sundeep.ku...@hotmail.co.in
>>>> * LUIS MARIA MORALES ALONSO
>>>> * Haijiang Chen
>>>> * vishn...@ieee.org
>>>> * Andrew Schwartzmeyer
>>>> * Till Toenshoff
>>>> Attachments:
>>>> * Apache Mesos Community WG Agenda - https://docs.google.com/a/meso
>>>> sphere.io/document/d/1vgi434dYkkZHs49EK4F4eMmM-3JG4f3qg-N5En
>>>> -4ubg/edit?usp=drive_web
>>>>
>>>
>>>
>>>
>>> --
>>> Deshi Xiao
>>> Twitter: xds2000
>>> E-mail: xiaods(AT)gmail.com
>>>
>>
>>
>>
>> --
>> Judith Malnick
>> DC/OS Community Manager
>> 310-709-1517 <(310)%20709-1517>
>>
>
>
>
> --
> Deshi Xiao
> Twitter: xds2000
> E-mail: xiaods(AT)gmail.com
>



-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


Re: [Community WG] Vote on meeting-time change

2017-09-05 Thread Judith Malnick
Hi Tommy,

That would be great! I've been trying to post the videos to youku, but it
doesn't always work. There are Mesos playlists for the Community WG
<http://list.youku.com/albumlist/show/id_50518308>, Containerization WG
<http://list.youku.com/albumlist/show/id_49871436>, and Developer Community
sync <http://list.youku.com/albumlist/show/id_50124769>. If there is
interest I'm glad to keep the playlists up to date.

Or, you're also welcome to post recordings yourself, since all my
descriptions are in English, and I'm not entirely sure that I'm using the
site correctly :)

All the best!
Judith

On Sat, Sep 2, 2017 at 6:01 AM, tommy xiao <xia...@gmail.com> wrote:

> Hi,
>
> in china mainland, i organized about 250+ developer wechat group. i can
> sync the meeting content to the group. it will let more people know what
> happened to the mesos.
>
> 2017-09-02 4:49 GMT+08:00 <jmaln...@mesosphere.io>:
>
>> Hi everyone,
>>
>> We haven't had very many participants in our Community Working Group
>> meetings and would like to try moving to a more west-coast friendly time in
>> the hopes that more people will attend.
>>
>> Please take the time to vote on a recurring time slot, or feel free to
>> send a note if you object to the time change.
>>
>> Doodle poll: https://doodle.com/poll/66z64bcimbrtxkz9
>>
>> All the best!
>> Judith
>>
>> You have been invited to the following event.
>>
>> Title: Community WG Meeting - Apache Mesos
>> Hi there,
>>
>> DC/OS is inviting you to a scheduled Zoom meeting.
>>
>> Join from PC, Mac, Linux, iOS or Android: https://zoom.us/j/234540281
>>
>> Or iPhone one-tap (US Toll):  +16465588656,,234540281# or +14086380968
>> ,,234540281#
>>
>> Or Telephone:
>> Dial: +1 646 558 8656 (US Toll) or +1 408 638 0968 (US Toll)
>> Meeting ID: 234 540 281
>> International numbers available: https://zoom.us/zoomconference
>> ?m=OKIHpbzLxzng1HLmXFQixj2oWOdpxmPd
>>
>>
>> When: Thu 2017-09-07 8am – 8:50am Pacific Time
>> Where: SF | FL2 | Andromeda Galaxy (6 People)
>> Video call: Join video call <https://plus.google.com/hango
>> uts/_/calendar/MmhlY3ZuZGMwbW5hcWxpcjM0Y3FuZnZ0YWtAZ3JvdXAuY
>> 2FsZW5kYXIuZ29vZ2xlLmNvbQ.njddhphq0gtlltdg12vt7a7tvk>
>> Who:
>> * jmaln...@mesosphere.io - creator
>> * jfarr...@apache.org
>> * Joerg Schad
>> * bmah...@mesosphere.io
>> * Jay Guo
>> * vi...@mesosphere.io
>> * James Peach
>> * Kapil Arya
>> * sundeep.ku...@hotmail.co.in
>> * LUIS MARIA MORALES ALONSO
>> * Haijiang Chen
>> * vishn...@ieee.org
>> * Andrew Schwartzmeyer
>> * Till Toenshoff
>> Attachments:
>> * Apache Mesos Community WG Agenda - https://docs.google.com/a/meso
>> sphere.io/document/d/1vgi434dYkkZHs49EK4F4eMmM-3JG4f3qg-N5En
>> -4ubg/edit?usp=drive_web
>>
>
>
>
> --
> Deshi Xiao
> Twitter: xds2000
> E-mail: xiaods(AT)gmail.com
>



-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


Register for MesosCon NA

2017-08-10 Thread Judith Malnick
Hi Everyone,

If you're planning on attending MesosCon NA you should register soon
<http://events.linuxfoundation.org/events/mesoscon-north-america/attend/register->.
Standard registration ends on the 14th, and late registration is more
expensive. You can use the code MCDCOS20 to get 20% off your registration
fee.

We have made exciting changes to the MesosCon format:

   -

   Dedicated Session Tracks
   
<http://events.linuxfoundation.org/events/mesoscon-north-america/program/tracks>
   -

  SMACK, GPUs, Analytics
  -

  Ops: Storage, Networking, Monitoring, Security, etc.
  -

  DevOps: Microservices, APIs, CI/CD, Artifact Repositories, etc.
  -

  Mesos Frameworks
  -

  Mesos Internals
  -

   MesosCon University
   
<http://events.linuxfoundation.org/events/mesoscon-north-america/program/university>
   -

   Community Town Hall meetings
   
<http://events.linuxfoundation.org/events/mesoscon-north-america/extend-the-experience/evening-events>
   -

   And of course the hackathon
   
<http://events.linuxfoundation.org/events/mesoscon-north-america/program/hackathon>


Don't hesitate to ask if you have any questions! Looking forward to seeing
you at MesosCon!


All the best!

Your Community Team

-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


[Community WG] Meeting notes 08/10/2017

2017-08-10 Thread Judith Malnick
Hi everyone,

Thanks for joining the community working group meeting today. In case you
weren't able to attend in real time:

Notes:
https://docs.google.com/document/d/1vgi434dYkkZHs49EK4F4eMmM-3JG4f3qg-N5En-4ubg/edit?usp=sharing

Recording:
https://youtu.be/JDSNNEghwtU

All the best!
Judith
-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


Re: Future Mesos Developer Community Meetings

2017-08-09 Thread Judith Malnick
Hi MPark, thanks so much for hosting the meetings up until now!

It turns out that Ben isn't available on the 24th so the *next meeting will
be on August 31st at 3 pm* instead and will continue every 4 weeks after
that.

I think it would be great to switch from Google Hangouts to Zoom for the
meetings, which would reduce the overhead for scheduling and recording the
meetings, and give everyone a persistent link to join rather than a
different link for each meeting. The down side would be that everyone who
wanted to attend in real time would need to download the Zoom client.
Please feel free to weigh in!

All the best,
Judith

On Wed, Aug 9, 2017 at 10:58 AM, Michael Park <mp...@apache.org> wrote:

> A few announcements here:
>
>- I'll no longer be hosting Mesos Developer Community Meetings going
>forward. There's a lot of work involved in hosting/running good
> meetings. I
>feel that I have not been putting enough work to make it good, and would
>rather have someone else run it better instead.
>- The meeting tomorrow, Aug 10, 2017, is *CANCELLED*.
>- We'll resume Aug 24, 2017 with *Benjamin Hindman* as our new host!
>- The meetings will occur *monthly* going forward rather than *every
>other week*.
>
> Thanks Ben for taking this over, and I'm sure this meeting will become more
> engaging and informative for everyone!
>
> Thanks,
>
> MPark
>



-- 
Judith Malnick
DC/OS Community Manager
310-709-1517 <(310)%20709-1517>


[Community WG] Meeting tomorrow

2017-07-26 Thread Judith Malnick
Hi Community WG,

We have a meeting coming up tomorrow. If you have anything you'd like to
add to the agenda
<https://docs.google.com/document/d/1vgi434dYkkZHs49EK4F4eMmM-3JG4f3qg-N5En-4ubg/edit?usp=sharing>
please feel free.

You'll be able to join the meeting by Zoom: https://zoom.us/j/234540281.

See you tomorrow at 8 am PDT.

All the best!
Judith
-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


MesosCon North America - CFP closes tomorrow

2017-06-29 Thread Judith Malnick
Hi everyone,

Just a reminder that the CFP for MesosCon North America closes tomorrow. If
you've been working on a talk, please submit it, and if you're interested
in submitting one, it's not too late.

Find the guidelines and submit here:
https://events.linuxfoundation.org/events/mesoscon-north-america/program/cfp

All the best,
Judith
-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


Re: Welcome Greg Mann as a new committer and PMC member!

2017-06-15 Thread Judith Malnick
Congrats!! That's awesome!

On Thu, Jun 15, 2017 at 10:28 AM, Greg Mann <g...@mesosphere.io> wrote:

> Thanks everyone! It's an honor to be part of such a group :)
>
> Looking forward to more contributions and collaborations!!
>
> Cheers,
> Greg
>
> On Wed, Jun 14, 2017 at 9:39 AM, Artem Harutyunyan <ar...@mesosphere.io>
> wrote:
>
>> Awesome!!! Congrats Greg, very well deserved.
>>
>> Artem.
>>
>> On Tue, Jun 13, 2017 at 2:42 PM Vinod Kone <vinodk...@apache.org> wrote:
>>
>> > Hi folks,
>> >
>> > Please welcome Greg Mann as the newest committer and PMC member of the
>> > Apache Mesos project.
>> >
>> > Greg has been an active contributor to the Mesos project for close to 2
>> > years now and has made many solid contributions. His biggest source code
>> > contribution to the project has been around adding authentication
>> support
>> > for default executor. This was a major new feature that involved quite a
>> > few moving parts. Additionally, he also worked on improving the
>> scheduler
>> > and executor APIs.
>> >
>> > Here is his more formal checklist for your perusal.
>> >
>> >
>> > https://docs.google.com/document/d/1S6U5OFVrl7ySmpJsfD4fJ3_R
>> 8JYRRc5spV0yKrpsGBw/edit
>> >
>> > Thanks,
>> > Vinod
>> >
>> >
>>
>
>


-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


June 3rd: MesosCon North America CFP due!

2017-06-01 Thread Judith Malnick
Hi Apache Mesos Users and Devs,

This is a friendly reminder that the CFP for MesosCon North America
<http://events.linuxfoundation.org/events/mesoscon-north-america/program/cfp>
will close:

*Saturday, June 3rd*!

If you've been working on a talk proposal, please put the finishing touches
on it and send it in. The reviewers are really excited to see everyone's
ideas; don't be shy.

If you have any questions feel free to reach out to me (
jmaln...@mesosphere.com) or Kiersten Gaffney (kiers...@mesosphere.io).

All the best!
Judith

-- 
Judith Malnick
DC/OS Community Manager
310-709-1517


New YouTube channel to house working group recordings?

2017-05-18 Thread Judith Malnick
Hi All,

I'd like to start an Apache Mesos YouTube channel to post the recordings of
public meetings and would also like to post the meetings on a new playlist
here <http://id.tudou.com/i/UNDYyNDEyMjU3Ng==?spm=a2hzp.8253869.0.0>, so
that community members in China can access the recordings without VPN.

Please let me know your thoughts.

Best,
Judith
-- 
Judith Malnick
DC/OS Community Manager
310-709-1517