Josep
Parse zipped PostgreSQL's logs and save them in a parquet file
I'm administrating a large number of PostgreSQL's servers and I get their logs zipped. To analyze them I've done a Spark task for:
- Unzip the files
- Parse then logs of PostgreSQL
- Save (append) the data into a parquet file
In a following post I will show how to query them to get usefull . . .
Posted in: jupyter notebookpythonspark
Percentage of time series over its SMA (Simple Moving Average) compared against a weighted index
Problem with weighted indexes
One problem with weighted indexes is that few components of the index can move its value when the value of few components is much bigger than the others. That could give misleading conclusions. For example, when small weighted components are not following the trend of the big ones. Some scenarios where . . .
Posted in: jupyter notebookpython
Print Markdown in the HTML widget using Markdown package
I've uploaded a Jupyter Notebook in Github explaining two ways to print Markdown in a Jypyter Notebook:
- Using the IPython
Markdown()
class. - Using the HTML ipywidget and the markdown package.
The first option is straightforward, but the second one is much more powerful because can be used with other widgets, . . .
Posted in: jupyter notebookpython