Exemplo n.º 1
0
    def run_luigi(self, **kwargs):
        """Run pipeline using luigi

        Parameters
        ----------
        logging_conf_file : str or None
            Path of file to configure luigi logging that follows the format 
            of: https://docs.python.org/2/library/logging.config.html
        """

        import run_luigi
        run_luigi.run(self.__nodes, **kwargs)
Exemplo n.º 2
0
    def run_luigi(self, **kwargs):
        """Run pipeline using luigi

        Parameters
        ----------
        logging_conf_file : str or None
            Path of file to configure luigi logging that follows the format 
            of: https://docs.python.org/2/library/logging.config.html
        """

        import run_luigi
        run_luigi.run(self.__nodes, **kwargs)
Exemplo n.º 3
0
    def run_luigi(self, **kwargs):
        """Run pipeline using luigi

        Parameters
        ----------
        logging_conf_file : str or None
            Path of file to configure luigi logging that follows the format 
            of: https://docs.python.org/2/library/logging.config.html
        worker_processes : int or None
            Number of processes to run on. If None, will pick the number
            of cpus on the host system
        """

        import run_luigi
        run_luigi.run(self.__nodes, **kwargs)
Exemplo n.º 4
0
    def run_luigi(self, **kwargs):
        """Run pipeline using luigi

        Parameters
        ----------
        logging_conf_file : str or None
            Path of file to configure luigi logging that follows the format 
            of: https://docs.python.org/2/library/logging.config.html
        worker_processes : int or None
            Number of processes to run on. If None, will pick the number
            of cpus on the host system
        """

        import run_luigi
        run_luigi.run(self.__nodes, **kwargs)