Coder Social home page Coder Social logo

Comments (3)

bertsky avatar bertsky commented on September 27, 2024

It's again unfortunate that all which GNU make offers here is global breakdown of concurrency via .NOTPARALLEL, where we instead want only local serialization.

For a synchronization mechanism with blocking behaviour on the shell, I can only think of using GNU parallel (which we already install under deps-ubuntu when workflow-configuration is not disabled). This would allow for example:

$(OCRD_MODULES): always-update
	sem --id ocrd_all_git git submodule sync $(GIT_RECURSIVE) $@
	if git submodule status $(GIT_RECURSIVE) $@ | grep -qv '^ '; then \
		sem --id ocrd_all_git git submodule update --init $(GIT_RECURSIVE) $@ && \
		touch $@; fi

@stweil @kba opinions?

from ocrd_all.

stweil avatar stweil commented on September 27, 2024

IMO pull request #124 is a simply and sufficient solution for this issue.

from ocrd_all.

bertsky avatar bertsky commented on September 27, 2024

IMO pull request #124 is a simply and sufficient solution for this issue.

#124 would sacrifice the independence of builds for different modules, using modules as a single dependency for all executables, and would require downloading all modules even when (re-)installing only a single executable.

The sem solution is simple, too. It's also just a tiny change.

I would have started a PR for it already, but I still have difficulty reliably reproducing the above problem. The race seems to be more related to CPU load than network load. I want to be sure to understand the actual cause before rushing to conclusions.

from ocrd_all.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.