data-engineering
Here are 580 public repositories matching this topic...
Context
Currently, when prefect.tasks.shell.ShellTask is invoked with return_all=True, the shell task will not log the stdout through logger.debug.
This is defined in doc
https://docs.prefect.io/api/latest/tasks/shell.html#shelltask
and implement in the code.
https://github.com/PrefectHQ/prefect/blob/73fe1eb57945fc13bdd36b361a6a17c3f324b1ba/src/prefect/tasks/shell.py#L107-L111
-
Updated
Oct 21, 2020
We are trying to use GE with GCP DataProc clusters. While cluster creation we are installing great-expectations==0.12.4. This installs ruamel.yaml==0.15.35 as dependency. After cluster creation if we try to import great_expectations we get error:
Traceback (most recent call last):
File "", line 1, in
File "/opt/conda/default/lib/python3.6/site-packages/great_expectations/_
-
Updated
Oct 30, 2020 - Go
-
Updated
Sep 11, 2020
-
Updated
Oct 19, 2020 - JavaScript
-
Updated
Oct 30, 2020 - Python
-
Updated
Oct 31, 2020 - Jupyter Notebook
-
Updated
Oct 14, 2020 - Jupyter Notebook
-
Updated
Mar 9, 2020 - Python
Instructions for how to install pyjanitor via pipenv
Some folks might use pipenv for environment management. The recent update requires a prerelease dependency (black, as menti
if they are not class methods then the method would be invoked for every test and a session would be created for each of those tests.
`class PySparkTest(unittest.TestCase):
@classmethod
def suppress_py4j_logging(cls):
logger = logging.getLogger('py4j')
logger.setLevel(logging.WARN)
@classmethod
def create_testing_pyspark_session(cls):
return Sp
-
Updated
Oct 30, 2020 - R
-
Updated
Aug 21, 2020 - CSS
-
Updated
Mar 5, 2020 - Python
-
Updated
Nov 29, 2018 - Java
-
Updated
Sep 15, 2020
In SubjectAreaRESTServicesInstance, it hard codes the default page size as 0, this is not correct
public static final String PAGE_SIZE_DEFAULT_VALUE = "0";
it should be changed to
public static final String PAGE_SIZE_DEFAULT_VALUE = "1000";
So it is consistent with OMAGServerConfig default
private static final int defaultMaxPageSize = 1000;
-
Updated
Oct 30, 2020 - TypeScript
-
Updated
Apr 20, 2020 - Python
-
Updated
Oct 27, 2020
-
Updated
Jun 18, 2020 - Python
-
Updated
Sep 24, 2020 - Python
-
Updated
Oct 1, 2020 - Python
-
Updated
Mar 25, 2019
-
Updated
Aug 7, 2019 - Jupyter Notebook
-
Updated
Oct 30, 2020 - Clojure
-
Updated
Aug 24, 2020 - Scala
Improve this page
Add a description, image, and links to the data-engineering topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the data-engineering topic, visit your repo's landing page and select "manage topics."
Hello,
I want to show euros values on dashboard. But only the $ format are enable. When i changed the $ symbol to € i obtained an error.
How can I show euros value in a chart ?
I want something like "y_axis_format": "$,.2f" ==> to "y_axis_format": ",.2f€"
Regards,
Zied Sellami