Skip to content
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

add sync strategy for native docker volume #310

Merged
merged 1 commit into from
May 3, 2017
Merged

Conversation

ignatiusreza
Copy link
Contributor

to be used by default in linux environment, since docker built in support for mounting volume is good enough and we can use it without relying on rsync or unison..

part of #265

NOTE: I'm currently using this branch in my local.. give it some time to see if there're any issue, and I'll report back later..

@EugenMayer
Copy link
Owner

Hmm i really like the implementation, but i have some concerns i want to share.

Right now, you either chose a strategy explicitly or you get the default ( unison ). with your implementation we have to adjust a lot of docs to reflect that the default is platform specific.

Beside this effort, it makes really a lot of sense having platform specific defaults , since they have different OS capabilties.

That said, i guess technically, its the right move. But are you opting it for all those doc changes? ( wiki, examples and so on? )

@ignatiusreza
Copy link
Contributor Author

yup, I'll update the examples once I give it some try locally to see if it's actually working.. regarding wiki, what's the timing for updates? I guess it should be updated only once new release are out, so that people who bound into them can actually use them.. and, any other places that need to be updated? noticed that you also have the boilerplate repo, need to be updated?

@EugenMayer
Copy link
Owner

EugenMayer commented Apr 27, 2017

I have an additional very interesting idea here, which could end up being one of the nicest addition since a long time. Your work here can be used for that too, makes it even more important.

Consider that we do the following on osx : native mount (osxfs) [host sync strategy/watcher] <-> sync container (unison) <-> named volume mount <-> app

This way we could remove unison/unox pain under osx, the pain of the native dependencies and also it's flaws while still maintaining the native speed in the app. What do you think?

#316

this implementation here could probably be shared, but i am not entirely sure we should share / it matches.

In this case, we need a dummy watcher ( native mount ) and sync_strategy will create a sync container + mount the volume directly - just what you did here.

It might be the same implementation, just in addition under a explicit new name. I jus think, native linux mount is exactly the same as native OSX mount, so why dublicate?

@ignatiusreza
Copy link
Contributor Author

hmm.. give me some time to digest that first.. 😅 not that comfortable yet with how sync/watch works..

@ignatiusreza ignatiusreza force-pushed the strategy/native branch 3 times, most recently from 5fc0e2c to 6960131 Compare May 3, 2017 12:34
to be used by default in linux environment,
since docker built in support for mounting volume is good enough
and we can use it without relying on rsync or unison
@ignatiusreza
Copy link
Contributor Author

updated example with new section for default configuration

Consider that we do the following on osx : native mount (osxfs) [host sync strategy/watcher] <-> sync container (unison) <-> named volume mount <-> app

Regarding this.. I'm still not completely sure what to say to be honest... still trying to wrap my head around how the actual syncing/watching process works and how does it affect the performance.. though, IIUC.. the reason that docker-sync is needed, is because native mount on osx is slow.. so, in the graph above, won't doing native mount (osxfs) [host sync strategy/watcher] <-> sync container (unison) be slow? if it's still fast, why does mounting into sync container is okay, but mounting directly into app is not?

@ignatiusreza ignatiusreza mentioned this pull request May 3, 2017
@EugenMayer
Copy link
Owner

@ignatiusreza lets continue the new strategy in a the issue and keep this one for linux only for now - lets see if we can merge the efforts here later

@EugenMayer EugenMayer merged commit c0b02db into master May 3, 2017
@EugenMayer EugenMayer added this to the 0.3.6 milestone May 3, 2017
@ignatiusreza ignatiusreza deleted the strategy/native branch May 3, 2017 13:31
@ignatiusreza
Copy link
Contributor Author

Cool! thanks for merging 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants