You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@streampipes.apache.org by "bossenti (via GitHub)" <gi...@apache.org> on 2023/03/02 19:32:40 UTC

[I] Convenient `column` query parameter for data lake measure (streampipes)

bossenti opened a new issue, #1374:
URL: https://github.com/apache/streampipes/issues/1374

   ### Body
   
   Currently, the python client expects a comma separated string when specifying the columns to be returned ( query parameter `columns`, see [here](https://github.com/apache/streampipes/blob/dev/streampipes-client-python/streampipes/endpoint/api/data_lake_measure.py#LL42)) for a data lake measure. This is quite inconvenient and should be replaced by the option to provide a list of strings which is then converted to a comma separated string for the actual query param. This transformation should be done with a [pydantic validator](https://docs.pydantic.dev/usage/validators/).
   
   ### Mentoring
   As this issue is marked as good first issue: one of @SvenO3 , or @bossenti are happy to provide help for getting started, just tag (one of) them if you want to start working on this issue and need some help.
   This issue is ideal for people that are interested in getting started with StreamPipes and making their first steps in our Python library.
   
   ### StreamPipes Committer
   
   I acknowledge that I am a maintainer/committer of the Apache StreamPipes project.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "jjbiggins (via GitHub)" <gi...@apache.org>.
jjbiggins commented on issue #1374:
URL: https://github.com/apache/streampipes/issues/1374#issuecomment-1563187491

   @bossenti I'm happy to take this.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "bossenti (via GitHub)" <gi...@apache.org>.
bossenti closed issue #1374: Convenient `columns` query parameter for data lake measure
URL: https://github.com/apache/streampipes/issues/1374


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "jjbiggins (via GitHub)" <gi...@apache.org>.
jjbiggins commented on issue #1374:
URL: https://github.com/apache/streampipes/issues/1374#issuecomment-1622466040

   Messed up and accidentially closed linked issue #1653. This commit should be up-to-date and include discussed changes. Created new pull request. My bad about the inconvenience.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "TheClerici (via GitHub)" <gi...@apache.org>.
TheClerici commented on issue #1374:
URL: https://github.com/apache/streampipes/issues/1374#issuecomment-1453908897

   Not at the moment, I will follow instructions to get everything going on my end. If you have any advice or links with that would be great, otherwise I will follow the pydantic validator link to add the feature 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "bossenti (via GitHub)" <gi...@apache.org>.
bossenti commented on issue #1374:
URL: https://github.com/apache/streampipes/issues/1374#issuecomment-1629457193

   > Messed up and accidentially closed linked issue #1653. This commit should be up-to-date and include discussed changes. Created new pull request. My bad about the inconvenience.
   
   No worries!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "bossenti (via GitHub)" <gi...@apache.org>.
bossenti commented on issue #1374:
URL: https://github.com/apache/streampipes/issues/1374#issuecomment-1563837147

   welcome at StreamPipes @jjbiggins, we really appreciate your interest to contribute here :) 
   
   You can find some information about how to set up the development environment for StreamPipes Python after you cloned the repository:
   https://streampipes.apache.org/docs/docs/python/latest/getting-started/developing/
   
   If you want to test your code against a running StreamPipes instance, then the easiest way is to use the docker-compose deployment (https://streampipes.apache.org/docs/docs/try-installation.html#install-streampipes), use our quickstart example (https://streampipes.apache.org/docs/docs/python/latest/getting-started/quickstart/) to get you connected.
   
   If there are any open questions from your end, feel free to raise them here


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "jjbiggins (via GitHub)" <gi...@apache.org>.
jjbiggins commented on issue #1374:
URL: https://github.com/apache/streampipes/issues/1374#issuecomment-1572564120

   Thanks. I'll dive into this


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "bossenti (via GitHub)" <gi...@apache.org>.
bossenti commented on issue #1374:
URL: https://github.com/apache/streampipes/issues/1374#issuecomment-1453000522

   Welcome to StreamPipes @TheClerici  🙌 
   Great to hear!
   Do you need nothing to get started? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "bossenti (via GitHub)" <gi...@apache.org>.
bossenti commented on issue #1374:
URL: https://github.com/apache/streampipes/issues/1374#issuecomment-1454046179

   Alright, no worries!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "TheClerici (via GitHub)" <gi...@apache.org>.
TheClerici commented on issue #1374:
URL: https://github.com/apache/streampipes/issues/1374#issuecomment-1452618460

   Hi! I would love to get started on this project and help in this one


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Convenient `columns` query parameter for data lake measure (streampipes)

Posted by "jjbiggins (via GitHub)" <gi...@apache.org>.
jjbiggins commented on issue #1374:
URL: https://github.com/apache/streampipes/issues/1374#issuecomment-1575717187

   Opened PR


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org