Dagster Daemon sends heartbeats but starts no runs - dagster

I created a simplified project with dagster and started the dagster-daemon, however it starts no runs even though it sends heartbeats to the default sqlite daemon_heartbeats table.
I put all the files I needed in the same folder (at this point, they're just like hello world files), created a workspace.yaml and a dagster.yaml manually. Here is how the files look like:[![enter image description here][1]][1]
[![enter image description here][2]][2]
I also configured my repository like the following:
[![enter image description here][3]][3]
I believe, I did everything right, because I can load the repository from dagit without problems and I even see the option to turn the schedule on and off.
[![enter image description here][4]][4]
After doing all this, I started the dagster-daemon with dagster-daemon run. The logs are alright (in the sense that I don't get any errors):
[![enter image description here][5]][5]
And the daemon_heartbeats table does get updated regularly:
[![enter image description here][6]][6]
Nevertheless, when I check the daemon on dagit, I get the message that the daemon is not running.
[![enter image description here][7]][7]
Does anyone have an idea of what could be the issue here? Am I overlooking somethin basic?
Thanks in advance
[1]: https://i.stack.imgur.com/2JINH.png
[2]: https://i.stack.imgur.com/kqVeP.png
[3]: https://i.stack.imgur.com/wZPcl.png
[4]: https://i.stack.imgur.com/AVIun.png
[5]: https://i.stack.imgur.com/9jFpI.png
[6]: https://i.stack.imgur.com/h1WfV.png
[7]: https://i.stack.imgur.com/VVD60.png

Related

Error in setwd("/home/jf/recursos-mx") : cannot change working directory

Can someone help me how I can solve this error.
enter image description here
Since I am replicating this exercise.[enter imageenter image description here description here](https://i.stack.imgur.com/ET7Nx.png)

How to get a screenshot directly into a variable when using R

I use R and the Magick package to process screenshots! Currently, I'm going through an external tool to get my screenshots. This tool gives me a file (png or other) that I have to reload to use it with Magick. Is there a package that would allow me to take screenshots (in whole or only partially) and to retrieve the image directly into a variable without going through an intermediate file? I found plenty of stuff for web-snapshots but nothing for a capture of my screen...
Thanks in advance

XaringanExtra misplaces scribbles when printing from Chrome as PDF

Take the demo presentation at:
https://pkg.garrickadenbuie.com/xaringanExtra/scribble/#1
and draw some scribbles like the following:
After you print that from Chrome, you get the following PDF:
Is there some workaround? Thanks!
(There is issue open, but with no answer.)
I found an answer. But it requires a little manual work.
So, step-by-step.
Open our Xaringan presentation in the Opera... Why not Mozilla - I don't know how to do step 3 there :)
Draw what we want at the pages.
Save our presentation page-by-page via "Page -> Save as PDF..."
When all pages are saved in our working directory, we can combine them in the one file with pdftk (install, if you haven't). As we are R-users now, do it by this way:
system("pdftk Page1.pdf Page2.pdf Page3.pdf cat output XarPres.pdf")
Result:

How to insert image on Jupyter Notebook

I am using macOS and trying to add an image (png) file on Jupyter Notebook markdown cell, but it keeps generating an error message that they cannot find the png file. I am not sure what is wrong with my following two codes:
![alt text]("~Users/jj/pythonworkspace/what.is.numpy.png" "What is Numpy?")
Alternatively,
<img src="~Users/jj/pythonworkspace/what.is.numpy.png">
You shouldn't be using quotations around your path or links. Also i think you meant to have an additional / after your home directory or maybe not have ~ at all. The path you're providing isn't following the macOS conventions.
You can test if that path is valid by going into terminal and running
ls /path/you/are/testing
try
![What is Numpy?](/Users/jj/pythonworkspace/what.is.numpy.png)

Roxygen documentation: picture is not showing

I am trying to include a picture in the documentation of an R-package. I am using roxygen2 for the documentation.
I think my code to include the picture is correct and the file is placed correctly in the man\figures folder. Nevertheless, the picture is not being shown in the documentation.
Roxygen code:
#' #section Figures:
#' \if{html}{\figure{eqFPKA.PNG}{options: width=100\%}}
The file exists and is placed in 'man/figures':
> file.exists(here("man", "figures", "eqFPKA.PNG"))
[1] TRUE
But when I run document() and inspect the documentation of the file it just looks like this:
As you can see the image is not displayed. It just shows an image icon.
I have tried inserting a path to a file that doesn't exist. That gives the exact same result.
I have also tried to run install(), restart R and run the documentation on the installed package. The result is the same.
Can anybody give me some ideas as to what is going on?

Resources