Coder Social home page Coder Social logo

ploomber.tasks.Link is not usable about ploomber HOT 2 OPEN

marr75 avatar marr75 commented on May 26, 2024
ploomber.tasks.Link is not usable

from ploomber.

Comments (2)

edublancas avatar edublancas commented on May 26, 2024

I think it's because when we addded Link, we only had the Python API (not the pipeline.yaml API), and we never worked on ensuring it'd work with pipeline.yaml. Feel free to open a PR!

from ploomber.

marr75 avatar marr75 commented on May 26, 2024

@edublancas I will. I could use a little guidance from you, though.

Locally, I've got this signature for Link:

class Link(Task):
    ...
    def __init__(self, source, product, dag, name=None):
        kwargs = dict(hot_reload=dag._params.hot_reload)
        self._source = type(self)._init_source(kwargs)
        super().__init__(product, dag, name, None)

And tasks using Link tend to look like:

  # Dummy task to wrap success stories exported from hubspot
  - name: success-stories
    source: ""
    product: "{{PRODUCTS_DIR}}/success-stories.csv"
    class: Link
    product_class: File

Which, isn't terrible but the blank source, the class, and the product_class could all be a little confusing.

I don't think I can get around the source issue without quite a bit of rewiring in the spec task validation (which strictly looks for source without OO/protocol based validation). The product_class issue may be solvable by trying to validate whether product is a pathlike or url-like.

I suppose I could make any string that matches source.lower() == "link" get a class of Link. Maybe that kills two birds with one stone?

Let me know your thoughts.

from ploomber.

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.