-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
interactive pipeline building #76
Comments
ah i found this! https://docs.typestream.io/reference/language/experiments#variables which is close to what i want too! is there a language construct for a stream yet? |
maybe it is equivalent to
|
yes the language supports variables via the What you're suggesting is in line with my thinking. I have some notes about it where what you're proposing would look like this: let long_books = $(cat /dev/kafka/local/topics/books | grep [ .word_count > 100_000])
cat $long_books | grep "the" > /dev/kafka/local/topics/long_books_containing_the the idea being that Is this what you have in mind? It's quite some work to get this done but it's high on my list. Maybe only one other feature ("relational databases filesystem mounting") may coming sooner that this. This conversatsion makes me think I should be probably making my "private roadmap" public. (the docs contain a roadmap page but it's pretty meagre compared to my own notes. One more question 🙏
I'm unsure I understand this. I have a todo for adding a |
I think I looked at specifications, data operators, the how to guides, kind of skimmed most of it, but had skipped over experiments altogether somehow. 😅
Yeah basically!!
👀awesome
Awesome! Yeah basically a way to print the session would be all I would really need. I can imagine that there might be a lot of varied things going on in one session though, and so something that gave 'heres the program that produces the provided variable' could be useful. I can imagine that might be more complicated than it sounds though! maybe a built-in function that outputs to a file, you provide a variable, it ?walks backward? find any other variables called, unwraps them, then produces a string of itself??? or just like, you provide a variable, it finds all other variables mentioned, makes a file with the 5 lines covering the full expression of just this one thing.
|
all right, there are two maybe three issues here:
Those are all valid ideas imo, the first two I had already planned myself so I'll be adding issues about those as soon as I have a minute for that. The last one is a bit more difficult to figure out so I'm thinking I'll leave this issue open while I get ready to share a public roadmap (and start opening issues to signal which features are coming). That way I have some time to think about the "clever" session printout (I like the idea very much! My focus is dev experience with TypeStream and this feels great if we get it right) |
I made the roadmap public (even though it's quite bare, still better than private I think). I also just shipped to main the I have private notes for the |
i believe what i want is variables, but this is a special environment.
something akin to
and then a way to flatten/export a single command i can put somewhere else / export history of repl?
The text was updated successfully, but these errors were encountered: