-
Re: Bug: Ecoding hash values with Base64, SHA1, SHA256, SHA512
Hi, OK, I hadn't understood that you wanted to use it in a formula. You will need to use strval("CY_MANUFACTURER_REFERENCE") instead of just CY_MANUFACTURER_REFERENCE This is explained here…1 · -
Re: Error with CSV dataset in Spark
Hi, Your dataset probably has multi-line records, which cannot be processed in Spark. Spark and Hadoop work by cutting input data files in segments and processing them in parallel. For CSV files, the…1 · -
Re: user interface?
Hi, Allowing users to run the flow entirely can be done by creating a scenario, and adding on the dashboard a tile "run scenario" that allows users (even those who only have dashboard acces…1 · -
Re: Issue calling deployed Dataiku model into Python recipe
Hi, The likely reason is that you trained the model with a Python 2.7 code env and are using a Python 3 code env to call get_predictor. The underlying Python pickles are Python-version dependent, so …1 · -
Re: Getting DSS to recognize early Termination Python Code recipe. Do I use sys.exit() ?
Hi, Running sys.exit() means actually sys.exit(0), aka "terminate the current process and return the code 0" Return code 0 means "normal completion". From the point of view of the…1 ·
