Giter Club home page Giter Club logo

Comments (6)

vaaaaanquish avatar vaaaaanquish commented on June 24, 2024 1

Sample that takes a long time to start.

import luigi

import gokart


class Zero(gokart.TaskOnKart):
    def run(self):
        self.dump(0)


class Add(gokart.TaskOnKart):
    x = gokart.TaskInstanceParameter()
    y = luigi.IntParameter()

    def run(self):
        self.dump(self.load() + self.y)


x = Zero()
for i in range(100):
    x = Add(x=x, y=i)

gokart.build(x)

from gokart.

vaaaaanquish avatar vaaaaanquish commented on June 24, 2024 1

#257 will solve the problem of bloated memory.

from gokart.

vaaaaanquish avatar vaaaaanquish commented on June 24, 2024 1

[future] Caching TaskInstanceParameter.serialize input can speed up the process.

from gokart.

vaaaaanquish avatar vaaaaanquish commented on June 24, 2024

DictParameter recursively json serializes the parameters.
https://github.com/spotify/luigi/blob/master/luigi/parameter.py#L1003

Same goes for TaskInstanceParameter. And TaskInstanceParameter is using DictParameter.
https://github.com/m3dev/gokart/blob/master/gokart/parameter.py

These are what's causing this hell.

from gokart.

vaaaaanquish avatar vaaaaanquish commented on June 24, 2024

There are two solutions.

  1. luigi.Task.to_str_params is overridden by gokart
  2. TaskInstanceParameter.serialize has its own serialize

from gokart.

vaaaaanquish avatar vaaaaanquish commented on June 24, 2024

TaskInstanceParameter.serialize is executed 25249 times in the above sample code.

And values what's inside serialize is following

{'type': 'Zero', 'params': {}}
{'type': 'Add', 'params': {'x': '{"type": "Zero", "params": {}}', 'y': '0'}}
{'type': 'Zero', 'params': {}}
{'type': 'Zero', 'params': {}}
{'type': 'Add', 'params': {'x': '{"type": "Zero", "params": {}}', 'y': '0'}}
{'type': 'Add', 'params': {'x': '{"type": "Add", "params": {"x": "{\\"type\\": \\"Zero\\", \\"params\\": {}}", "y": "0"}}', 'y': '1'}}
{'type': 'Add', 'params': {'x': '{"type": "Add", "params": {"x": "{\\"type\\": \\"Add\\", \\"params\\": {\\"x\\": \\"{\\\\\\"type\\\\\\": \\\\\\"Zero\\\\\\", \\\\\\"params\\\\\\": {}}\\", \\"y\\": \\"0\\"}}",
 "y": "1"}}', 'y': '2'}}
...

Imagine this being repeated 25249 times :)

from gokart.

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.